diff --git a/ClearScript.NoV8.sln.DotSettings b/ClearScript.NoV8.sln.DotSettings index 035259696..2ca2f1521 100644 --- a/ClearScript.NoV8.sln.DotSettings +++ b/ClearScript.NoV8.sln.DotSettings @@ -123,6 +123,7 @@ True True True + True True True True @@ -162,6 +163,7 @@ True True True + True True True True diff --git a/ClearScript.sln.DotSettings b/ClearScript.sln.DotSettings index 035259696..2ca2f1521 100644 --- a/ClearScript.sln.DotSettings +++ b/ClearScript.sln.DotSettings @@ -123,6 +123,7 @@ True True True + True True True True @@ -162,6 +163,7 @@ True True True + True True True True diff --git a/ClearScript/ByRefArg.cs b/ClearScript/ByRefArg.cs index 145dc3b5e..06218382f 100644 --- a/ClearScript/ByRefArg.cs +++ b/ClearScript/ByRefArg.cs @@ -58,9 +58,9 @@ public override object DynamicInvokeTarget get { return target.DynamicInvokeTarget; } } - public override HostTargetFlags Flags + public override HostTargetFlags GetFlags(IHostInvokeContext context) { - get { return target.Flags; } + return target.GetFlags(context); } public override string[] GetAuxMethodNames(IHostInvokeContext context, BindingFlags bindFlags) diff --git a/ClearScript/ClearScript.csproj b/ClearScript/ClearScript.csproj index 1a6d2ea07..e8cd1103f 100644 --- a/ClearScript/ClearScript.csproj +++ b/ClearScript/ClearScript.csproj @@ -126,6 +126,7 @@ + diff --git a/ClearScript/DocumentInfo.cs b/ClearScript/DocumentInfo.cs index b0c3fb82d..89a9397db 100644 --- a/ClearScript/DocumentInfo.cs +++ b/ClearScript/DocumentInfo.cs @@ -136,7 +136,7 @@ internal UniqueDocumentInfo MakeUnique(IUniqueNameManager manager, DocumentFlags } var uniqueName = manager.GetUniqueName(Name, Category.DefaultName); - if (Flags.GetValueOrDefault().HasFlag(DocumentFlags.IsTransient)) + if (info.Flags.GetValueOrDefault().HasFlag(DocumentFlags.IsTransient)) { uniqueName += " [temp]"; } diff --git a/ClearScript/DocumentSettings.cs b/ClearScript/DocumentSettings.cs index ac515bb98..c84f0030d 100644 --- a/ClearScript/DocumentSettings.cs +++ b/ClearScript/DocumentSettings.cs @@ -3,7 +3,6 @@ using System; using System.Collections.Concurrent; -using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Microsoft.ClearScript.JavaScript; @@ -190,14 +189,13 @@ internal async Task LoadDocumentAsync(DocumentInfo? sourceInfo, string private Document FindSystemDocument(string identifier, DocumentCategory category) { - try + Document document; + if (systemDocumentMap.TryGetValue(Tuple.Create(identifier, category ?? DocumentCategory.Script), out document)) { - return systemDocumentMap[Tuple.Create(identifier, category ?? DocumentCategory.Script)]; - } - catch (KeyNotFoundException) - { - return null; + return document; } + + return null; } } } diff --git a/ClearScript/Exports/VersionSymbols.h b/ClearScript/Exports/VersionSymbols.h index 7ccda4bdb..b5c149b28 100644 --- a/ClearScript/Exports/VersionSymbols.h +++ b/ClearScript/Exports/VersionSymbols.h @@ -5,5 +5,5 @@ #pragma once -#define CLEARSCRIPT_VERSION_STRING "6.0.0.0" -#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 6,0,0,0 +#define CLEARSCRIPT_VERSION_STRING "6.0.1.0" +#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 6,0,1,0 diff --git a/ClearScript/HostFunctions.cs b/ClearScript/HostFunctions.cs index 7792e26ae..1e9a3980d 100644 --- a/ClearScript/HostFunctions.cs +++ b/ClearScript/HostFunctions.cs @@ -2,7 +2,6 @@ // Licensed under the MIT license. using System; -using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Dynamic; using System.Globalization; @@ -1647,13 +1646,20 @@ public object newComObj(string progID, string serverName = null) } /// - /// Imports enumerations from a type library. + /// Imports enumerations defined within or referenced from a COM/ActiveX type library. /// - /// The imported type whose parent library is to be searched for enumerations. + /// The imported type whose parent library is to be searched for relevant enumerations. /// An instance of the representative type. - /// A collection of imported enumerations. - public IPropertyBag typeLibEnums(T obj) where T : class + /// An optional host type collection with which to merge the imported enumerations. + /// A host type collection: if it is not null, a new host type collection otherwise. + public HostTypeCollection typeLibEnums(T obj, HostTypeCollection collection = null) where T : class { + MiscHelpers.VerifyNonNullArgument(obj, "obj"); + if (collection == null) + { + collection = new HostTypeCollection(); + } + var type = typeof(T); if (type.IsUnknownCOMObject()) { @@ -1663,31 +1669,18 @@ public IPropertyBag typeLibEnums(T obj) where T : class var typeInfo = dispatch.GetTypeInfo(); if (typeInfo != null) { - return typeInfo.GetTypeLibEnums(); + typeInfo.GetContainingTypeLib().GetReferencedEnums().ForEach(collection.AddEnumTypeInfo); + return collection; } } - - throw new ArgumentException("Object type is not imported", "obj"); - } - - if (!type.IsImport) - { - throw new ArgumentException("Object type is not imported", "obj"); } - - var typeCollection = new HostTypeCollection(); - - var assembly = type.Assembly; - Debug.Assert(assembly.GetCustomAttribute(typeof(ImportedFromTypeLibAttribute)) != null); - foreach (var assemblyType in assembly.GetTypes()) + else if (type.IsImport && (type.Assembly.GetCustomAttribute(typeof(ImportedFromTypeLibAttribute)) != null)) { - if (assemblyType.IsPublic && assemblyType.IsEnum) - { - typeCollection.AddType(assemblyType); - } + type.Assembly.GetReferencedEnums().ForEach(collection.AddType); + return collection; } - return typeCollection; + throw new ArgumentException("Object type is not imported", "obj"); } // ReSharper restore InconsistentNaming diff --git a/ClearScript/HostIndexedProperty.cs b/ClearScript/HostIndexedProperty.cs index e770a231e..23875584a 100644 --- a/ClearScript/HostIndexedProperty.cs +++ b/ClearScript/HostIndexedProperty.cs @@ -51,9 +51,9 @@ public override object DynamicInvokeTarget get { return null; } } - public override HostTargetFlags Flags + public override HostTargetFlags GetFlags(IHostInvokeContext context) { - get { return HostTargetFlags.None; } + return HostTargetFlags.None; } public override string[] GetAuxMethodNames(IHostInvokeContext context, BindingFlags bindFlags) diff --git a/ClearScript/HostItem.InvokeMethod.cs b/ClearScript/HostItem.InvokeMethod.cs index 4046a2786..05ede7128 100644 --- a/ClearScript/HostItem.InvokeMethod.cs +++ b/ClearScript/HostItem.InvokeMethod.cs @@ -53,7 +53,7 @@ private object InvokeMethod(string name, object[] args, object[] bindArgs) private object InvokeMethod(string name, Type[] typeArgs, object[] args, object[] bindArgs) { var bindResult = BindMethod(name, typeArgs, args, bindArgs); - if ((bindResult is MethodBindFailure) && target.Flags.HasFlag(HostTargetFlags.AllowExtensionMethods)) + if ((bindResult is MethodBindFailure) && target.GetFlags(this).HasFlag(HostTargetFlags.AllowExtensionMethods)) { var targetArg = target.Target.ToEnumerable(); var extensionArgs = targetArg.Concat(args).ToArray(); @@ -108,17 +108,17 @@ private MethodBindResult BindMethod(string name, Type[] typeArgs, object[] args, // WARNING: BindSignature holds on to the specified typeArgs; subsequent modification // will result in bugs that are difficult to diagnose. Create a copy if necessary. - var signature = new BindSignature(accessContext, bindFlags, target, name, typeArgs, bindArgs); + var signature = new BindSignature(AccessContext, bindFlags, target, name, typeArgs, bindArgs); MethodBindResult result; object rawResult; if (engine.TryGetCachedBindResult(signature, out rawResult)) { - result = MethodBindResult.Create(name, rawResult, target, args); + result = MethodBindResult.Create(name, bindFlags, rawResult, target, args); } else { - result = BindMethodInternal(accessContext, bindFlags, target, name, typeArgs, args, bindArgs); + result = BindMethodInternal(AccessContext, bindFlags, target, name, typeArgs, args, bindArgs); if (!result.IsPreferredMethod(this, name)) { if (result is MethodBindSuccess) @@ -128,7 +128,7 @@ private MethodBindResult BindMethod(string name, Type[] typeArgs, object[] args, foreach (var altName in GetAltMethodNames(name, bindFlags)) { - var altResult = BindMethodInternal(accessContext, bindFlags, target, altName, typeArgs, args, bindArgs); + var altResult = BindMethodInternal(AccessContext, bindFlags, target, altName, typeArgs, args, bindArgs); if (altResult.IsUnblockedMethod(this)) { result = altResult; @@ -163,7 +163,7 @@ private static MethodBindResult BindMethodInternal(Type bindContext, BindingFlag object rawResult; if (coreBindCache.TryGetValue(signature, out rawResult)) { - result = MethodBindResult.Create(name, rawResult, target, args); + result = MethodBindResult.Create(name, bindFlags, rawResult, target, args); } else { @@ -185,7 +185,7 @@ private static MethodBindResult BindMethodCore(Type bindContext, BindingFlags bi // perform default binding var rawResult = BindMethodRaw(bindFlags, binder, target, bindArgs); - var result = MethodBindResult.Create(name, rawResult, target, args); + var result = MethodBindResult.Create(name, bindFlags, rawResult, target, args); if ((result is MethodBindFailure) && !(target is HostType) && target.Type.IsInterface) { // binding through interface failed; try base interfaces @@ -194,7 +194,7 @@ private static MethodBindResult BindMethodCore(Type bindContext, BindingFlags bi var baseInterfaceTarget = HostObject.Wrap(target.InvokeTarget, interfaceType); rawResult = BindMethodRaw(bindFlags, binder, baseInterfaceTarget, bindArgs); - var baseInterfaceResult = MethodBindResult.Create(name, rawResult, target, args); + var baseInterfaceResult = MethodBindResult.Create(name, bindFlags, rawResult, target, args); if (baseInterfaceResult is MethodBindSuccess) { return baseInterfaceResult; @@ -205,7 +205,7 @@ private static MethodBindResult BindMethodCore(Type bindContext, BindingFlags bi var objectTarget = HostObject.Wrap(target.InvokeTarget, typeof(object)); rawResult = BindMethodRaw(bindFlags, binder, objectTarget, bindArgs); - var objectResult = MethodBindResult.Create(name, rawResult, target, args); + var objectResult = MethodBindResult.Create(name, bindFlags, rawResult, target, args); if (objectResult is MethodBindSuccess) { return objectResult; @@ -259,7 +259,7 @@ private IEnumerable GetAltMethodNames(string name, BindingFlags bindFlag private IEnumerable GetAltMethodNamesInternal(string name, BindingFlags bindFlags) { - foreach (var method in target.Type.GetScriptableMethods(name, bindFlags, accessContext, defaultAccess)) + foreach (var method in target.Type.GetScriptableMethods(name, bindFlags, AccessContext, DefaultAccess)) { var methodName = method.GetShortName(); if (methodName != name) @@ -326,7 +326,7 @@ private MethodBindResult BindMethodUsingReflection(BindingFlags bindFlags, HostT { object state; var rawResult = Type.DefaultBinder.BindToMethod(bindFlags, candidates, ref args, null, null, null, out state); - return MethodBindResult.Create(name, rawResult, hostTarget, args); + return MethodBindResult.Create(name, bindFlags, rawResult, hostTarget, args); } catch (MissingMethodException) { @@ -368,7 +368,7 @@ private IEnumerable GetReflectionCandidates(BindingFlags bindFlags, private IEnumerable GetReflectionCandidates(BindingFlags bindFlags, Type type, string name, Type[] typeArgs) { - foreach (var method in type.GetScriptableMethods(name, bindFlags, accessContext, defaultAccess)) + foreach (var method in type.GetScriptableMethods(name, bindFlags, AccessContext, DefaultAccess)) { MethodInfo tempMethod = null; @@ -420,12 +420,12 @@ internal static long GetCoreBindCount() private abstract class MethodBindResult { - public static MethodBindResult Create(string name, object rawResult, HostTarget hostTarget, object[] args) + public static MethodBindResult Create(string name, BindingFlags bindFlags, object rawResult, HostTarget hostTarget, object[] args) { var method = rawResult as MethodInfo; if (method != null) { - if ((method.IsStatic) && !hostTarget.Flags.HasFlag(HostTargetFlags.AllowStaticMembers)) + if (method.IsStatic && !bindFlags.HasFlag(BindingFlags.Static)) { return new MethodBindFailure(() => new InvalidOperationException(MiscHelpers.FormatInvariant("Cannot access static method '{0}' in non-static context", method.Name))); } diff --git a/ClearScript/HostItem.cs b/ClearScript/HostItem.cs index 9fb987e3c..6c3209773 100644 --- a/ClearScript/HostItem.cs +++ b/ClearScript/HostItem.cs @@ -25,9 +25,6 @@ internal partial class HostItem : DynamicObject, IReflect, IDynamic, IEnumVARIAN private readonly ScriptEngine engine; private readonly HostTarget target; private readonly HostItemFlags flags; - - private Type accessContext; - private ScriptAccess defaultAccess; private HostTargetMemberData targetMemberData; internal static bool EnableVTablePatching; @@ -141,7 +138,7 @@ public Invocability Invocability { if (TargetInvocability == null) { - TargetInvocability = target.GetInvocability(GetCommonBindFlags(), accessContext, defaultAccess, flags.HasFlag(HostItemFlags.HideDynamicMembers)); + TargetInvocability = target.GetInvocability(GetCommonBindFlags(), AccessContext, DefaultAccess, flags.HasFlag(HostItemFlags.HideDynamicMembers)); } return TargetInvocability.GetValueOrDefault(); @@ -404,6 +401,48 @@ private Invocability? TargetInvocability set { targetMemberData.TargetInvocability = value; } } + private Type CurrentAccessContext + { + get { return (flags.HasFlag(HostItemFlags.PrivateAccess) || (target.Type.IsAnonymous() && !engine.EnforceAnonymousTypeAccess)) ? target.Type : engine.AccessContext; } + } + + private ScriptAccess CurrentDefaultAccess + { + get { return engine.DefaultAccess; } + } + + private HostTargetFlags CurrentTargetFlags + { + get { return target.GetFlags(this); } + } + + private Type CachedAccessContext + { + get + { + var targetMemberDataWithContext = targetMemberData as HostTargetMemberDataWithContext; + return (targetMemberDataWithContext != null) ? targetMemberDataWithContext.AccessContext : CurrentAccessContext; + } + } + + private ScriptAccess CachedDefaultAccess + { + get + { + var targetMemberDataWithContext = targetMemberData as HostTargetMemberDataWithContext; + return (targetMemberDataWithContext) != null ? targetMemberDataWithContext.DefaultAccess : CurrentDefaultAccess; + } + } + + private HostTargetFlags CachedTargetFlags + { + get + { + var targetMemberDataWithContext = targetMemberData as HostTargetMemberDataWithContext; + return (targetMemberDataWithContext) != null ? targetMemberDataWithContext.TargetFlags : CurrentTargetFlags; + } + } + #endregion #region initialization @@ -531,14 +570,8 @@ private bool BindSpecialTarget(out T specialTarget) where T : class private void BindTargetMemberData() { - var newAccessContext = flags.HasFlag(HostItemFlags.PrivateAccess) || (target.Type.IsAnonymous() && !engine.EnforceAnonymousTypeAccess) ? target.Type : engine.AccessContext; - var newDefaultAccess = engine.DefaultAccess; - - if ((targetMemberData == null) || (accessContext != newAccessContext) || (defaultAccess != newDefaultAccess)) + if ((targetMemberData == null) || (AccessContext != CurrentAccessContext) || (DefaultAccess != CurrentDefaultAccess) || (TargetFlags != CurrentTargetFlags)) { - accessContext = newAccessContext; - defaultAccess = newDefaultAccess; - if (target is HostMethod) { // host methods can share their (dummy) member data @@ -566,13 +599,13 @@ private void BindTargetMemberData() if ((TargetDynamic == null) && (TargetPropertyBag == null) && (TargetList == null) && (TargetDynamicMetaObject == null)) { // host objects without dynamic members can share their member data - targetMemberData = engine.GetSharedHostObjectMemberData(hostObject, accessContext, defaultAccess); + targetMemberData = engine.GetSharedHostObjectMemberData(hostObject, CurrentAccessContext, CurrentDefaultAccess, CurrentTargetFlags); return; } } // all other targets use unique member data - targetMemberData = new HostTargetMemberData(); + targetMemberData = new HostTargetMemberDataWithContext(CurrentAccessContext, CurrentDefaultAccess, CurrentTargetFlags); } } @@ -635,7 +668,7 @@ private string[] GetLocalEventNames() { if (TypeEventNames == null) { - var localEvents = target.Type.GetScriptableEvents(GetCommonBindFlags(), accessContext, defaultAccess); + var localEvents = target.Type.GetScriptableEvents(GetCommonBindFlags(), AccessContext, DefaultAccess); TypeEventNames = localEvents.Select(eventInfo => eventInfo.GetScriptName()).ToArray(); } @@ -646,7 +679,7 @@ private string[] GetLocalFieldNames() { if (TypeFieldNames == null) { - var localFields = target.Type.GetScriptableFields(GetCommonBindFlags(), accessContext, defaultAccess); + var localFields = target.Type.GetScriptableFields(GetCommonBindFlags(), AccessContext, DefaultAccess); TypeFieldNames = localFields.Select(field => field.GetScriptName()).ToArray(); } @@ -657,7 +690,7 @@ private string[] GetLocalMethodNames() { if (TypeMethodNames == null) { - var localMethods = target.Type.GetScriptableMethods(GetMethodBindFlags(), accessContext, defaultAccess); + var localMethods = target.Type.GetScriptableMethods(GetMethodBindFlags(), AccessContext, DefaultAccess); TypeMethodNames = localMethods.Select(method => method.GetScriptName()).ToArray(); } @@ -668,7 +701,7 @@ private string[] GetLocalPropertyNames() { if (TypePropertyNames == null) { - var localProperties = target.Type.GetScriptableProperties(GetCommonBindFlags(), accessContext, defaultAccess); + var localProperties = target.Type.GetScriptableProperties(GetCommonBindFlags(), AccessContext, DefaultAccess); TypePropertyNames = localProperties.Select(property => property.GetScriptName()).ToArray(); } @@ -689,11 +722,11 @@ private string[] GetAllMethodNames(out string[] ownMethodNames) { ownMethodNames = null; - var names = target.GetAuxMethodNames(this, GetMethodBindFlags()).AsEnumerable(); + var names = target.GetAuxMethodNames(this, GetMethodBindFlags()).AsEnumerable() ?? Enumerable.Empty(); if ((TargetDynamic == null) && (TargetPropertyBag == null)) { names = names.Concat(GetLocalMethodNames()); - if (target.Flags.HasFlag(HostTargetFlags.AllowExtensionMethods)) + if (TargetFlags.HasFlag(HostTargetFlags.AllowExtensionMethods)) { var extensionMethodSummary = engine.ExtensionMethodSummary; ExtensionMethodSummary = extensionMethodSummary; @@ -718,7 +751,7 @@ private string[] GetAllMethodNames(out string[] ownMethodNames) private string[] GetAllPropertyNames() { - var names = target.GetAuxPropertyNames(this, GetCommonBindFlags()).AsEnumerable(); + var names = target.GetAuxPropertyNames(this, GetCommonBindFlags()).AsEnumerable() ?? Enumerable.Empty(); if (TargetDynamic != null) { names = names.Concat(TargetDynamic.GetPropertyNames()); @@ -771,7 +804,7 @@ private void UpdateFieldNames(out bool updated) private void UpdateMethodNames(out bool updated) { if ((AllMethodNames == null) || - (target.Flags.HasFlag(HostTargetFlags.AllowExtensionMethods) && (ExtensionMethodSummary != engine.ExtensionMethodSummary))) + (TargetFlags.HasFlag(HostTargetFlags.AllowExtensionMethods) && (ExtensionMethodSummary != engine.ExtensionMethodSummary))) { string[] ownMethodNames; AllMethodNames = GetAllMethodNames(out ownMethodNames); @@ -847,12 +880,12 @@ private BindingFlags GetCommonBindFlags() { var bindFlags = BindingFlags.Public | BindingFlags.NonPublic; - if (target.Flags.HasFlag(HostTargetFlags.AllowStaticMembers)) + if (TargetFlags.HasFlag(HostTargetFlags.AllowStaticMembers)) { - bindFlags |= BindingFlags.Static; + bindFlags |= BindingFlags.Static | BindingFlags.FlattenHierarchy; } - if (target.Flags.HasFlag(HostTargetFlags.AllowInstanceMembers)) + if (TargetFlags.HasFlag(HostTargetFlags.AllowInstanceMembers)) { bindFlags |= BindingFlags.Instance; } @@ -890,16 +923,16 @@ private void AdjustInvokeFlags(ref BindingFlags invokeFlags) invokeFlags |= onFlags; invokeFlags &= ~offFlags; - if (target.Flags.HasFlag(HostTargetFlags.AllowStaticMembers)) + if (TargetFlags.HasFlag(HostTargetFlags.AllowStaticMembers)) { - invokeFlags |= BindingFlags.Static; + invokeFlags |= BindingFlags.Static | BindingFlags.FlattenHierarchy; } else { invokeFlags &= ~BindingFlags.Static; } - if (target.Flags.HasFlag(HostTargetFlags.AllowInstanceMembers)) + if (TargetFlags.HasFlag(HostTargetFlags.AllowInstanceMembers)) { invokeFlags |= BindingFlags.Instance; } @@ -1237,7 +1270,7 @@ private object InvokeHostMember(string name, BindingFlags invokeFlags, object[] return DelegateFactory.CreateDelegate(engine, args[0], specificType); } - return specificType.CreateInstance(accessContext, defaultAccess, args); + return specificType.CreateInstance(AccessContext, DefaultAccess, args); } } @@ -1257,7 +1290,7 @@ private object InvokeHostMember(string name, BindingFlags invokeFlags, object[] return DelegateFactory.CreateDelegate(engine, args[0], type); } - return type.CreateInstance(accessContext, defaultAccess, args); + return type.CreateInstance(AccessContext, DefaultAccess, args); } if (TargetDynamicMetaObject != null) @@ -1399,7 +1432,7 @@ private object GetHostProperty(string name, BindingFlags invokeFlags, object[] a if (name == SpecialMemberNames.Default) { - var defaultProperty = target.Type.GetScriptableDefaultProperty(invokeFlags, bindArgs, accessContext, defaultAccess); + var defaultProperty = target.Type.GetScriptableDefaultProperty(invokeFlags, bindArgs, AccessContext, DefaultAccess); if (defaultProperty != null) { return GetHostProperty(defaultProperty, invokeFlags, args, culture); @@ -1495,7 +1528,7 @@ private object GetHostProperty(string name, BindingFlags invokeFlags, object[] a } } - var property = target.Type.GetScriptableProperty(name, invokeFlags, bindArgs, accessContext, defaultAccess); + var property = target.Type.GetScriptableProperty(name, invokeFlags, bindArgs, AccessContext, DefaultAccess); if (property != null) { return GetHostProperty(property, invokeFlags, args, culture); @@ -1506,7 +1539,7 @@ private object GetHostProperty(string name, BindingFlags invokeFlags, object[] a throw new MissingMemberException(MiscHelpers.FormatInvariant("Object has no suitable property named '{0}'", name)); } - var eventInfo = target.Type.GetScriptableEvent(name, invokeFlags, accessContext, defaultAccess); + var eventInfo = target.Type.GetScriptableEvent(name, invokeFlags, AccessContext, DefaultAccess); if (eventInfo != null) { var type = typeof(EventSource<>).MakeSpecificType(eventInfo.EventHandlerType); @@ -1514,7 +1547,7 @@ private object GetHostProperty(string name, BindingFlags invokeFlags, object[] a return type.CreateInstance(BindingFlags.NonPublic, engine, target.InvokeTarget, eventInfo); } - var field = target.Type.GetScriptableField(name, invokeFlags, accessContext, defaultAccess); + var field = target.Type.GetScriptableField(name, invokeFlags, AccessContext, DefaultAccess); if (field != null) { var result = field.GetValue(target.InvokeTarget); @@ -1524,7 +1557,7 @@ private object GetHostProperty(string name, BindingFlags invokeFlags, object[] a if (includeBoundMembers) { - if (target.Type.GetScriptableProperties(name, invokeFlags, accessContext, defaultAccess).Any()) + if (target.Type.GetScriptableProperties(name, invokeFlags, AccessContext, DefaultAccess).Any()) { if (HostIndexedPropertyMap == null) { @@ -1572,7 +1605,7 @@ private object GetHostProperty(PropertyInfo property, BindingFlags invokeFlags, } var getMethod = property.GetMethod; - if ((getMethod == null) || !getMethod.IsAccessible(accessContext) || getMethod.IsBlockedFromScript(defaultAccess, false)) + if ((getMethod == null) || !getMethod.IsAccessible(AccessContext) || getMethod.IsBlockedFromScript(DefaultAccess, false)) { throw new UnauthorizedAccessException("Property get method is unavailable or inaccessible"); } @@ -1592,7 +1625,7 @@ private object SetHostProperty(string name, BindingFlags invokeFlags, object[] a object result; - var defaultProperty = target.Type.GetScriptableDefaultProperty(invokeFlags, bindArgs.Take(bindArgs.Length - 1).ToArray(), accessContext, defaultAccess); + var defaultProperty = target.Type.GetScriptableDefaultProperty(invokeFlags, bindArgs.Take(bindArgs.Length - 1).ToArray(), AccessContext, DefaultAccess); if (defaultProperty != null) { return SetHostProperty(defaultProperty, invokeFlags, args, culture); @@ -1645,18 +1678,18 @@ private object SetHostProperty(string name, BindingFlags invokeFlags, object[] a throw new InvalidOperationException("Invalid argument count"); } - var property = target.Type.GetScriptableProperty(name, invokeFlags, bindArgs.Take(bindArgs.Length - 1).ToArray(), accessContext, defaultAccess); + var property = target.Type.GetScriptableProperty(name, invokeFlags, bindArgs.Take(bindArgs.Length - 1).ToArray(), AccessContext, DefaultAccess); if (property != null) { return SetHostProperty(property, invokeFlags, args, culture); } - var field = target.Type.GetScriptableField(name, invokeFlags, accessContext, defaultAccess); + var field = target.Type.GetScriptableField(name, invokeFlags, AccessContext, DefaultAccess); if (field != null) { if (args.Length == 1) { - if (field.IsLiteral || field.IsInitOnly || field.IsReadOnlyForScript(defaultAccess)) + if (field.IsLiteral || field.IsInitOnly || field.IsReadOnlyForScript(DefaultAccess)) { throw new UnauthorizedAccessException("Field is read-only"); } @@ -1679,13 +1712,13 @@ private object SetHostProperty(string name, BindingFlags invokeFlags, object[] a private object SetHostProperty(PropertyInfo property, BindingFlags invokeFlags, object[] args, CultureInfo culture) { - if (property.IsReadOnlyForScript(defaultAccess)) + if (property.IsReadOnlyForScript(DefaultAccess)) { throw new UnauthorizedAccessException("Property is read-only"); } var setMethod = property.SetMethod; - if ((setMethod == null) || !setMethod.IsAccessible(accessContext) || setMethod.IsBlockedFromScript(defaultAccess, false)) + if ((setMethod == null) || !setMethod.IsAccessible(AccessContext) || setMethod.IsBlockedFromScript(DefaultAccess, false)) { throw new UnauthorizedAccessException("Property set method is unavailable or inaccessible"); } @@ -2206,11 +2239,6 @@ public ScriptEngine Engine get { return engine; } } - public Type AccessContext - { - get { return accessContext; } - } - public object Unwrap() { return target.Target; @@ -2220,9 +2248,19 @@ public object Unwrap() #region IHostInvokeContext implementation + public Type AccessContext + { + get { return CachedAccessContext; } + } + public ScriptAccess DefaultAccess { - get { return defaultAccess; } + get { return CachedDefaultAccess; } + } + + public HostTargetFlags TargetFlags + { + get { return CachedTargetFlags; } } #endregion diff --git a/ClearScript/HostItemFlags.cs b/ClearScript/HostItemFlags.cs index 9dd5005e8..79ff4e1c2 100644 --- a/ClearScript/HostItemFlags.cs +++ b/ClearScript/HostItemFlags.cs @@ -38,7 +38,8 @@ public enum HostItemFlags /// Specifies that the script engine is to be given direct access to the exposed object if /// possible. This option, when supported, suppresses marshaling and hands off the object /// for script access without the host's involvement. It is currently supported only for - /// COM objects exposed in Windows Script engines. + /// COM and COM-visible + /// objects exposed in Windows Script engines. /// DirectAccess = 0x00000008 } diff --git a/ClearScript/HostMethod.cs b/ClearScript/HostMethod.cs index ee265f6a4..d9f212743 100644 --- a/ClearScript/HostMethod.cs +++ b/ClearScript/HostMethod.cs @@ -49,9 +49,9 @@ public override object DynamicInvokeTarget get { return null; } } - public override HostTargetFlags Flags + public override HostTargetFlags GetFlags(IHostInvokeContext context) { - get { return HostTargetFlags.None; } + return HostTargetFlags.None; } public override bool TryInvoke(IHostInvokeContext context, BindingFlags invokeFlags, object[] args, object[] bindArgs, out object result) diff --git a/ClearScript/HostObject.cs b/ClearScript/HostObject.cs index 8e0b0b585..d0e9fb527 100644 --- a/ClearScript/HostObject.cs +++ b/ClearScript/HostObject.cs @@ -139,9 +139,15 @@ public override object DynamicInvokeTarget get { return target; } } - public override HostTargetFlags Flags + public override HostTargetFlags GetFlags(IHostInvokeContext context) { - get { return HostTargetFlags.AllowInstanceMembers | HostTargetFlags.AllowExtensionMethods; } + var flags = HostTargetFlags.AllowInstanceMembers | HostTargetFlags.AllowExtensionMethods; + if (context.Engine.ExposeHostObjectStaticMembers) + { + flags |= HostTargetFlags.AllowStaticMembers; + } + + return flags; } public override Invocability GetInvocability(BindingFlags bindFlags, Type accessContext, ScriptAccess defaultAccess, bool ignoreDynamic) diff --git a/ClearScript/HostTarget.cs b/ClearScript/HostTarget.cs index ceeb39c29..351106211 100644 --- a/ClearScript/HostTarget.cs +++ b/ClearScript/HostTarget.cs @@ -17,7 +17,7 @@ internal abstract class HostTarget public abstract object DynamicInvokeTarget { get; } - public abstract HostTargetFlags Flags { get; } + public abstract HostTargetFlags GetFlags(IHostInvokeContext context); public virtual string[] GetAuxMethodNames(IHostInvokeContext context, BindingFlags bindFlags) { diff --git a/ClearScript/HostTargetMemberData.cs b/ClearScript/HostTargetMemberData.cs index 4655f4be2..7c47c2cad 100644 --- a/ClearScript/HostTargetMemberData.cs +++ b/ClearScript/HostTargetMemberData.cs @@ -28,15 +28,17 @@ internal class HostTargetMemberData public Invocability? TargetInvocability; } - internal sealed class SharedHostObjectMemberData : HostTargetMemberData + internal class HostTargetMemberDataWithContext : HostTargetMemberData { public readonly Type AccessContext; public readonly ScriptAccess DefaultAccess; + public readonly HostTargetFlags TargetFlags; - public SharedHostObjectMemberData(Type accessContext, ScriptAccess defaultAccess) + public HostTargetMemberDataWithContext(Type accessContext, ScriptAccess defaultAccess, HostTargetFlags targetFlags) { AccessContext = accessContext; DefaultAccess = defaultAccess; + TargetFlags = targetFlags; } } } diff --git a/ClearScript/HostType.cs b/ClearScript/HostType.cs index 74569b6bd..5c991e49b 100644 --- a/ClearScript/HostType.cs +++ b/ClearScript/HostType.cs @@ -156,13 +156,10 @@ public override object DynamicInvokeTarget get { return GetSpecificType(); } } - public override HostTargetFlags Flags + public override HostTargetFlags GetFlags(IHostInvokeContext context) { - get - { - var type = GetSpecificTypeNoThrow(); - return (type != null) ? HostTargetFlags.AllowStaticMembers : HostTargetFlags.None; - } + var type = GetSpecificTypeNoThrow(); + return (type != null) ? HostTargetFlags.AllowStaticMembers : HostTargetFlags.None; } public override string[] GetAuxPropertyNames(IHostInvokeContext context, BindingFlags bindFlags) diff --git a/ClearScript/HostTypeCollection.cs b/ClearScript/HostTypeCollection.cs index 47314be56..98a3183a4 100644 --- a/ClearScript/HostTypeCollection.cs +++ b/ClearScript/HostTypeCollection.cs @@ -5,7 +5,11 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.ComTypes; using Microsoft.ClearScript.Util; +using Microsoft.ClearScript.Util.COM; +using TYPEKIND = System.Runtime.InteropServices.ComTypes.TYPEKIND; namespace Microsoft.ClearScript { @@ -185,12 +189,105 @@ public PropertyBag GetNamespaceNode(string name) return namespaceNode; } + internal void AddEnumTypeInfo(ITypeInfo typeInfo) + { + AddEnumTypeInfoInternal(typeInfo); + } + + private PropertyBag AddEnumTypeInfoInternal(ITypeInfo typeInfo) + { + using (var attrScope = typeInfo.CreateAttrScope()) + { + if (attrScope.Value.typekind == TYPEKIND.TKIND_ALIAS) + { + ITypeInfo refTypeInfo; + typeInfo.GetRefTypeInfo(unchecked((int)attrScope.Value.tdescAlias.lpValue.ToInt64()), out refTypeInfo); + + var node = AddEnumTypeInfoInternal(refTypeInfo); + if (node != null) + { + var locator = typeInfo.GetManagedName(); + + var segments = locator.Split('.'); + if (segments.Length > 0) + { + var namespaceNode = GetOrCreateNamespaceNode(locator); + if (namespaceNode != null) + { + namespaceNode.SetPropertyNoCheck(segments.Last(), node); + return node; + } + } + } + } + else if (attrScope.Value.typekind == TYPEKIND.TKIND_ENUM) + { + var node = GetOrCreateEnumTypeInfoNode(typeInfo); + if (node != null) + { + var count = attrScope.Value.cVars; + for (var index = 0; index < count; index++) + { + using (var varDescScope = typeInfo.CreateVarDescScope(index)) + { + if (varDescScope.Value.varkind == VARKIND.VAR_CONST) + { + var name = typeInfo.GetMemberName(varDescScope.Value.memid); + node.SetPropertyNoCheck(name, Marshal.GetObjectForNativeVariant(varDescScope.Value.desc.lpvarValue)); + } + } + } + + return node; + } + } + } + + return null; + } + + private PropertyBag GetOrCreateEnumTypeInfoNode(ITypeInfo typeInfo) + { + var locator = typeInfo.GetManagedName(); + + var segments = locator.Split('.'); + if (segments.Length < 1) + { + return null; + } + + PropertyBag enumTypeInfoNode = this; + foreach (var segment in segments) + { + PropertyBag innerNode; + + object node; + if (!enumTypeInfoNode.TryGetValue(segment, out node)) + { + innerNode = new PropertyBag(true); + enumTypeInfoNode.SetPropertyNoCheck(segment, innerNode); + } + else + { + innerNode = node as PropertyBag; + if (innerNode == null) + { + throw new OperationCanceledException(MiscHelpers.FormatInvariant("Enumeration conflicts with '{0}' at '{1}'", node.GetFriendlyName(), locator)); + } + } + + enumTypeInfoNode = innerNode; + } + + return enumTypeInfoNode; + } + private void AddType(HostType hostType) { MiscHelpers.VerifyNonNullArgument(hostType, "hostType"); foreach (var type in hostType.Types) { - var namespaceNode = GetNamespaceNode(type); + var namespaceNode = GetOrCreateNamespaceNode(type); if (namespaceNode != null) { AddTypeToNamespaceNode(namespaceNode, type); @@ -198,10 +295,13 @@ private void AddType(HostType hostType) } } - private PropertyBag GetNamespaceNode(Type type) + private PropertyBag GetOrCreateNamespaceNode(Type type) { - var locator = type.GetLocator(); + return GetOrCreateNamespaceNode(type.GetLocator()); + } + private PropertyBag GetOrCreateNamespaceNode(string locator) + { var segments = locator.Split('.'); if (segments.Length < 1) { diff --git a/ClearScript/HostVariable.cs b/ClearScript/HostVariable.cs index 2b6c14374..a671d4b1b 100644 --- a/ClearScript/HostVariable.cs +++ b/ClearScript/HostVariable.cs @@ -89,9 +89,15 @@ public override object DynamicInvokeTarget get { return value; } } - public override HostTargetFlags Flags + public override HostTargetFlags GetFlags(IHostInvokeContext context) { - get { return HostTargetFlags.AllowInstanceMembers | HostTargetFlags.AllowExtensionMethods; } + var flags = HostTargetFlags.AllowInstanceMembers | HostTargetFlags.AllowExtensionMethods; + if (context.Engine.ExposeHostObjectStaticMembers) + { + flags |= HostTargetFlags.AllowStaticMembers; + } + + return flags; } public override bool TryInvokeAuxMember(IHostInvokeContext context, string name, BindingFlags invokeFlags, object[] args, object[] bindArgs, out object result) diff --git a/ClearScript/Properties/AssemblyInfo.cs b/ClearScript/Properties/AssemblyInfo.cs index d86a9a822..d818e8cc9 100644 --- a/ClearScript/Properties/AssemblyInfo.cs +++ b/ClearScript/Properties/AssemblyInfo.cs @@ -17,14 +17,14 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyVersion("6.0.1.0")] +[assembly: AssemblyFileVersion("6.0.1.0")] namespace Microsoft.ClearScript.Properties { internal static class ClearScriptVersion { - public const string Value = "6.0.0.0"; - public const string Triad = "6.0.0"; + public const string Value = "6.0.1.0"; + public const string Triad = "6.0.1"; } } diff --git a/ClearScript/ScriptEngine.cs b/ClearScript/ScriptEngine.cs index af6fbd6ab..693118388 100644 --- a/ClearScript/ScriptEngine.cs +++ b/ClearScript/ScriptEngine.cs @@ -22,6 +22,8 @@ public abstract class ScriptEngine : IDisposable private Type accessContext; private ScriptAccess defaultAccess; private bool enforceAnonymousTypeAccess; + private bool exposeHostObjectStaticMembers; + private object undefinedImportValue = Undefined.Value; private DocumentSettings documentSettings; private readonly DocumentSettings defaultDocumentSettings = new DocumentSettings(); @@ -148,6 +150,19 @@ public bool EnforceAnonymousTypeAccess } } + /// + /// Controls whether host objects provide access to the static members of their exposed types to script code. + /// + public bool ExposeHostObjectStaticMembers + { + get { return exposeHostObjectStaticMembers; } + set + { + exposeHostObjectStaticMembers = value; + OnAccessSettingsChanged(); + } + } + /// /// Enables or disables script code formatting. /// @@ -237,6 +252,21 @@ public bool EnforceAnonymousTypeAccess /// public bool EnableAutoHostVariables { get; set; } + /// + /// Gets or sets the engine's undefined import value. + /// + /// + /// Some script languages support one or more special non-null values that represent + /// nonexistent, missing, unknown, or undefined data. When such a value is marshaled to the + /// host, the script engine maps it to the value of this property. The default value is + /// . + /// + public object UndefinedImportValue + { + get { return undefinedImportValue; } + set { undefinedImportValue = value; } + } + /// /// Gets or sets a callback that can be used to halt script execution. /// @@ -969,7 +999,8 @@ public void Execute(string documentName, string code) /// /// If a debugger is attached, it will present the specified script code to the user as a /// document with the specified name. Discarding this document removes it from view but - /// has no effect on the script engine. + /// has no effect on the script engine. Only Windows Script engines honor + /// . /// /// public void Execute(string documentName, bool discard, string code) @@ -1124,7 +1155,8 @@ public object Evaluate(string documentName, string code) /// /// If a debugger is attached, it will present the specified script code to the user as a /// document with the specified name. Discarding this document removes it from view but - /// has no effect on the script engine. + /// has no effect on the script engine. Only Windows Script engines honor + /// . /// /// /// The following table summarizes the types of result values that script code can return. @@ -1786,7 +1818,7 @@ private HostItem GetOrCreateHostItemForHostType(HostType hostType, HostItemFlags private readonly ConditionalWeakTable> sharedHostObjectMemberDataCache = new ConditionalWeakTable>(); - internal HostTargetMemberData GetSharedHostObjectMemberData(HostObject target, Type targetAccessContext, ScriptAccess targetDefaultAccess) + internal HostTargetMemberData GetSharedHostObjectMemberData(HostObject target, Type targetAccessContext, ScriptAccess targetDefaultAccess, HostTargetFlags targetFlags) { var cacheEntry = sharedHostObjectMemberDataCache.GetOrCreateValue(target.Type); @@ -1795,14 +1827,14 @@ internal HostTargetMemberData GetSharedHostObjectMemberData(HostObject target, T foreach (var weakRef in cacheEntry) { - var memberData = weakRef.Target as SharedHostObjectMemberData; + var memberData = weakRef.Target as HostTargetMemberDataWithContext; if (memberData == null) { staleWeakRefCount++; } else { - if ((memberData.AccessContext == targetAccessContext) && (memberData.DefaultAccess == targetDefaultAccess)) + if ((memberData.AccessContext == targetAccessContext) && (memberData.DefaultAccess == targetDefaultAccess) && (memberData.TargetFlags == targetFlags)) { return memberData; } @@ -1826,7 +1858,7 @@ internal HostTargetMemberData GetSharedHostObjectMemberData(HostObject target, T } } - var newMemberData = new SharedHostObjectMemberData(targetAccessContext, targetDefaultAccess); + var newMemberData = new HostTargetMemberDataWithContext(targetAccessContext, targetDefaultAccess, targetFlags); cacheEntry.Add(new WeakReference(newMemberData)); return newMemberData; } diff --git a/ClearScript/ScriptMethod.cs b/ClearScript/ScriptMethod.cs index a04700caa..e99669c0c 100644 --- a/ClearScript/ScriptMethod.cs +++ b/ClearScript/ScriptMethod.cs @@ -55,9 +55,9 @@ public override object DynamicInvokeTarget get { return null; } } - public override HostTargetFlags Flags + public override HostTargetFlags GetFlags(IHostInvokeContext context) { - get { return HostTargetFlags.None; } + return HostTargetFlags.None; } public override bool TryInvoke(IHostInvokeContext context, BindingFlags invokeFlags, object[] args, object[] bindArgs, out object result) diff --git a/ClearScript/Undefined.cs b/ClearScript/Undefined.cs index 369d67a00..bad72d77e 100644 --- a/ClearScript/Undefined.cs +++ b/ClearScript/Undefined.cs @@ -7,13 +7,16 @@ namespace Microsoft.ClearScript /// Represents an undefined value. /// /// - /// Most script languages support one or more special values that represent nonexistent, - /// missing, unknown, or undefined data. The ClearScript library maps some such values to - /// null, and others to instances of this class. + /// Some script languages support one or more special non-null values that represent + /// nonexistent, missing, unknown, or undefined data. The ClearScript library maps such values + /// to instances of this class. /// public class Undefined { - internal static readonly Undefined Value = new Undefined(); + /// + /// The sole instance of the class. + /// + public static readonly Undefined Value = new Undefined(); private Undefined() { diff --git a/ClearScript/Util/AssemblyHelpers.cs b/ClearScript/Util/AssemblyHelpers.cs index c5c0ee967..880a48424 100644 --- a/ClearScript/Util/AssemblyHelpers.cs +++ b/ClearScript/Util/AssemblyHelpers.cs @@ -47,6 +47,19 @@ public static string GetFullAssemblyName(string name) { return assemblyName.FullName; } + + IEnumerable subDirPaths; + if (MiscHelpers.Try(out subDirPaths, () => Directory.EnumerateDirectories(dirPath, "*", SearchOption.AllDirectories))) + { + foreach (var subDirPath in subDirPaths) + { + path = Path.Combine(subDirPath, fileName); + if (File.Exists(path) && MiscHelpers.Try(out assemblyName, () => AssemblyName.GetAssemblyName(path))) + { + return assemblyName.FullName; + } + } + } } return name; @@ -94,5 +107,146 @@ public static bool IsFriendOf(this Assembly thisAssembly, Assembly thatAssembly) return false; } + + public static IEnumerable GetReferencedEnums(this Assembly assembly) + { + var processedTypes = new HashSet(); + return assembly.GetAllTypes().SelectMany(type => GetReferencedEnums(assembly, type, processedTypes)); + } + + private static IEnumerable GetReferencedEnums(Assembly assembly, Type type, HashSet processedTypes) + { + if ((type == null) || !type.IsVisible || type.ContainsGenericParameters || processedTypes.Contains(type)) + { + yield break; + } + + processedTypes.Add(type); + + if (type.IsEnum) + { + yield return type; + yield break; + } + + foreach (var enumType in GetReferencedEnums(assembly, type.GetElementType(), processedTypes)) + { + yield return enumType; + } + + foreach (var enumType in type.GetGenericArguments().SelectMany(argType => GetReferencedEnums(assembly, argType, processedTypes))) + { + yield return enumType; + } + + foreach (var enumType in GetReferencedEnums(assembly, type.BaseType, processedTypes)) + { + yield return enumType; + } + + foreach (var enumType in type.GetInterfaces().SelectMany(interfaceType => GetReferencedEnums(assembly, interfaceType, processedTypes))) + { + yield return enumType; + } + + if (type.Assembly == assembly) + { + foreach (var enumType in type.GetMembers().SelectMany(member => GetReferencedEnums(assembly, member, processedTypes))) + { + yield return enumType; + } + } + } + + private static IEnumerable GetReferencedEnums(Assembly assembly, MemberInfo member, HashSet processedTypes) + { + if (member == null) + { + return Enumerable.Empty(); + } + + if (member.MemberType == MemberTypes.Field) + { + return GetReferencedEnums(assembly, (FieldInfo)member, processedTypes); + } + + if (member.MemberType == MemberTypes.Property) + { + return GetReferencedEnums(assembly, (PropertyInfo)member, processedTypes); + } + + if (member.MemberType == MemberTypes.Method) + { + return GetReferencedEnums(assembly, (MethodInfo)member, processedTypes); + } + + if (member.MemberType == MemberTypes.NestedType) + { + return GetReferencedEnums(assembly, (Type)member, processedTypes); + } + + return Enumerable.Empty(); + } + + private static IEnumerable GetReferencedEnums(Assembly assembly, FieldInfo field, HashSet processedTypes) + { + if (field == null) + { + return Enumerable.Empty(); + } + + return GetReferencedEnums(assembly, field.FieldType, processedTypes); + } + + private static IEnumerable GetReferencedEnums(Assembly assembly, PropertyInfo property, HashSet processedTypes) + { + if (property == null) + { + yield break; + } + + foreach (var enumType in GetReferencedEnums(assembly, property.PropertyType, processedTypes)) + { + yield return enumType; + } + + foreach (var enumType in GetReferencedEnums(assembly, property.GetMethod, processedTypes)) + { + yield return enumType; + } + + foreach (var enumType in GetReferencedEnums(assembly, property.SetMethod, processedTypes)) + { + yield return enumType; + } + } + + private static IEnumerable GetReferencedEnums(Assembly assembly, MethodInfo method, HashSet processedTypes) + { + if (method == null) + { + yield break; + } + + foreach (var enumType in GetReferencedEnums(assembly, method.ReturnParameter, processedTypes)) + { + yield return enumType; + } + + foreach (var enumType in method.GetParameters().SelectMany(param => GetReferencedEnums(assembly, param, processedTypes))) + { + yield return enumType; + } + } + + private static IEnumerable GetReferencedEnums(Assembly assembly, ParameterInfo param, HashSet processedTypes) + { + if (param == null) + { + return Enumerable.Empty(); + } + + return GetReferencedEnums(assembly, param.ParameterType, processedTypes); + } } } diff --git a/ClearScript/Util/AssemblyTable.NetFramework.cs b/ClearScript/Util/AssemblyTable.NetFramework.cs index b0fb0ca11..e1e50bacb 100644 --- a/ClearScript/Util/AssemblyTable.NetFramework.cs +++ b/ClearScript/Util/AssemblyTable.NetFramework.cs @@ -36,66 +36,49 @@ static AssemblyTableImpl() public static string GetFullAssemblyNameImpl(string name) { string fullName; - return ((table != null) && table.TryGetValue(name, out fullName)) ? fullName : name; + return ((table != null) && table.TryGetValue(name, out fullName)) ? fullName : AssemblyHelpers.GetFullAssemblyName(name); } private static void LoadAssemblyTable() { - // ReSharper disable EmptyGeneralCatchClause - - string filePath = null; - try + if (!ReadAssemblyTable() && BuildAssemblyTable()) { - var dirPath = Path.Combine(MiscHelpers.GetLocalDataRootPath(), GetRuntimeVersionDirectoryName()); - Directory.CreateDirectory(dirPath); - - filePath = Path.Combine(dirPath, "AssemblyTable.bin"); - if (File.Exists(filePath)) - { - try - { - using (var stream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read)) - { - var formatter = new BinaryFormatter(); - table = (ConcurrentDictionary)formatter.Deserialize(stream); - } - } - catch (Exception) - { - } - } + WriteAssemblyTable(); } - catch (Exception) + } + + private static bool ReadAssemblyTable() + { + bool usingAppPath; + if (ReadAssemblyTable(MiscHelpers.GetLocalDataRootPath(out usingAppPath))) { + return true; } - if (table == null) + return !usingAppPath && ReadAssemblyTable(MiscHelpers.GetLocalDataRootPath(AppDomain.CurrentDomain.BaseDirectory)); + } + + private static bool ReadAssemblyTable(string rootPath) + { + var succeeded = MiscHelpers.Try(() => { - BuildAssemblyTable(); - if ((table != null) && (filePath != null)) + var filePath = GetFilePath(rootPath); + if (File.Exists(filePath)) { - try - { - using (var stream = new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None)) - { - var formatter = new BinaryFormatter(); - formatter.Serialize(stream, table); - } - } - catch (Exception) + using (var stream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read)) { + var formatter = new BinaryFormatter(); + table = (ConcurrentDictionary)formatter.Deserialize(stream); } } - } + }); - // ReSharper restore EmptyGeneralCatchClause + return succeeded && (table != null); } - private static void BuildAssemblyTable() + private static bool BuildAssemblyTable() { - // ReSharper disable EmptyGeneralCatchClause - - try + var succeeded = MiscHelpers.Try(() => { var key = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\.NETFramework"); if (key != null) @@ -105,22 +88,47 @@ private static void BuildAssemblyTable() table = new ConcurrentDictionary(); foreach (var filePath in Directory.EnumerateFiles(dirPath, "*.dll", SearchOption.AllDirectories)) { - try + var path = filePath; + MiscHelpers.Try(() => { - var assemblyName = Assembly.ReflectionOnlyLoadFrom(filePath).GetName(); + var assemblyName = Assembly.ReflectionOnlyLoadFrom(path).GetName(); table.TryAdd(assemblyName.Name, assemblyName.FullName); - } - catch (Exception) - { - } + }); } } - } - catch (Exception) + }); + + return succeeded && (table != null); + } + + private static void WriteAssemblyTable() + { + bool usingAppPath; + if (!WriteAssemblyTable(MiscHelpers.GetLocalDataRootPath(out usingAppPath)) && !usingAppPath) { + WriteAssemblyTable(MiscHelpers.GetLocalDataRootPath(AppDomain.CurrentDomain.BaseDirectory)); } + } + + private static bool WriteAssemblyTable(string rootPath) + { + return MiscHelpers.Try(() => + { + var filePath = GetFilePath(rootPath); + using (var stream = new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None)) + { + var formatter = new BinaryFormatter(); + formatter.Serialize(stream, table); + } + }); + } + + private static string GetFilePath(string rootPath) + { + var dirPath = Path.Combine(rootPath, GetRuntimeVersionDirectoryName()); + Directory.CreateDirectory(dirPath); - // ReSharper restore EmptyGeneralCatchClause + return Path.Combine(dirPath, "AssemblyTable.bin"); } private static string GetRuntimeVersionDirectoryName() diff --git a/ClearScript/Util/COM/StructHelpers.cs b/ClearScript/Util/COM/StructHelpers.cs new file mode 100644 index 000000000..bfbf9e4ef --- /dev/null +++ b/ClearScript/Util/COM/StructHelpers.cs @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + +using System; +using System.Collections.Generic; +using System.Runtime.InteropServices; + +namespace Microsoft.ClearScript.Util.COM +{ + internal static class StructHelpers + { + public delegate void GetStruct(out IntPtr pStruct); + + public delegate void ReleaseStruct(IntPtr pStruct); + + public static IScope CreateScope(GetStruct get, ReleaseStruct release) + { + IntPtr pStruct; + get(out pStruct); + return Scope.Create(() => (T)Marshal.PtrToStructure(pStruct, typeof(T)), value => release(pStruct)); + } + + public static IEnumerable GetStructsFromArray(IntPtr pStructs, int count) + { + var size = Marshal.SizeOf(typeof(T)); + for (var pStruct = pStructs; count > 0; count--) + { + yield return (T)Marshal.PtrToStructure(pStruct, typeof(T)); + pStruct += size; + } + } + } +} diff --git a/ClearScript/Util/COM/TypeInfoHelpers.cs b/ClearScript/Util/COM/TypeInfoHelpers.cs index 7713282cb..a1aa505d9 100644 --- a/ClearScript/Util/COM/TypeInfoHelpers.cs +++ b/ClearScript/Util/COM/TypeInfoHelpers.cs @@ -17,6 +17,9 @@ namespace Microsoft.ClearScript.Util.COM { internal static partial class TypeInfoHelpers { + // GUID_ManagedName (um\cor.h) + private static readonly Guid managedNameGuid = new Guid("{0f21f359-ab84-41e8-9a78-36d110e6d2f9}"); + public static ITypeLib GetContainingTypeLib(this ITypeInfo typeInfo) { int index; @@ -35,6 +38,35 @@ public static string GetName(this ITypeInfo typeInfo) return typeInfo.GetMemberName(-1); } + public static string GetManagedName(this ITypeInfo typeInfo) + { + var typeInfo2 = typeInfo as ITypeInfo2; + if (typeInfo2 != null) + { + // ReSharper disable EmptyGeneralCatchClause + + try + { + var guid = managedNameGuid; + object data; + typeInfo2.GetCustData(ref guid, out data); + + var name = data as string; + if (name != null) + { + return name.Trim(); + } + } + catch (Exception) + { + } + + // ReSharper restore EmptyGeneralCatchClause + } + + return typeInfo.GetContainingTypeLib().GetManagedName() + "." + Marshal.GetTypeInfoName(typeInfo); + } + public static string GetMemberName(this ITypeInfo typeInfo, int memid) { string name; @@ -47,140 +79,118 @@ public static string GetMemberName(this ITypeInfo typeInfo, int memid) public static Guid GetGuid(this ITypeInfo typeInfo) { - return typeInfo.GetTypeAttr().guid; + using (var attrScope = typeInfo.CreateAttrScope()) + { + return attrScope.Value.guid; + } + } + + public static Guid GetOrCreateGuid(this ITypeInfo typeInfo) + { + var guid = typeInfo.GetGuid(); + if (guid != Guid.Empty) + { + return guid; + } + + var guidBytes = typeInfo.GetContainingTypeLib().GetGuid().ToByteArray(); + + var nameBytes = BitConverter.GetBytes(typeInfo.GetName().GetDigestAsUInt64()); + for (var index = 0; index < guidBytes.Length; index++) + { + guidBytes[index] ^= nameBytes[index % nameBytes.Length]; + } + + return new Guid(guidBytes); } public static TYPEFLAGS GetFlags(this ITypeInfo typeInfo) { - return typeInfo.GetTypeAttr().wTypeFlags; + using (var attrScope = typeInfo.CreateAttrScope()) + { + return attrScope.Value.wTypeFlags; + } } public static TYPEKIND GetKind(this ITypeInfo typeInfo) { - return typeInfo.GetTypeAttr().typekind; + using (var attrScope = typeInfo.CreateAttrScope()) + { + return attrScope.Value.typekind; + } } public static IEnumerable GetDispatchMembers(this ITypeInfo typeInfo) { - var funcCount = typeInfo.GetTypeAttr().cFuncs; - var isEnumerable = false; - - var names = new string[1]; - for (var index = 0; index < funcCount; index++) + using (var attrScope = typeInfo.CreateAttrScope()) { - IntPtr pDesc; - typeInfo.GetFuncDesc(index, out pDesc); - try + var count = attrScope.Value.cFuncs; + var isEnumerable = false; + + var names = new string[1]; + for (var index = 0; index < count; index++) { - var desc = (FUNCDESC)Marshal.PtrToStructure(pDesc, typeof(FUNCDESC)); - if (desc.memid == SpecialDispIDs.NewEnum) + using (var funcDescScope = typeInfo.CreateFuncDescScope(index)) { - isEnumerable = true; - } + if (funcDescScope.Value.memid == SpecialDispIDs.NewEnum) + { + isEnumerable = true; + } - if ((desc.wFuncFlags & (short)FUNCFLAGS.FUNCFLAG_FRESTRICTED) != 0) - { - continue; - } + if ((funcDescScope.Value.wFuncFlags & (short)FUNCFLAGS.FUNCFLAG_FRESTRICTED) != 0) + { + continue; + } - int nameCount; - typeInfo.GetNames(desc.memid, names, 1, out nameCount); - if (nameCount > 0) - { - yield return new DispatchMember(names[0], desc.memid, desc.invkind); - } - } - finally - { - typeInfo.ReleaseFuncDesc(pDesc); - } + int nameCount; + typeInfo.GetNames(funcDescScope.Value.memid, names, 1, out nameCount); + if (nameCount > 0) + { + yield return new DispatchMember(names[0], funcDescScope.Value.memid, funcDescScope.Value.invkind); + } - if (isEnumerable) - { - yield return new DispatchMember("GetEnumerator", SpecialDispIDs.GetEnumerator, INVOKEKIND.INVOKE_FUNC); + if (isEnumerable) + { + yield return new DispatchMember("GetEnumerator", SpecialDispIDs.GetEnumerator, INVOKEKIND.INVOKE_FUNC); + } + } } } } - public static IPropertyBag GetTypeLibEnums(this ITypeInfo typeInfo) + public static bool IsEnum(this ITypeInfo typeInfo) { - var typeLib = typeInfo.GetContainingTypeLib(); - var typeLibName = typeLib.GetName(); - - var rootNode = new PropertyBag(true); - - var typeInfoCount = typeLib.GetTypeInfoCount(); - for (var typeInfoIndex = 0; typeInfoIndex < typeInfoCount; typeInfoIndex++) + using (var attrScope = typeInfo.CreateAttrScope()) { - typeLib.GetTypeInfo(typeInfoIndex, out typeInfo); - var typeInfoName = typeInfo.GetName(); - - var typeAttr = typeInfo.GetTypeAttr(); - if (typeAttr.typekind == TYPEKIND.TKIND_ALIAS) + if (attrScope.Value.typekind == TYPEKIND.TKIND_ENUM) { - ITypeInfo refTypeInfo; - typeInfo.GetRefTypeInfo(unchecked((int)(long)typeAttr.tdescAlias.lpValue), out refTypeInfo); - - typeInfo = refTypeInfo; - typeAttr = typeInfo.GetTypeAttr(); + return true; } - if (typeAttr.typekind == TYPEKIND.TKIND_ENUM) + if (attrScope.Value.typekind == TYPEKIND.TKIND_ALIAS) { - var varCount = typeAttr.cVars; - for (var varIndex = 0; varIndex < varCount; varIndex++) - { - IntPtr pVarDesc; - typeInfo.GetVarDesc(varIndex, out pVarDesc); - try - { - var varDesc = (VARDESC)Marshal.PtrToStructure(pVarDesc, typeof(VARDESC)); - if (varDesc.varkind == VARKIND.VAR_CONST) - { - var varName = typeInfo.GetMemberName(varDesc.memid); - - object typeLibNodeObj; - if (!rootNode.TryGetValue(typeLibName, out typeLibNodeObj) || !(typeLibNodeObj is PropertyBag)) - { - typeLibNodeObj = new PropertyBag(true); - rootNode.SetPropertyNoCheck(typeLibName, typeLibNodeObj); - } - - object typeInfoNodeObj; - var typeLibNode = (PropertyBag)typeLibNodeObj; - if (!typeLibNode.TryGetValue(typeInfoName, out typeInfoNodeObj) || !(typeInfoNodeObj is PropertyBag)) - { - typeInfoNodeObj = new PropertyBag(true); - typeLibNode.SetPropertyNoCheck(typeInfoName, typeInfoNodeObj); - } - - var typeInfoNode = (PropertyBag)typeInfoNodeObj; - typeInfoNode.SetPropertyNoCheck(varName, Marshal.GetObjectForNativeVariant(varDesc.desc.lpvarValue)); - } - } - finally - { - typeInfo.ReleaseVarDesc(pVarDesc); - } - } + ITypeInfo refTypeInfo; + typeInfo.GetRefTypeInfo(unchecked((int)attrScope.Value.tdescAlias.lpValue.ToInt64()), out refTypeInfo); + return refTypeInfo.IsEnum(); } + + return false; } + } - return rootNode; + public static IScope CreateAttrScope(this ITypeInfo typeInfo) + { + return StructHelpers.CreateScope(typeInfo.GetTypeAttr, typeInfo.ReleaseTypeAttr); } - private static TYPEATTR GetTypeAttr(this ITypeInfo typeInfo) + public static IScope CreateVarDescScope(this ITypeInfo typeInfo, int index) { - IntPtr pTypeAttr; - typeInfo.GetTypeAttr(out pTypeAttr); - try - { - return (TYPEATTR)Marshal.PtrToStructure(pTypeAttr, typeof(TYPEATTR)); - } - finally - { - typeInfo.ReleaseTypeAttr(pTypeAttr); - } + return StructHelpers.CreateScope((out IntPtr pVarDesc) => typeInfo.GetVarDesc(index, out pVarDesc), typeInfo.ReleaseVarDesc); + } + + public static IScope CreateFuncDescScope(this ITypeInfo typeInfo, int index) + { + return StructHelpers.CreateScope((out IntPtr pFuncDesc) => typeInfo.GetFuncDesc(index, out pFuncDesc), typeInfo.ReleaseFuncDesc); } } } diff --git a/ClearScript/Util/COM/TypeLibHelpers.cs b/ClearScript/Util/COM/TypeLibHelpers.cs index ec2767caf..eeb47e3b6 100644 --- a/ClearScript/Util/COM/TypeLibHelpers.cs +++ b/ClearScript/Util/COM/TypeLibHelpers.cs @@ -1,12 +1,24 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; using System.Runtime.InteropServices.ComTypes; +using ELEMDESC = System.Runtime.InteropServices.ComTypes.ELEMDESC; +using FUNCDESC = System.Runtime.InteropServices.ComTypes.FUNCDESC; +using TYPEDESC = System.Runtime.InteropServices.ComTypes.TYPEDESC; +using TYPELIBATTR = System.Runtime.InteropServices.ComTypes.TYPELIBATTR; +using VARDESC = System.Runtime.InteropServices.ComTypes.VARDESC; namespace Microsoft.ClearScript.Util.COM { internal static class TypeLibHelpers { + // GUID_ManagedName (um\cor.h) + private static readonly Guid managedNameGuid = new Guid("{0f21f359-ab84-41e8-9a78-36d110e6d2f9}"); + public static string GetName(this ITypeLib typeLib) { return typeLib.GetMemberName(-1); @@ -21,5 +33,186 @@ public static string GetMemberName(this ITypeLib typeLib, int index) typeLib.GetDocumentation(index, out name, out docString, out helpContext, out helpFile); return name; } + + public static string GetManagedName(this ITypeLib typeLib) + { + var typeLib2 = typeLib as ITypeLib2; + if (typeLib2 != null) + { + // ReSharper disable EmptyGeneralCatchClause + + try + { + var guid = managedNameGuid; + object data; + typeLib2.GetCustData(ref guid, out data); + + var name = data as string; + if (name != null) + { + name = name.Trim(); + if (name.EndsWith(".dll", StringComparison.OrdinalIgnoreCase) || name.EndsWith(".exe", StringComparison.OrdinalIgnoreCase)) + { + return name.Substring(0, name.Length - 4); + } + + return name; + } + } + catch (Exception) + { + } + + // ReSharper restore EmptyGeneralCatchClause + } + + return typeLib.GetName(); + } + + public static Guid GetGuid(this ITypeLib typeLib) + { + using (var attrScope = typeLib.CreateAttrScope()) + { + return attrScope.Value.guid; + } + } + + public static IScope CreateAttrScope(this ITypeLib typeLib) + { + return StructHelpers.CreateScope(typeLib.GetLibAttr, typeLib.ReleaseTLibAttr); + } + + public static IEnumerable GetReferencedEnums(this ITypeLib typeLib) + { + var processedTypeInfo = new Dictionary(); + + var count = typeLib.GetTypeInfoCount(); + for (var index = 0; index < count; index++) + { + ITypeInfo typeInfo; + typeLib.GetTypeInfo(index, out typeInfo); + + foreach (var enumTypeInfo in GetReferencedEnums(typeLib, typeInfo, processedTypeInfo)) + { + yield return enumTypeInfo; + } + } + } + + private static IEnumerable GetReferencedEnums(ITypeLib typeLib, ITypeInfo typeInfo, Dictionary processedTypeInfo) + { + if (typeInfo == null) + { + yield break; + } + + var guid = typeInfo.GetOrCreateGuid(); + + if (processedTypeInfo.ContainsKey(guid)) + { + yield break; + } + + processedTypeInfo.Add(guid, typeInfo); + + if (typeInfo.IsEnum()) + { + yield return typeInfo; + yield break; + } + + if (typeInfo.GetContainingTypeLib().GetGuid() != typeLib.GetGuid()) + { + yield break; + } + + using (var typeAttrScope = typeInfo.CreateAttrScope()) + { + for (var funcIndex = 0; funcIndex < typeAttrScope.Value.cFuncs; funcIndex++) + { + using (var funcDescScope = typeInfo.CreateFuncDescScope(funcIndex)) + { + foreach (var enumTypeInfo in GetReferencedEnums(typeLib, typeInfo, funcDescScope.Value, processedTypeInfo)) + { + yield return enumTypeInfo; + } + } + } + + for (var varIndex = 0; varIndex < typeAttrScope.Value.cVars; varIndex++) + { + using (var varDescScope = typeInfo.CreateVarDescScope(varIndex)) + { + foreach (var enumTypeInfo in GetReferencedEnums(typeLib, typeInfo, varDescScope.Value, processedTypeInfo)) + { + yield return enumTypeInfo; + } + } + } + + for (var implTypeIndex = 0; implTypeIndex < typeAttrScope.Value.cImplTypes; implTypeIndex++) + { + int href; + typeInfo.GetRefTypeOfImplType(implTypeIndex, out href); + + ITypeInfo refTypeInfo; + typeInfo.GetRefTypeInfo(href, out refTypeInfo); + + var refGuid = refTypeInfo.GetGuid(); + if ((refGuid == typeof(IDispatch).GUID) || (refGuid == typeof(IDispatchEx).GUID)) + { + continue; + } + + foreach (var enumTypeInfo in GetReferencedEnums(typeLib, refTypeInfo, processedTypeInfo)) + { + yield return enumTypeInfo; + } + } + } + } + + private static IEnumerable GetReferencedEnums(ITypeLib typeLib, ITypeInfo typeInfo, FUNCDESC funcDesc, Dictionary processedTypeInfo) + { + foreach (var enumTypeInfo in GetReferencedEnums(typeLib, typeInfo, funcDesc.elemdescFunc, processedTypeInfo)) + { + yield return enumTypeInfo; + } + + foreach (var elemDesc in StructHelpers.GetStructsFromArray(funcDesc.lprgelemdescParam, funcDesc.cParams)) + { + foreach (var enumTypeInfo in GetReferencedEnums(typeLib, typeInfo, elemDesc, processedTypeInfo)) + { + yield return enumTypeInfo; + } + } + } + + private static IEnumerable GetReferencedEnums(ITypeLib typeLib, ITypeInfo typeInfo, VARDESC varDesc, Dictionary processedTypeInfo) + { + return GetReferencedEnums(typeLib, typeInfo, varDesc.elemdescVar, processedTypeInfo); + } + + private static IEnumerable GetReferencedEnums(ITypeLib typeLib, ITypeInfo typeInfo, ELEMDESC elemDesc, Dictionary processedTypeInfo) + { + return GetReferencedEnums(typeLib, typeInfo, elemDesc.tdesc, processedTypeInfo); + } + + private static IEnumerable GetReferencedEnums(ITypeLib typeLib, ITypeInfo typeInfo, TYPEDESC typeDesc, Dictionary processedTypeInfo) + { + if ((typeDesc.vt == (short)VarEnum.VT_PTR) || (typeDesc.vt == (short)VarEnum.VT_CARRAY)) + { + return GetReferencedEnums(typeLib, typeInfo, (TYPEDESC)Marshal.PtrToStructure(typeDesc.lpValue, typeof(TYPEDESC)), processedTypeInfo); + } + + if (typeDesc.vt == (short)VarEnum.VT_USERDEFINED) + { + ITypeInfo refTypeInfo; + typeInfo.GetRefTypeInfo(unchecked((int)typeDesc.lpValue.ToInt64()), out refTypeInfo); + return GetReferencedEnums(typeLib, refTypeInfo, processedTypeInfo); + } + + return Enumerable.Empty(); + } } } diff --git a/ClearScript/Util/IHostInvokeContext.cs b/ClearScript/Util/IHostInvokeContext.cs index 3f7097dbe..7bb205e9a 100644 --- a/ClearScript/Util/IHostInvokeContext.cs +++ b/ClearScript/Util/IHostInvokeContext.cs @@ -10,5 +10,6 @@ internal interface IHostInvokeContext ScriptEngine Engine { get; } Type AccessContext { get; } ScriptAccess DefaultAccess { get; } + HostTargetFlags TargetFlags { get; } } } diff --git a/NetCore/ClearScript/Util/IJW/IJWHostLibrary.cs b/ClearScript/Util/IJW/IJWHostLibrary.cs similarity index 79% rename from NetCore/ClearScript/Util/IJW/IJWHostLibrary.cs rename to ClearScript/Util/IJW/IJWHostLibrary.cs index 09dfdf334..84e4206bf 100644 --- a/NetCore/ClearScript/Util/IJW/IJWHostLibrary.cs +++ b/ClearScript/Util/IJW/IJWHostLibrary.cs @@ -10,7 +10,20 @@ internal static class IJWHostLibrary { public static IntPtr Load() { - var dirPath = Path.Combine(MiscHelpers.GetLocalDataRootPath(), "IJW"); + IntPtr hLibrary; + + var usingAppPath = false; + if (!MiscHelpers.Try(out hLibrary, () => Load(MiscHelpers.GetLocalDataRootPath(out usingAppPath))) && !usingAppPath) + { + hLibrary = Load(MiscHelpers.GetLocalDataRootPath(AppDomain.CurrentDomain.BaseDirectory)); + } + + return hLibrary; + } + + private static IntPtr Load(string rootPath) + { + var dirPath = Path.Combine(rootPath, "IJW"); var filePath = Path.Combine(dirPath, "ijwhost.dll"); if (!File.Exists(filePath)) diff --git a/ClearScript/Util/MemberHelpers.cs b/ClearScript/Util/MemberHelpers.cs index d93624ce7..a7faab5a1 100644 --- a/ClearScript/Util/MemberHelpers.cs +++ b/ClearScript/Util/MemberHelpers.cs @@ -305,12 +305,7 @@ public static string GetShortName(this MemberInfo member) return (index >= 0) ? name.Substring(index + 1) : name; } - private static bool IsExplicitImplementation(this MemberInfo member) - { - return member.Name.IndexOf('.') >= 0; - } - - private static T GetAttribute(this MemberInfo member, bool inherit) where T : Attribute + public static T GetAttribute(this MemberInfo member, bool inherit) where T : Attribute { try { @@ -329,5 +324,10 @@ private static T GetAttribute(this MemberInfo member, bool inherit) where T : throw; } } + + private static bool IsExplicitImplementation(this MemberInfo member) + { + return member.Name.IndexOf('.') >= 0; + } } } diff --git a/ClearScript/Util/MiscHelpers.cs b/ClearScript/Util/MiscHelpers.cs index 14a474142..f1a8bf2f1 100644 --- a/ClearScript/Util/MiscHelpers.cs +++ b/ClearScript/Util/MiscHelpers.cs @@ -514,9 +514,33 @@ public static void AssertUnreachable() Debug.Assert(false, "Entered code block presumed unreachable."); } - public static string GetLocalDataRootPath() + public static string GetLocalDataRootPath(out bool usingAppPath) { - return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Microsoft", "ClearScript", ClearScriptVersion.Triad, Environment.Is64BitProcess ? "x64" : "x86"); + var basePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData); + if (string.IsNullOrWhiteSpace(basePath)) + { + basePath = AppDomain.CurrentDomain.BaseDirectory; + usingAppPath = true; + } + else + { + usingAppPath = false; + } + + return GetLocalDataRootPath(basePath); + } + + public static string GetLocalDataRootPath(string basePath) + { + var path = Path.Combine(basePath, "Microsoft", "ClearScript", ClearScriptVersion.Triad, Environment.Is64BitProcess ? "x64" : "x86"); + + string fullPath; + if (Try(out fullPath, () => Path.GetFullPath(path))) + { + return fullPath; + } + + return path; } #endregion diff --git a/ClearScript/Util/ObjectHelpers.cs b/ClearScript/Util/ObjectHelpers.cs index b37efc952..e8ec61104 100644 --- a/ClearScript/Util/ObjectHelpers.cs +++ b/ClearScript/Util/ObjectHelpers.cs @@ -11,15 +11,11 @@ using Microsoft.Win32; using TYPEFLAGS = System.Runtime.InteropServices.ComTypes.TYPEFLAGS; using TYPEKIND = System.Runtime.InteropServices.ComTypes.TYPEKIND; -using TYPELIBATTR = System.Runtime.InteropServices.ComTypes.TYPELIBATTR; namespace Microsoft.ClearScript.Util { internal static class ObjectHelpers { - // GUID_ManagedName (um\cor.h) - private static readonly Guid managedNameGuid = new Guid("{0f21f359-ab84-41e8-9a78-36d110e6d2f9}"); - public static Type GetTypeOrTypeInfo(this object value) { var type = value.GetType(); @@ -176,7 +172,7 @@ private static Type GetTypeForTypeInfo(ITypeInfo typeInfo) var assembly = LoadPrimaryInteropAssembly(typeLib); if (assembly != null) { - var name = GetManagedTypeInfoName(typeInfo, typeLib); + var name = typeInfo.GetManagedName(); var guid = typeInfo.GetGuid(); var type = assembly.GetType(name, false, true); @@ -185,7 +181,7 @@ private static Type GetTypeForTypeInfo(ITypeInfo typeInfo) return type; } - var types = assembly.GetTypes(); + var types = assembly.GetAllTypes().ToArray(); if ((index >= 0) && (index < types.Length)) { type = types[index]; @@ -225,23 +221,15 @@ private static Assembly LoadPrimaryInteropAssembly(ITypeLib typeLib) try { - IntPtr pLibAttr; - typeLib.GetLibAttr(out pLibAttr); - try + using (var attrScope = typeLib.CreateAttrScope()) { - var typeLibAttr = (TYPELIBATTR)Marshal.PtrToStructure(pLibAttr, typeof(TYPELIBATTR)); - string name; string codeBase; - if (GetPrimaryInteropAssembly(typeLibAttr.guid, typeLibAttr.wMajorVerNum, typeLibAttr.wMinorVerNum, out name, out codeBase)) + if (GetPrimaryInteropAssembly(attrScope.Value.guid, attrScope.Value.wMajorVerNum, attrScope.Value.wMinorVerNum, out name, out codeBase)) { return Assembly.Load(new AssemblyName(name) { CodeBase = codeBase }); } } - finally - { - typeLib.ReleaseTLibAttr(pLibAttr); - } } catch (Exception) { @@ -283,70 +271,6 @@ private static bool GetPrimaryInteropAssembly(Guid libid, int major, int minor, return name != null; } - private static string GetManagedTypeInfoName(ITypeInfo typeInfo, ITypeLib typeLib) - { - var typeInfo2 = typeInfo as ITypeInfo2; - if (typeInfo2 != null) - { - // ReSharper disable EmptyGeneralCatchClause - - try - { - var guid = managedNameGuid; - object data; - typeInfo2.GetCustData(ref guid, out data); - - var name = data as string; - if (name != null) - { - return name.Trim(); - } - } - catch (Exception) - { - } - - // ReSharper restore EmptyGeneralCatchClause - } - - return GetManagedTypeLibName(typeLib) + "." + Marshal.GetTypeInfoName(typeInfo); - } - - private static string GetManagedTypeLibName(ITypeLib typeLib) - { - var typeLib2 = typeLib as ITypeLib2; - if (typeLib2 != null) - { - // ReSharper disable EmptyGeneralCatchClause - - try - { - var guid = managedNameGuid; - object data; - typeLib2.GetCustData(ref guid, out data); - - var name = data as string; - if (name != null) - { - name = name.Trim(); - if (name.EndsWith(".dll", StringComparison.OrdinalIgnoreCase) || name.EndsWith(".exe", StringComparison.OrdinalIgnoreCase)) - { - return name.Substring(0, name.Length - 4); - } - - return name; - } - } - catch (Exception) - { - } - - // ReSharper restore EmptyGeneralCatchClause - } - - return typeLib.GetName(); - } - #region Nested type: IProvideClassInfo [ComImport] diff --git a/ClearScript/Util/Test/AccessContextTestObject.cs b/ClearScript/Util/Test/AccessContextTestObject.cs index 9340016e9..8c767c165 100644 --- a/ClearScript/Util/Test/AccessContextTestObject.cs +++ b/ClearScript/Util/Test/AccessContextTestObject.cs @@ -11,11 +11,11 @@ internal class AccessContextTestBase // ReSharper disable EventNeverSubscribedTo.Local // ReSharper disable UnusedType.Local - public AccessContextTestBase() { } - internal AccessContextTestBase(int arg) { } - protected AccessContextTestBase(string arg) { } - protected internal AccessContextTestBase(DateTime arg) { } - private AccessContextTestBase(TimeSpan arg) { } + public AccessContextTestBase() {} + internal AccessContextTestBase(int arg) {} + protected AccessContextTestBase(string arg) {} + protected internal AccessContextTestBase(DateTime arg) {} + private AccessContextTestBase(TimeSpan arg) {} public event EventHandler PublicEvent; internal event EventHandler InternalEvent; @@ -29,11 +29,11 @@ private AccessContextTestBase(TimeSpan arg) { } protected internal string ProtectedInternalField; private string privateField; - public void PublicMethod() { } - internal void InternalMethod() { } - protected void ProtectedMethod() { } - protected internal void ProtectedInternalMethod() { } - private void PrivateMethod() { } + public void PublicMethod() {} + internal void InternalMethod() {} + protected void ProtectedMethod() {} + protected internal void ProtectedInternalMethod() {} + private void PrivateMethod() {} public string PublicProperty { get; set; } internal string InternalProperty { get; set; } @@ -41,11 +41,11 @@ private void PrivateMethod() { } protected internal string ProtectedInternalProperty { get; set; } private string PrivateProperty { get; set; } - public class PublicNestedType { } - internal sealed class InternalNestedType { } - protected class ProtectedNestedType { } - protected internal sealed class ProtectedInternalNestedType { } - private sealed class PrivateNestedType { } + public class PublicNestedType {} + internal sealed class InternalNestedType {} + protected class ProtectedNestedType {} + protected internal sealed class ProtectedInternalNestedType {} + private sealed class PrivateNestedType {} // ReSharper restore UnusedType.Local // ReSharper restore EventNeverSubscribedTo.Local diff --git a/ClearScript/Util/TypeHelpers.NetCore.cs b/ClearScript/Util/TypeHelpers.NetCore.cs index 48511a434..6bb7920fb 100644 --- a/ClearScript/Util/TypeHelpers.NetCore.cs +++ b/ClearScript/Util/TypeHelpers.NetCore.cs @@ -3,7 +3,6 @@ using System; using System.Reflection; -using System.Runtime.InteropServices.ComTypes; namespace Microsoft.ClearScript.Util { @@ -40,14 +39,9 @@ private static string GetFullTypeName(string name, string assemblyName, bool use return fullTypeName; } - public static IntPtr GetITypeInfo(this Type type) + public static IntPtr GetTypeInfo(this Type type) { return IntPtr.Zero; } - - public static Type GetManagedType(this ITypeInfo typeInfo) - { - return null; - } } } diff --git a/ClearScript/Util/TypeHelpers.NetFramework.cs b/ClearScript/Util/TypeHelpers.NetFramework.cs index 05de7540b..3636ada08 100644 --- a/ClearScript/Util/TypeHelpers.NetFramework.cs +++ b/ClearScript/Util/TypeHelpers.NetFramework.cs @@ -25,7 +25,7 @@ private static string GetFullTypeName(string name, string assemblyName, bool use return fullTypeName; } - public static IntPtr GetITypeInfo(this Type type) + public static IntPtr GetTypeInfo(this Type type) { return Marshal.GetITypeInfoForType(type); } diff --git a/ClearScript/Util/TypeHelpers.cs b/ClearScript/Util/TypeHelpers.cs index 0553cd83d..4d5e48eb4 100644 --- a/ClearScript/Util/TypeHelpers.cs +++ b/ClearScript/Util/TypeHelpers.cs @@ -324,6 +324,23 @@ public static bool IsFriendOf(this Type type, Type thatType) return type.Assembly.IsFriendOf(thatType.Assembly); } + public static bool IsCOMVisible(this Type type) + { + var attribute = type.GetAttribute(false); + if (attribute != null) + { + return attribute.Value; + } + + attribute = type.Assembly.GetAttribute(false); + if (attribute != null) + { + return attribute.Value; + } + + return false; + } + public static string GetRootName(this Type type) { return StripGenericSuffix(type.Name); diff --git a/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj b/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj index 29794eb04..d579065c3 100644 --- a/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj +++ b/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj @@ -293,7 +293,7 @@ - + Document copy "%(FullPath)" "$(OutDir)" copy "%(FullPath)" "$(OutDir)" @@ -302,7 +302,7 @@ $(OutDir)%(Filename)%(Extension) $(OutDir)%(Filename)%(Extension) - + Document copy "%(FullPath)" "$(OutDir)" copy "%(FullPath)" "$(OutDir)" diff --git a/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters b/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters index d1ea11a2f..62774b1c4 100644 --- a/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters +++ b/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters @@ -210,7 +210,7 @@ - - + + \ No newline at end of file diff --git a/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj b/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj index a9a94ec09..e4d415881 100644 --- a/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj +++ b/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj @@ -88,11 +88,13 @@ true true false + -d2FH4- %(AdditionalOptions) DebugFull true $(SolutionDir)ClearScript\V8\V8\lib\v8-x64.dll.lib + -d2:-FH4- %(AdditionalOptions) $(SolutionDir)\ClearScript\Exports @@ -119,6 +121,7 @@ true Speed true + -d2FH4- %(AdditionalOptions) DebugFull @@ -127,6 +130,7 @@ UseLinkTimeCodeGeneration true true + -d2:-FH4- %(AdditionalOptions) $(SolutionDir)\ClearScript\Exports @@ -294,7 +298,7 @@ - + Document copy "%(FullPath)" "$(OutDir)" copy "%(FullPath)" "$(OutDir)" @@ -303,7 +307,7 @@ $(OutDir)%(Filename)%(Extension) $(OutDir)%(Filename)%(Extension) - + Document copy "%(FullPath)" "$(OutDir)" copy "%(FullPath)" "$(OutDir)" diff --git a/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters b/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters index bac751a9b..27d121740 100644 --- a/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters +++ b/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters @@ -210,7 +210,7 @@ - - + + \ No newline at end of file diff --git a/ClearScript/V8/ClearScriptV8/ClearScriptV8Native.h b/ClearScript/V8/ClearScriptV8/ClearScriptV8Native.h index 2881d31b6..b2f62ffc8 100644 --- a/ClearScript/V8/ClearScriptV8/ClearScriptV8Native.h +++ b/ClearScript/V8/ClearScriptV8/ClearScriptV8Native.h @@ -31,4 +31,3 @@ #include "V8ObjectHolderImpl.h" #include "V8ScriptHolderImpl.h" #include "HighResolutionClock.h" -#include "CallbackManager.h" \ No newline at end of file diff --git a/ClearScript/V8/ClearScriptV8/CommonPlatform.h b/ClearScript/V8/ClearScriptV8/CommonPlatform.h index d58751bdd..d4874a93f 100644 --- a/ClearScript/V8/ClearScriptV8/CommonPlatform.h +++ b/ClearScript/V8/ClearScriptV8/CommonPlatform.h @@ -8,6 +8,7 @@ //----------------------------------------------------------------------------- #include +#include #include #include #include diff --git a/ClearScript/V8/ClearScriptV8/SharedPtr.h b/ClearScript/V8/ClearScriptV8/SharedPtr.h index 42ab88b4c..03890cbad 100644 --- a/ClearScript/V8/ClearScriptV8/SharedPtr.h +++ b/ClearScript/V8/ClearScriptV8/SharedPtr.h @@ -95,6 +95,9 @@ class SharedPtrTraits final template class SharedPtr final { + template + friend class SharedPtr; + public: SharedPtr() @@ -179,14 +182,56 @@ class SharedPtr final return m_pTarget; } - operator T*() const + T& operator*() const { - return m_pTarget; + _ASSERTE(m_pTarget != nullptr); + return *m_pTarget; } - T* GetRawPtr() const + template + TOther& DerefAs() const { - return m_pTarget; + _ASSERTE(m_pTarget != nullptr); + return *static_cast(m_pTarget); + } + + bool operator==(nullptr_t) const + { + return IsEmpty(); + } + + bool operator==(T* pThat) const + { + return m_pTarget == pThat; + } + + template + bool operator==(const SharedPtr& that) const + { + return m_pTarget == that.m_pTarget; + } + + bool operator!=(nullptr_t) const + { + return !operator==(nullptr); + } + + bool operator!=(T* pThat) const + { + return !operator==(pThat); + } + + template + bool operator!=(const SharedPtr& that) const + { + return !operator==(that); + } + + template + SharedPtr CastTo() const + { + AddRef(); + return SharedPtr(static_cast(m_pTarget), m_pRefCount); } bool IsEmpty() const @@ -257,7 +302,7 @@ class SharedPtr final MoveInitialize(that); } - void AddRef() + void AddRef() const { if (m_pTarget != nullptr) { diff --git a/ClearScript/V8/ClearScriptV8/V8Context.cpp b/ClearScript/V8/ClearScriptV8/V8Context.cpp index ee9ea78ae..d12e02826 100644 --- a/ClearScript/V8/ClearScriptV8/V8Context.cpp +++ b/ClearScript/V8/ClearScriptV8/V8Context.cpp @@ -9,7 +9,7 @@ V8Context* V8Context::Create(const SharedPtr& spIsolate, const StdString& name, const Options& options) { - return new V8ContextImpl(static_cast(spIsolate.GetRawPtr()), name, options); + return new V8ContextImpl(spIsolate.CastTo(), name, options); } //----------------------------------------------------------------------------- diff --git a/ClearScript/V8/ClearScriptV8/V8Context.h b/ClearScript/V8/ClearScriptV8/V8Context.h index 64a4cc1fa..8b0feed96 100644 --- a/ClearScript/V8/ClearScriptV8/V8Context.h +++ b/ClearScript/V8/ClearScriptV8/V8Context.h @@ -51,8 +51,8 @@ class V8Context: public WeakRefTarget, public IV8Entity virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code) = 0; virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code, V8CacheType cacheType, std::vector& cacheBytes) = 0; virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code, V8CacheType cacheType, const std::vector& cacheBytes, bool& cacheAccepted) = 0; - virtual bool CanExecute(V8ScriptHolder* pHolder) = 0; - virtual V8Value Execute(V8ScriptHolder* pHolder, bool evaluate) = 0; + virtual bool CanExecute(const SharedPtr& spHolder) = 0; + virtual V8Value Execute(const SharedPtr& spHolder, bool evaluate) = 0; virtual void Interrupt() = 0; virtual void GetIsolateHeapStatistics(v8::HeapStatistics& heapStatistics) = 0; diff --git a/ClearScript/V8/ClearScriptV8/V8ContextImpl.cpp b/ClearScript/V8/ClearScriptV8/V8ContextImpl.cpp index a673dccac..bd4dd220a 100644 --- a/ClearScript/V8/ClearScriptV8/V8ContextImpl.cpp +++ b/ClearScript/V8/ClearScriptV8/V8ContextImpl.cpp @@ -120,7 +120,7 @@ static V8ContextImpl* GetContextImplFromData(const TInfo& info) #define BEGIN_ISOLATE_SCOPE \ { \ __pragma(warning(disable:4456)) /* declaration hides previous local declaration */ \ - V8IsolateImpl::Scope t_IsolateScope(m_spIsolateImpl); \ + V8IsolateImpl::Scope t_IsolateScope(*m_spIsolateImpl); \ __pragma(warning(default:4456)) #define END_ISOLATE_SCOPE \ @@ -169,8 +169,8 @@ static V8ContextImpl* GetContextImplFromData(const TInfo& info) #define BEGIN_EXECUTION_SCOPE \ { \ __pragma(warning(disable:4456)) /* declaration hides previous local declaration */ \ - V8IsolateImpl::ExecutionScope t_ExecutionScope(m_spIsolateImpl); \ - V8IsolateImpl::TryCatch t_TryCatch(m_spIsolateImpl); \ + V8IsolateImpl::ExecutionScope t_ExecutionScope(*m_spIsolateImpl); \ + V8IsolateImpl::TryCatch t_TryCatch(*m_spIsolateImpl); \ __pragma(warning(default:4456)) #define END_EXECUTION_SCOPE \ @@ -184,7 +184,7 @@ static V8ContextImpl* GetContextImplFromData(const TInfo& info) #define BEGIN_DOCUMENT_SCOPE(DOCUMENT_INFO) \ { \ __pragma(warning(disable:4456)) /* declaration hides previous local declaration */ \ - V8IsolateImpl::DocumentScope t_DocumentScope(m_spIsolateImpl, DOCUMENT_INFO); \ + V8IsolateImpl::DocumentScope t_DocumentScope(*m_spIsolateImpl, DOCUMENT_INFO); \ __pragma(warning(default:4456)) #define END_DOCUMENT_SCOPE \ @@ -214,15 +214,15 @@ static const size_t s_MaxModuleCacheSize = 1024; //----------------------------------------------------------------------------- V8ContextImpl::V8ContextImpl(V8IsolateImpl* pIsolateImpl, const StdString& name): - V8ContextImpl(pIsolateImpl, name, Options()) + V8ContextImpl(SharedPtr(pIsolateImpl), name, Options()) { } //----------------------------------------------------------------------------- -V8ContextImpl::V8ContextImpl(V8IsolateImpl* pIsolateImpl, const StdString& name, const Options& options): +V8ContextImpl::V8ContextImpl(SharedPtr&& spIsolateImpl, const StdString& name, const Options& options): m_Name(name), - m_spIsolateImpl(pIsolateImpl), + m_spIsolateImpl(std::move(spIsolateImpl)), m_DateTimeConversionEnabled(options.EnableDateTimeConversion), m_pvV8ObjectCache(nullptr), m_AllowHostObjectConstructorCall(false) @@ -539,7 +539,7 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt auto codeDigest = code.GetDigest(); v8::ScriptCompiler::Source source(FROM_MAYBE(CreateString(code)), CreateScriptOrigin(documentInfo)); - std::unique_ptr spScriptHolder; + std::unique_ptr upScriptHolder; if (documentInfo.IsModule()) { @@ -555,7 +555,7 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt CacheModule(documentInfo, codeDigest, hModule); } - spScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hModule)), documentInfo, codeDigest, std::move(code))); + upScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hModule)), documentInfo, codeDigest, std::move(code))); } else { @@ -571,10 +571,10 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt CacheScript(documentInfo, codeDigest, hScript); } - spScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hScript)), documentInfo, codeDigest)); + upScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hScript)), documentInfo, codeDigest)); } - return spScriptHolder.release(); + return upScriptHolder.release(); FROM_MAYBE_CATCH @@ -603,8 +603,8 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt auto codeDigest = code.GetDigest(); v8::ScriptCompiler::Source source(FROM_MAYBE(CreateString(code)), CreateScriptOrigin(documentInfo)); - std::unique_ptr spScriptHolder; - UniqueDeletePtr spCachedData; + std::unique_ptr upScriptHolder; + UniqueDeletePtr upCachedData; if (documentInfo.IsModule()) { @@ -620,8 +620,8 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt CacheModule(documentInfo, codeDigest, hModule); } - spScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hModule)), documentInfo, codeDigest, std::move(code))); - spCachedData.reset(v8::ScriptCompiler::CreateCodeCache(hModule->GetUnboundModuleScript())); + upScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hModule)), documentInfo, codeDigest, std::move(code))); + upCachedData.reset(v8::ScriptCompiler::CreateCodeCache(hModule->GetUnboundModuleScript())); } else { @@ -637,23 +637,23 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt CacheScript(documentInfo, codeDigest, hScript); } - spScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hScript)), documentInfo, codeDigest)); - spCachedData.reset(v8::ScriptCompiler::CreateCodeCache(hScript)); + upScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hScript)), documentInfo, codeDigest)); + upCachedData.reset(v8::ScriptCompiler::CreateCodeCache(hScript)); } cacheBytes.clear(); - if (spCachedData && (spCachedData->length > 0) && (spCachedData->data != nullptr)) + if (upCachedData && (upCachedData->length > 0) && (upCachedData->data != nullptr)) { - cacheBytes.resize(spCachedData->length); - memcpy_s(&cacheBytes[0], cacheBytes.size(), spCachedData->data, spCachedData->length); + cacheBytes.resize(upCachedData->length); + memcpy_s(&cacheBytes[0], cacheBytes.size(), upCachedData->data, upCachedData->length); if (documentInfo.IsModule()) { - spScriptHolder->SetCacheBytes(cacheBytes); + upScriptHolder->SetCacheBytes(cacheBytes); } } - return spScriptHolder.release(); + return upScriptHolder.release(); FROM_MAYBE_CATCH @@ -683,7 +683,7 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt auto codeDigest = code.GetDigest(); auto pCachedData = new v8::ScriptCompiler::CachedData(&cacheBytes[0], static_cast(cacheBytes.size()), v8::ScriptCompiler::CachedData::BufferNotOwned); v8::ScriptCompiler::Source source(FROM_MAYBE(CreateString(code)), CreateScriptOrigin(documentInfo), pCachedData); - std::unique_ptr spScriptHolder; + std::unique_ptr upScriptHolder; if (documentInfo.IsModule()) { @@ -699,7 +699,7 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt CacheModule(documentInfo, codeDigest, hModule); } - spScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hModule)), documentInfo, codeDigest, std::move(code))); + upScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hModule)), documentInfo, codeDigest, std::move(code))); } else { @@ -715,16 +715,16 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt CacheScript(documentInfo, codeDigest, hScript); } - spScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hScript)), documentInfo, codeDigest)); + upScriptHolder.reset(new V8ScriptHolderImpl(GetWeakBinding(), ::PtrFromHandle(CreatePersistent(hScript)), documentInfo, codeDigest)); } cacheAccepted = !pCachedData->rejected; if (cacheAccepted && documentInfo.IsModule()) { - spScriptHolder->SetCacheBytes(cacheBytes); + upScriptHolder->SetCacheBytes(cacheBytes); } - return spScriptHolder.release(); + return upScriptHolder.release(); FROM_MAYBE_CATCH @@ -738,38 +738,38 @@ V8ScriptHolder* V8ContextImpl::Compile(const V8DocumentInfo& documentInfo, StdSt //----------------------------------------------------------------------------- -bool V8ContextImpl::CanExecute(V8ScriptHolder* pHolder) +bool V8ContextImpl::CanExecute(const SharedPtr& spHolder) { - return pHolder->IsSameIsolate(m_spIsolateImpl.GetRawPtr()); + return spHolder->IsSameIsolate(m_spIsolateImpl); } //----------------------------------------------------------------------------- -V8Value V8ContextImpl::Execute(V8ScriptHolder* pHolder, bool evaluate) +V8Value V8ContextImpl::Execute(const SharedPtr& spHolder, bool evaluate) { BEGIN_CONTEXT_SCOPE - BEGIN_DOCUMENT_SCOPE(pHolder->GetDocumentInfo()) + BEGIN_DOCUMENT_SCOPE(spHolder->GetDocumentInfo()) BEGIN_EXECUTION_SCOPE FROM_MAYBE_TRY v8::Local hResult; - if (pHolder->GetDocumentInfo().IsModule()) + if (spHolder->GetDocumentInfo().IsModule()) { - auto codeDigest = pHolder->GetCode().GetDigest(); - auto hModule = GetCachedModule(pHolder->GetDocumentInfo(), codeDigest); + auto codeDigest = spHolder->GetCode().GetDigest(); + auto hModule = GetCachedModule(spHolder->GetDocumentInfo(), codeDigest); if (hModule.IsEmpty()) { - if (pHolder->GetCacheBytes().size() > 0) + if (spHolder->GetCacheBytes().size() > 0) { - auto pCachedData = new v8::ScriptCompiler::CachedData(&pHolder->GetCacheBytes()[0], static_cast(pHolder->GetCacheBytes().size()), v8::ScriptCompiler::CachedData::BufferNotOwned); - v8::ScriptCompiler::Source source(FROM_MAYBE(CreateString(pHolder->GetCode())), CreateScriptOrigin(pHolder->GetDocumentInfo()), pCachedData); + auto pCachedData = new v8::ScriptCompiler::CachedData(&spHolder->GetCacheBytes()[0], static_cast(spHolder->GetCacheBytes().size()), v8::ScriptCompiler::CachedData::BufferNotOwned); + v8::ScriptCompiler::Source source(FROM_MAYBE(CreateString(spHolder->GetCode())), CreateScriptOrigin(spHolder->GetDocumentInfo()), pCachedData); hModule = VERIFY_MAYBE(CompileModule(&source)); _ASSERTE(!pCachedData->rejected); } else { - v8::ScriptCompiler::Source source(FROM_MAYBE(CreateString(pHolder->GetCode())), CreateScriptOrigin(pHolder->GetDocumentInfo())); + v8::ScriptCompiler::Source source(FROM_MAYBE(CreateString(spHolder->GetCode())), CreateScriptOrigin(spHolder->GetDocumentInfo())); hModule = VERIFY_MAYBE(CompileModule(&source)); } @@ -778,7 +778,7 @@ V8Value V8ContextImpl::Execute(V8ScriptHolder* pHolder, bool evaluate) throw V8Exception(V8Exception::Type::General, m_Name, StdString(L"Module compilation failed; no additional information was provided by the V8 runtime"), false /*executionStarted*/); } - CacheModule(pHolder->GetDocumentInfo(), codeDigest, hModule); + CacheModule(spHolder->GetDocumentInfo(), codeDigest, hModule); } if (hModule->GetStatus() < v8::Module::kInstantiated) @@ -797,7 +797,7 @@ V8Value V8ContextImpl::Execute(V8ScriptHolder* pHolder, bool evaluate) } else { - auto hScript = ::HandleFromPtr(pHolder->GetScript()); + auto hScript = ::HandleFromPtr(spHolder->GetScript()); hResult = VERIFY_MAYBE(hScript->BindToCurrentContext()->Run(m_hContext)); } @@ -922,7 +922,7 @@ void V8ContextImpl::Flush() void V8ContextImpl::Destroy() { - m_spIsolateImpl->CallWithLockNoWait([this] (V8IsolateImpl* /*pIsolateImpl*/) + m_spIsolateImpl->CallWithLockNoWait(true /*allowNesting*/, [this] (V8IsolateImpl* /*pIsolateImpl*/) { delete this; }); @@ -1259,13 +1259,13 @@ void V8ContextImpl::InitializeImportMeta(v8::Local /*hContext*/, v8 v8::MaybeLocal V8ContextImpl::ImportModule(v8::Local /*hReferrer*/, v8::Local hSpecifier) { - V8IsolateImpl::TryCatch outerTryCatch(m_spIsolateImpl); + V8IsolateImpl::TryCatch outerTryCatch(*m_spIsolateImpl); FROM_MAYBE_TRY auto hResolver = FROM_MAYBE(v8::Promise::Resolver::New(m_hContext)); - V8IsolateImpl::TryCatch innerTryCatch(m_spIsolateImpl); + V8IsolateImpl::TryCatch innerTryCatch(*m_spIsolateImpl); FROM_MAYBE_TRY @@ -1302,7 +1302,7 @@ v8::MaybeLocal V8ContextImpl::ImportModule(v8::Local V8ContextImpl::ResolveModule(v8::Local hSpecifier, v8::Local /*hReferrer*/) { - V8IsolateImpl::TryCatch tryCatch(m_spIsolateImpl); + V8IsolateImpl::TryCatch tryCatch(*m_spIsolateImpl); FROM_MAYBE_TRY diff --git a/ClearScript/V8/ClearScriptV8/V8ContextImpl.h b/ClearScript/V8/ClearScriptV8/V8ContextImpl.h index dc7fbb77f..1c8b26707 100644 --- a/ClearScript/V8/ClearScriptV8/V8ContextImpl.h +++ b/ClearScript/V8/ClearScriptV8/V8ContextImpl.h @@ -20,7 +20,7 @@ class V8ContextImpl final: public V8Context public: V8ContextImpl(V8IsolateImpl* pIsolateImpl, const StdString& name); - V8ContextImpl(V8IsolateImpl* pIsolateImpl, const StdString& name, const Options& options); + V8ContextImpl(SharedPtr&& spIsolateImpl, const StdString& name, const Options& options); static size_t GetInstanceCount(); const StdString& GetName() const { return m_Name; } @@ -45,8 +45,8 @@ class V8ContextImpl final: public V8Context virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code) override; virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code, V8CacheType cacheType, std::vector& cacheBytes) override; virtual V8ScriptHolder* Compile(const V8DocumentInfo& documentInfo, StdString&& code, V8CacheType cacheType, const std::vector& cacheBytes, bool& cacheAccepted) override; - virtual bool CanExecute(V8ScriptHolder* pHolder) override; - virtual V8Value Execute(V8ScriptHolder* pHolder, bool evaluate) override; + virtual bool CanExecute(const SharedPtr& spHolder) override; + virtual V8Value Execute(const SharedPtr& spHolder, bool evaluate) override; virtual void Interrupt() override; virtual void GetIsolateHeapStatistics(v8::HeapStatistics& heapStatistics) override; diff --git a/ClearScript/V8/ClearScriptV8/V8ContextProxyImpl.cpp b/ClearScript/V8/ClearScriptV8/V8ContextProxyImpl.cpp index 6c53ffb94..99fc98126 100644 --- a/ClearScript/V8/ClearScriptV8/V8ContextProxyImpl.cpp +++ b/ClearScript/V8/ClearScriptV8/V8ContextProxyImpl.cpp @@ -299,9 +299,25 @@ namespace V8 { auto statistics = GetContext()->GetIsolateStatistics(); auto gcStatistics = gcnew V8Runtime::Statistics; + gcStatistics->ScriptCount = statistics.ScriptCount; gcStatistics->ScriptCacheSize = statistics.ScriptCacheSize; gcStatistics->ModuleCount = statistics.ModuleCount; + + auto size = static_cast(statistics.PostedTaskCounts.size()); + gcStatistics->PostedTaskCounts = gcnew array(size); + for (auto index = 0; index < size; index++) + { + gcStatistics->PostedTaskCounts[index] = statistics.PostedTaskCounts[index]; + } + + size = static_cast(statistics.InvokedTaskCounts.size()); + gcStatistics->InvokedTaskCounts = gcnew array(size); + for (auto index = 0; index < size; index++) + { + gcStatistics->InvokedTaskCounts[index] = statistics.InvokedTaskCounts[index]; + } + return gcStatistics; } diff --git a/ClearScript/V8/ClearScriptV8/V8Isolate.h b/ClearScript/V8/ClearScriptV8/V8Isolate.h index 9582e12d5..7df84bebb 100644 --- a/ClearScript/V8/ClearScriptV8/V8Isolate.h +++ b/ClearScript/V8/ClearScriptV8/V8Isolate.h @@ -11,6 +11,17 @@ class V8Isolate: public WeakRefTarget, public IV8Entity { public: + enum class TaskKind: uint16_t + { + Worker, + DelayedWorker, + Foreground, + DelayedForeground, + NonNestableForeground, + NonNestableDelayedForeground, + Count + }; + struct Options final { bool EnableDebugging = false; @@ -21,9 +32,23 @@ class V8Isolate: public WeakRefTarget, public IV8Entity struct Statistics final { + using TaskCounts = std::array(TaskKind::Count)>; + + void BumpPostedTaskCount(TaskKind kind) + { + ++PostedTaskCounts[static_cast(kind)]; + } + + void BumpInvokedTaskCount(TaskKind kind) + { + ++InvokedTaskCounts[static_cast(kind)]; + } + size_t ScriptCount = 0; size_t ScriptCacheSize = 0; size_t ModuleCount = 0; + TaskCounts PostedTaskCounts = {}; + TaskCounts InvokedTaskCounts = {}; }; static V8Isolate* Create(const StdString& name, const v8::ResourceConstraints* pConstraints, const Options& options); diff --git a/ClearScript/V8/ClearScriptV8/V8IsolateImpl.cpp b/ClearScript/V8/ClearScriptV8/V8IsolateImpl.cpp index 396351287..01b93e824 100644 --- a/ClearScript/V8/ClearScriptV8/V8IsolateImpl.cpp +++ b/ClearScript/V8/ClearScriptV8/V8IsolateImpl.cpp @@ -7,7 +7,7 @@ // V8Platform //----------------------------------------------------------------------------- -class V8Platform final: public v8::SafePlatform +class V8Platform final: public v8::Platform { public: @@ -15,11 +15,9 @@ class V8Platform final: public v8::SafePlatform static void EnsureInstalled(); virtual int NumberOfWorkerThreads() override; - virtual v8::TaskRunner* CreateForegroundTaskRunner(v8::Isolate* pIsolate) override; - virtual void CallOnWorkerThread(std::unique_ptr spTask) override; - virtual void CallDelayedOnWorkerThread(std::unique_ptr spTask, double delayInSeconds) override; - virtual void CallOnForegroundThread(v8::Isolate* pIsolate, v8::Task* pTask) override; - virtual void CallDelayedOnForegroundThread(v8::Isolate* pIsolate, v8::Task* pTask, double delayInSeconds) override; + virtual std::shared_ptr GetForegroundTaskRunner(v8::Isolate* pIsolate) override; + virtual void CallOnWorkerThread(std::unique_ptr upTask) override; + virtual void CallDelayedOnWorkerThread(std::unique_ptr upTask, double delayInSeconds) override; virtual double MonotonicallyIncreasingTime() override; virtual double CurrentClockTimeMillis() override; virtual v8::TracingController* GetTracingController() override; @@ -46,7 +44,7 @@ void V8Platform::EnsureInstalled() { ms_InstallationFlag.CallOnce([] { - v8::SafePlatform::Initialize(ms_Instance); + v8::V8::InitializePlatform(&ms_Instance); ASSERT_EVAL(v8::V8::Initialize()); }); } @@ -60,53 +58,39 @@ int V8Platform::NumberOfWorkerThreads() //----------------------------------------------------------------------------- -v8::TaskRunner* V8Platform::CreateForegroundTaskRunner(v8::Isolate* pIsolate) +std::shared_ptr V8Platform::GetForegroundTaskRunner(v8::Isolate* pIsolate) { - return V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->CreateForegroundTaskRunner(); + return V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->GetForegroundTaskRunner(); } //----------------------------------------------------------------------------- -void V8Platform::CallOnWorkerThread(std::unique_ptr spTask) +void V8Platform::CallOnWorkerThread(std::unique_ptr upTask) { auto pIsolate = v8::Isolate::GetCurrent(); if (pIsolate == nullptr) { - spTask->Run(); + upTask->Run(); } else { - V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->RunTaskAsync(spTask.release()); + V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->RunTaskAsync(std::move(upTask)); } } //----------------------------------------------------------------------------- -void V8Platform::CallDelayedOnWorkerThread(std::unique_ptr spTask, double delayInSeconds) +void V8Platform::CallDelayedOnWorkerThread(std::unique_ptr upTask, double delayInSeconds) { auto pIsolate = v8::Isolate::GetCurrent(); if (pIsolate != nullptr) { - V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->RunTaskDelayed(spTask.release(), delayInSeconds); + V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->RunTaskDelayed(std::move(upTask), delayInSeconds); } } //----------------------------------------------------------------------------- -void V8Platform::CallOnForegroundThread(v8::Isolate* pIsolate, v8::Task* pTask) -{ - V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->RunTaskWithLockAsync(pTask); -} - -//----------------------------------------------------------------------------- - -void V8Platform::CallDelayedOnForegroundThread(v8::Isolate* pIsolate, v8::Task* pTask, double delayInSeconds) -{ - V8IsolateImpl::GetInstanceFromIsolate(pIsolate)->RunTaskWithLockDelayed(pTask, delayInSeconds); -} - -//----------------------------------------------------------------------------- - double V8Platform::MonotonicallyIncreasingTime() { return HighResolutionClock::GetRelativeSeconds(); @@ -149,10 +133,14 @@ class V8ForegroundTaskRunner final: public v8::TaskRunner V8ForegroundTaskRunner(V8IsolateImpl* pIsolateImpl); - virtual void PostTask(std::unique_ptr spTask) override; - virtual void PostDelayedTask(std::unique_ptr spTask, double delayInSeconds) override; - virtual void PostIdleTask(std::unique_ptr spTask) override; + virtual void PostTask(std::unique_ptr upTask) override; + virtual void PostNonNestableTask(std::unique_ptr upTask) override; + virtual void PostDelayedTask(std::unique_ptr upTask, double delayInSeconds) override; + virtual void PostNonNestableDelayedTask(std::unique_ptr upTask, double delayInSeconds) override; + virtual void PostIdleTask(std::unique_ptr upTask) override; virtual bool IdleTasksEnabled() override; + virtual bool NonNestableTasksEnabled() const override; + virtual bool NonNestableDelayedTasksEnabled() const override; private: @@ -170,33 +158,55 @@ V8ForegroundTaskRunner::V8ForegroundTaskRunner(V8IsolateImpl* pIsolateImpl): //----------------------------------------------------------------------------- -void V8ForegroundTaskRunner::PostTask(std::unique_ptr spTask) +void V8ForegroundTaskRunner::PostTask(std::unique_ptr upTask) { auto spIsolate = m_wrIsolate.GetTarget(); if (spIsolate.IsEmpty()) { - spTask->Run(); + upTask->Run(); } else { - m_pIsolateImpl->RunTaskWithLockAsync(spTask.release()); + m_pIsolateImpl->RunTaskWithLockAsync(true /*allowNesting*/, std::move(upTask)); + } +} + +//----------------------------------------------------------------------------- + +void V8ForegroundTaskRunner::PostNonNestableTask(std::unique_ptr upTask) +{ + auto spIsolate = m_wrIsolate.GetTarget(); + if (!spIsolate.IsEmpty()) + { + m_pIsolateImpl->RunTaskWithLockAsync(false /*allowNesting*/, std::move(upTask)); } } //----------------------------------------------------------------------------- -void V8ForegroundTaskRunner::PostDelayedTask(std::unique_ptr spTask, double delayInSeconds) +void V8ForegroundTaskRunner::PostDelayedTask(std::unique_ptr upTask, double delayInSeconds) { auto spIsolate = m_wrIsolate.GetTarget(); if (!spIsolate.IsEmpty()) { - m_pIsolateImpl->RunTaskWithLockDelayed(spTask.release(), delayInSeconds); + m_pIsolateImpl->RunTaskWithLockDelayed(true /*allowNesting*/, std::move(upTask), delayInSeconds); } } //----------------------------------------------------------------------------- -void V8ForegroundTaskRunner::PostIdleTask(std::unique_ptr spTask) +void V8ForegroundTaskRunner::PostNonNestableDelayedTask(std::unique_ptr upTask, double delayInSeconds) +{ + auto spIsolate = m_wrIsolate.GetTarget(); + if (!spIsolate.IsEmpty()) + { + m_pIsolateImpl->RunTaskWithLockDelayed(false /*allowNesting*/, std::move(upTask), delayInSeconds); + } +} + +//----------------------------------------------------------------------------- + +void V8ForegroundTaskRunner::PostIdleTask(std::unique_ptr upTask) { // unexpected call to unsupported method std::terminate(); @@ -209,6 +219,20 @@ bool V8ForegroundTaskRunner::IdleTasksEnabled() return false; } +//----------------------------------------------------------------------------- + +bool V8ForegroundTaskRunner::NonNestableTasksEnabled() const +{ + return true; +} + +//----------------------------------------------------------------------------- + +bool V8ForegroundTaskRunner::NonNestableDelayedTasksEnabled() const +{ + return true; +} + //----------------------------------------------------------------------------- // V8ArrayBufferAllocator //----------------------------------------------------------------------------- @@ -275,7 +299,7 @@ V8ArrayBufferAllocator V8ArrayBufferAllocator::ms_Instance; #define BEGIN_ISOLATE_NATIVE_SCOPE \ { \ __pragma(warning(disable:4456)) /* declaration hides previous local declaration */ \ - NativeScope t_IsolateNativeScope(this); \ + NativeScope t_IsolateNativeScope(*this); \ __pragma(warning(default:4456)) #define END_ISOLATE_NATIVE_SCOPE \ @@ -285,7 +309,7 @@ V8ArrayBufferAllocator V8ArrayBufferAllocator::ms_Instance; #define BEGIN_ISOLATE_SCOPE \ { \ __pragma(warning(disable:4456)) /* declaration hides previous local declaration */ \ - Scope t_IsolateScope(this); \ + Scope t_IsolateScope(*this); \ __pragma(warning(default:4456)) #define END_ISOLATE_SCOPE \ @@ -304,6 +328,7 @@ static const size_t s_MaxScriptCacheSize = 256; V8IsolateImpl::V8IsolateImpl(const StdString& name, const v8::ResourceConstraints* pConstraints, const Options& options): m_Name(name), + m_CallWithLockLevel(0), m_DebuggingEnabled(false), m_AwaitingDebugger(false), m_InMessageLoop(false), @@ -331,19 +356,19 @@ V8IsolateImpl::V8IsolateImpl(const StdString& name, const v8::ResourceConstraint params.constraints.set_max_old_space_size(pConstraints->max_old_space_size()); } - m_spIsolate.reset(v8::Isolate::Allocate()); - m_spIsolate->SetData(0, this); + m_upIsolate.reset(v8::Isolate::Allocate()); + m_upIsolate->SetData(0, this); BEGIN_ADDREF_SCOPE - v8::Isolate::Initialize(m_spIsolate.get(), params); + v8::Isolate::Initialize(m_upIsolate.get(), params); - m_spIsolate->AddBeforeCallEnteredCallback(OnBeforeCallEntered); - m_spIsolate->SetPromiseHook(PromiseHook); + m_upIsolate->AddBeforeCallEnteredCallback(OnBeforeCallEntered); + m_upIsolate->SetPromiseHook(PromiseHook); BEGIN_ISOLATE_SCOPE - m_spIsolate->SetCaptureStackTraceForUncaughtExceptions(true, 64, v8::StackTrace::kDetailed); + m_upIsolate->SetCaptureStackTraceForUncaughtExceptions(true, 64, v8::StackTrace::kDetailed); m_hHostObjectHolderKey = CreatePersistent(CreatePrivate()); @@ -352,10 +377,10 @@ V8IsolateImpl::V8IsolateImpl(const StdString& name, const v8::ResourceConstraint EnableDebugging(options.DebugPort, options.EnableRemoteDebugging); } - m_spIsolate->SetHostInitializeImportMetaObjectCallback(ImportMetaInitializeCallback); + m_upIsolate->SetHostInitializeImportMetaObjectCallback(ImportMetaInitializeCallback); if (options.EnableDynamicModuleImports) { - m_spIsolate->SetHostImportModuleDynamicallyCallback(ModuleImportCallback); + m_upIsolate->SetHostImportModuleDynamicallyCallback(ModuleImportCallback); } END_ISOLATE_SCOPE @@ -369,6 +394,7 @@ V8IsolateImpl::V8IsolateImpl(const StdString& name, const v8::ResourceConstraint V8IsolateImpl* V8IsolateImpl::GetInstanceFromIsolate(v8::Isolate* pIsolate) { + _ASSERTE(pIsolate); return static_cast(pIsolate->GetData(0)); } @@ -397,12 +423,12 @@ void V8IsolateImpl::AddContext(V8ContextImpl* pContextImpl, const V8Context::Opt if (options.EnableDynamicModuleImports) { - m_spIsolate->SetHostImportModuleDynamicallyCallback(ModuleImportCallback); + m_upIsolate->SetHostImportModuleDynamicallyCallback(ModuleImportCallback); } - if (m_spInspector) + if (m_upInspector) { - m_spInspector->contextCreated(v8_inspector::V8ContextInfo(pContextImpl->GetContext(), s_ContextGroupId, pContextImpl->GetName().GetStringView())); + m_upInspector->contextCreated(v8_inspector::V8ContextInfo(pContextImpl->GetContext(), s_ContextGroupId, pContextImpl->GetName().GetStringView())); } } @@ -412,9 +438,9 @@ void V8IsolateImpl::RemoveContext(V8ContextImpl* pContextImpl) { _ASSERTE(IsCurrent() && IsLocked()); - if (m_spInspector) + if (m_upInspector) { - m_spInspector->contextDestroyed(pContextImpl->GetContext()); + m_upInspector->contextDestroyed(pContextImpl->GetContext()); } m_ContextEntries.remove_if([pContextImpl] (const ContextEntry& contextEntry) @@ -477,7 +503,7 @@ void V8IsolateImpl::EnableDebugging(int port, bool remote) } }); - m_spInspector.reset(v8_inspector::V8Inspector::createPtr(m_spIsolate.get(), this)); + m_upInspector = v8_inspector::V8Inspector::create(m_upIsolate.get(), this); m_DebuggingEnabled = true; m_DebugPort = port; @@ -492,8 +518,8 @@ void V8IsolateImpl::DisableDebugging() if (m_DebuggingEnabled) { - m_spInspectorSession.reset(); - m_spInspector.reset(); + m_upInspectorSession.reset(); + m_upInspector.reset(); HostObjectHelpers::DestroyDebugAgent(m_pvDebugAgent); m_DebuggingEnabled = false; @@ -551,16 +577,16 @@ void V8IsolateImpl::AwaitDebuggerAndPause() if (m_DebuggingEnabled) { - if (!m_spInspectorSession && !RunMessageLoop(true)) + if (!m_upInspectorSession && !RunMessageLoop(true)) { throw V8Exception(V8Exception::Type::Interrupt, m_Name, StdString(L"Script execution interrupted by host while awaiting debugger connection"), false); } - _ASSERTE(m_spInspectorSession); - if (m_spInspectorSession) + _ASSERTE(m_upInspectorSession); + if (m_upInspectorSession) { StdString breakReason(L"Break on debugger connection"); - m_spInspectorSession->schedulePauseOnNextStatement(breakReason.GetStringView(), breakReason.GetStringView()); + m_upInspectorSession->schedulePauseOnNextStatement(breakReason.GetStringView(), breakReason.GetStringView()); } } @@ -609,7 +635,7 @@ void V8IsolateImpl::GetHeapStatistics(v8::HeapStatistics& heapStatistics) { BEGIN_ISOLATE_SCOPE - m_spIsolate->GetHeapStatistics(&heapStatistics); + m_upIsolate->GetHeapStatistics(&heapStatistics); END_ISOLATE_SCOPE } @@ -619,9 +645,11 @@ void V8IsolateImpl::GetHeapStatistics(v8::HeapStatistics& heapStatistics) V8Isolate::Statistics V8IsolateImpl::GetStatistics() { BEGIN_ISOLATE_SCOPE + BEGIN_MUTEX_SCOPE(m_DataMutex) return m_Statistics; + END_MUTEX_SCOPE END_ISOLATE_SCOPE } @@ -650,9 +678,9 @@ bool V8IsolateImpl::BeginCpuProfile(const StdString& name, v8::CpuProfilingMode { BEGIN_ISOLATE_SCOPE - if (!m_spCpuProfiler) + if (!m_upCpuProfiler) { - m_spCpuProfiler.reset(v8::CpuProfiler::New(m_spIsolate.get())); + m_upCpuProfiler.reset(v8::CpuProfiler::New(m_upIsolate.get())); } v8::Local hName; @@ -661,7 +689,7 @@ bool V8IsolateImpl::BeginCpuProfile(const StdString& name, v8::CpuProfilingMode return false; } - m_spCpuProfiler->StartProfiling(hName, mode, recordSamples); + m_upCpuProfiler->StartProfiling(hName, mode, recordSamples); return true; END_ISOLATE_SCOPE @@ -673,7 +701,7 @@ bool V8IsolateImpl::EndCpuProfile(const StdString& name, CpuProfileCallbackT* pC { BEGIN_ISOLATE_SCOPE - if (!m_spCpuProfiler) + if (!m_upCpuProfiler) { return false; } @@ -684,15 +712,15 @@ bool V8IsolateImpl::EndCpuProfile(const StdString& name, CpuProfileCallbackT* pC return false; } - UniqueDeletePtr spProfile(m_spCpuProfiler->StopProfiling(hName)); - if (!spProfile) + UniqueDeletePtr upProfile(m_upCpuProfiler->StopProfiling(hName)); + if (!upProfile) { return false; } if (pCallback) { - pCallback(*spProfile, pvArg); + pCallback(*upProfile, pvArg); } return true; @@ -706,7 +734,7 @@ void V8IsolateImpl::CollectCpuProfileSample() { BEGIN_ISOLATE_SCOPE - v8::CpuProfiler::CollectSample(m_spIsolate.get()); + v8::CpuProfiler::CollectSample(m_upIsolate.get()); END_ISOLATE_SCOPE } @@ -726,14 +754,14 @@ void V8IsolateImpl::SetCpuProfileSampleInterval(uint32_t value) if (value != m_CpuProfileSampleInterval) { - m_CpuProfileSampleInterval = std::min(std::max(value, 250U), static_cast(INT_MAX)); + m_CpuProfileSampleInterval = std::min(std::max(value, 125U), static_cast(INT_MAX)); - if (!m_spCpuProfiler) + if (!m_upCpuProfiler) { - m_spCpuProfiler.reset(v8::CpuProfiler::New(m_spIsolate.get())); + m_upCpuProfiler.reset(v8::CpuProfiler::New(m_upIsolate.get())); } - m_spCpuProfiler->SetSamplingInterval(static_cast(m_CpuProfileSampleInterval)); + m_upCpuProfiler->SetSamplingInterval(static_cast(m_CpuProfileSampleInterval)); } END_ISOLATE_SCOPE @@ -787,21 +815,21 @@ double V8IsolateImpl::currentTimeMS() //----------------------------------------------------------------------------- -void V8IsolateImpl::sendResponse(int /*callId*/, std::unique_ptr spMessage) +void V8IsolateImpl::sendResponse(int /*callId*/, std::unique_ptr upMessage) { _ASSERTE(IsCurrent() && IsLocked()); if (m_pvDebugAgent) { - HostObjectHelpers::SendDebugMessage(m_pvDebugAgent, StdString(spMessage->string())); + HostObjectHelpers::SendDebugMessage(m_pvDebugAgent, StdString(upMessage->string())); } } //----------------------------------------------------------------------------- -void V8IsolateImpl::sendNotification(std::unique_ptr spMessage) +void V8IsolateImpl::sendNotification(std::unique_ptr upMessage) { - sendResponse(0, std::move(spMessage)); + sendResponse(0, std::move(upMessage)); } //----------------------------------------------------------------------------- @@ -825,7 +853,7 @@ void* V8IsolateImpl::AddRefV8Object(void* pvObject) void V8IsolateImpl::ReleaseV8Object(void* pvObject) { - CallWithLockNoWait([pvObject] (V8IsolateImpl* pIsolateImpl) + CallWithLockNoWait(true /*allowNesting*/, [pvObject] (V8IsolateImpl* pIsolateImpl) { pIsolateImpl->Dispose(::HandleFromPtr(pvObject)); }); @@ -846,7 +874,7 @@ void* V8IsolateImpl::AddRefV8Script(void* pvScript) void V8IsolateImpl::ReleaseV8Script(void* pvScript) { - CallWithLockNoWait([pvScript] (V8IsolateImpl* pIsolateImpl) + CallWithLockNoWait(true /*allowNesting*/, [pvScript] (V8IsolateImpl* pIsolateImpl) { pIsolateImpl->Dispose(::HandleFromPtr(pvScript)); }); @@ -854,84 +882,82 @@ void V8IsolateImpl::ReleaseV8Script(void* pvScript) //----------------------------------------------------------------------------- -void V8IsolateImpl::RunTaskAsync(v8::Task* pTask) +void V8IsolateImpl::RunTaskAsync(std::unique_ptr upTask) { - if (m_Released) - { - pTask->Run(); - delete pTask; - } - else + if (upTask) { - std::shared_ptr spTask(pTask); - std::weak_ptr wpTask(spTask); + if (m_Released) + { + upTask->Run(); + } + else + { + std::shared_ptr spTask(std::move(upTask)); + std::weak_ptr wpTask(spTask); - BEGIN_MUTEX_SCOPE(m_DataMutex) - m_AsyncTasks.push_back(std::move(spTask)); - END_MUTEX_SCOPE + BEGIN_MUTEX_SCOPE(m_DataMutex) + m_AsyncTasks.push_back(std::move(spTask)); + m_Statistics.BumpPostedTaskCount(TaskKind::Worker); + END_MUTEX_SCOPE - auto wrIsolate = CreateWeakRef(); - HostObjectHelpers::QueueNativeCallback([this, wrIsolate, wpTask] () - { - auto spIsolate = wrIsolate.GetTarget(); - if (!spIsolate.IsEmpty()) + auto wrIsolate = CreateWeakRef(); + HostObjectHelpers::QueueNativeCallback([this, wrIsolate, wpTask] () { - auto spTask = wpTask.lock(); - if (spTask) + auto spIsolate = wrIsolate.GetTarget(); + if (!spIsolate.IsEmpty()) { - spTask->Run(); + auto spTask = wpTask.lock(); + if (spTask) + { + spTask->Run(); - BEGIN_MUTEX_SCOPE(m_DataMutex) - auto it = std::remove(m_AsyncTasks.begin(), m_AsyncTasks.end(), spTask); - m_AsyncTasks.erase(it, m_AsyncTasks.end()); - END_MUTEX_SCOPE + BEGIN_MUTEX_SCOPE(m_DataMutex) + auto it = std::remove(m_AsyncTasks.begin(), m_AsyncTasks.end(), spTask); + m_AsyncTasks.erase(it, m_AsyncTasks.end()); + m_Statistics.BumpInvokedTaskCount(TaskKind::Worker); + END_MUTEX_SCOPE + } } - } - }); + }); + } } } //----------------------------------------------------------------------------- -void V8IsolateImpl::RunTaskDelayed(v8::Task* pTask, double delayInSeconds) +void V8IsolateImpl::RunTaskDelayed(std::unique_ptr upTask, double delayInSeconds) { - if (m_Released) - { - delete pTask; - } - else + if (upTask && !m_Released) { - std::shared_ptr spTask(pTask); + std::shared_ptr spTask(std::move(upTask)); auto wrIsolate = CreateWeakRef(); SharedPtr spTimer(new Timer(static_cast(delayInSeconds * 1000), -1, [this, wrIsolate, spTask] (Timer* pTimer) mutable { - if (spTask) + auto spIsolate = wrIsolate.GetTarget(); + if (!spIsolate.IsEmpty()) { - auto spIsolate = wrIsolate.GetTarget(); - if (!spIsolate.IsEmpty()) - { - spTask->Run(); + spTask->Run(); - // Release the timer's strong task reference. Doing so avoids a deadlock when - // spIsolate's implicit destruction below triggers immediate isolate teardown. + // Release the timer's strong task reference. Doing so avoids a deadlock when + // spIsolate's implicit destruction below triggers immediate isolate teardown. - spTask.reset(); + spTask.reset(); - // the timer has fired; discard it + // the timer has fired; discard it - BEGIN_MUTEX_SCOPE(m_DataMutex) - auto it = std::remove(m_TaskTimers.begin(), m_TaskTimers.end(), pTimer); - m_TaskTimers.erase(it, m_TaskTimers.end()); - END_MUTEX_SCOPE - } - else - { - // Release the timer's strong task reference. Doing so avoids a deadlock if the - // isolate is awaiting task completion on the managed finalization thread. + BEGIN_MUTEX_SCOPE(m_DataMutex) + auto it = std::remove(m_TaskTimers.begin(), m_TaskTimers.end(), SharedPtr(pTimer)); + m_TaskTimers.erase(it, m_TaskTimers.end()); + m_Statistics.BumpInvokedTaskCount(TaskKind::DelayedWorker); + END_MUTEX_SCOPE + } + else + { + // Release the timer's strong task reference. Doing so avoids a deadlock if the + // isolate is awaiting task completion on the managed finalization thread. - spTask.reset(); - } + spTask.reset(); } })); @@ -939,6 +965,7 @@ void V8IsolateImpl::RunTaskDelayed(v8::Task* pTask, double delayInSeconds) BEGIN_MUTEX_SCOPE(m_DataMutex) m_TaskTimers.push_back(spTimer); + m_Statistics.BumpPostedTaskCount(TaskKind::DelayedWorker); END_MUTEX_SCOPE // Release the local task reference explicitly. Doing so avoids a deadlock if the callback is @@ -954,67 +981,77 @@ void V8IsolateImpl::RunTaskDelayed(v8::Task* pTask, double delayInSeconds) //----------------------------------------------------------------------------- -void V8IsolateImpl::RunTaskWithLockAsync(v8::Task* pTask) +void V8IsolateImpl::RunTaskWithLockAsync(bool allowNesting, std::unique_ptr upTask) { - if (m_Released) + if (upTask) { - pTask->Run(); - delete pTask; - } - else - { - std::shared_ptr spTask(pTask); - CallWithLockAsync([spTask] (V8IsolateImpl* /*pIsolateImpl*/) + if (m_Released) { - spTask->Run(); - }); + if (allowNesting) + { + upTask->Run(); + } + } + else + { + std::shared_ptr spTask(std::move(upTask)); + CallWithLockAsync(allowNesting, [allowNesting, spTask] (V8IsolateImpl* pIsolateImpl) + { + spTask->Run(); + + BEGIN_MUTEX_SCOPE(pIsolateImpl->m_DataMutex) + pIsolateImpl->m_Statistics.BumpInvokedTaskCount(allowNesting ? TaskKind::Foreground : TaskKind::NonNestableForeground); + END_MUTEX_SCOPE + }); + + BEGIN_MUTEX_SCOPE(m_DataMutex) + m_Statistics.BumpPostedTaskCount(allowNesting ? TaskKind::Foreground : TaskKind::NonNestableForeground); + END_MUTEX_SCOPE + } } } //----------------------------------------------------------------------------- -void V8IsolateImpl::RunTaskWithLockDelayed(v8::Task* pTask, double delayInSeconds) +void V8IsolateImpl::RunTaskWithLockDelayed(bool allowNesting, std::unique_ptr upTask, double delayInSeconds) { - if (m_Released) + if (upTask && !m_Released) { - delete pTask; - } - else - { - std::shared_ptr spTask(pTask); + std::shared_ptr spTask(std::move(upTask)); auto wrIsolate = CreateWeakRef(); - SharedPtr spTimer(new Timer(static_cast(delayInSeconds * 1000), -1, [this, wrIsolate, spTask] (Timer* pTimer) mutable + SharedPtr spTimer(new Timer(static_cast(delayInSeconds * 1000), -1, [this, wrIsolate, allowNesting, spTask] (Timer* pTimer) mutable { - if (spTask) + auto spIsolate = wrIsolate.GetTarget(); + if (!spIsolate.IsEmpty()) { - auto spIsolate = wrIsolate.GetTarget(); - if (!spIsolate.IsEmpty()) + CallWithLockNoWait(allowNesting, [allowNesting, spTask] (V8IsolateImpl* pIsolateImpl) { - CallWithLockNoWait([spTask] (V8IsolateImpl* /*pIsolateImpl*/) - { - spTask->Run(); - }); + spTask->Run(); - // Release the timer's strong task reference. Doing so avoids a deadlock when - // spIsolate's implicit destruction below triggers immediate isolate teardown. + BEGIN_MUTEX_SCOPE(pIsolateImpl->m_DataMutex) + pIsolateImpl->m_Statistics.BumpInvokedTaskCount(allowNesting ? TaskKind::DelayedForeground : TaskKind::NonNestableDelayedForeground); + END_MUTEX_SCOPE + }); - spTask.reset(); + // Release the timer's strong task reference. Doing so avoids a deadlock when + // spIsolate's implicit destruction below triggers immediate isolate teardown. - // the timer has fired; discard it + spTask.reset(); - BEGIN_MUTEX_SCOPE(m_DataMutex) - auto it = std::remove(m_TaskTimers.begin(), m_TaskTimers.end(), pTimer); - m_TaskTimers.erase(it, m_TaskTimers.end()); - END_MUTEX_SCOPE - } - else - { - // Release the timer's strong task reference. Doing so avoids a deadlock if the - // isolate is awaiting task completion on the managed finalization thread. + // the timer has fired; discard it - spTask.reset(); - } + BEGIN_MUTEX_SCOPE(m_DataMutex) + auto it = std::remove(m_TaskTimers.begin(), m_TaskTimers.end(), pTimer); + m_TaskTimers.erase(it, m_TaskTimers.end()); + END_MUTEX_SCOPE + } + else + { + // Release the timer's strong task reference. Doing so avoids a deadlock if the + // isolate is awaiting task completion on the managed finalization thread. + + spTask.reset(); } })); @@ -1022,6 +1059,7 @@ void V8IsolateImpl::RunTaskWithLockDelayed(v8::Task* pTask, double delayInSecond BEGIN_MUTEX_SCOPE(m_DataMutex) m_TaskTimers.push_back(spTimer); + m_Statistics.BumpPostedTaskCount(allowNesting ? TaskKind::DelayedForeground : TaskKind::NonNestableDelayedForeground); END_MUTEX_SCOPE // Release the local task reference explicitly. Doing so avoids a deadlock if the callback is @@ -1037,28 +1075,46 @@ void V8IsolateImpl::RunTaskWithLockDelayed(v8::Task* pTask, double delayInSecond //----------------------------------------------------------------------------- -v8::TaskRunner* V8IsolateImpl::CreateForegroundTaskRunner() +std::shared_ptr V8IsolateImpl::GetForegroundTaskRunner() { - return new V8ForegroundTaskRunner(this); + BEGIN_MUTEX_SCOPE(m_DataMutex) + + if (!m_spForegroundTaskRunner) + { + m_spForegroundTaskRunner = std::make_shared(this); + } + + return m_spForegroundTaskRunner; + + END_MUTEX_SCOPE } //----------------------------------------------------------------------------- -void V8IsolateImpl::CallWithLockNoWait(std::function&& callback) +void V8IsolateImpl::CallWithLockNoWait(bool allowNesting, CallWithLockCallback&& callback) { - if (m_Mutex.TryLock()) + if (callback) { - // the callback may release this instance; hold it for destruction outside isolate scope - SharedPtr spThis(this); + if (m_Mutex.TryLock()) + { + // the callback may release this instance; hold it for destruction outside isolate scope + SharedPtr spThis(this); - MutexLock lock(m_Mutex, false); - BEGIN_ISOLATE_NATIVE_SCOPE - callback(this); - END_ISOLATE_NATIVE_SCOPE - } - else - { - CallWithLockAsync(std::move(callback)); + MutexLock lock(m_Mutex, false); + if (allowNesting || (m_CallWithLockLevel < 1)) + { + BEGIN_ISOLATE_NATIVE_SCOPE + BEGIN_PULSE_VALUE_SCOPE(&m_CallWithLockLevel, m_CallWithLockLevel + 1) + + callback(this); + return; + + END_PULSE_VALUE_SCOPE + END_ISOLATE_NATIVE_SCOPE + } + } + + CallWithLockAsync(allowNesting, std::move(callback)); } } @@ -1222,10 +1278,10 @@ V8IsolateImpl::~V8IsolateImpl() } Dispose(m_hHostObjectHolderKey); - m_spIsolate->SetHostImportModuleDynamicallyCallback(nullptr); - m_spIsolate->SetHostInitializeImportMetaObjectCallback(nullptr); - m_spIsolate->SetPromiseHook(nullptr); - m_spIsolate->RemoveBeforeCallEnteredCallback(OnBeforeCallEntered); + m_upIsolate->SetHostImportModuleDynamicallyCallback(nullptr); + m_upIsolate->SetHostInitializeImportMetaObjectCallback(nullptr); + m_upIsolate->SetPromiseHook(nullptr); + m_upIsolate->RemoveBeforeCallEnteredCallback(OnBeforeCallEntered); } //----------------------------------------------------------------------------- @@ -1269,13 +1325,13 @@ bool V8IsolateImpl::RunMessageLoop(bool awaitingDebugger) //----------------------------------------------------------------------------- -void V8IsolateImpl::CallWithLockAsync(std::function&& callback) +void V8IsolateImpl::CallWithLockAsync(bool allowNesting, CallWithLockCallback&& callback) { if (callback) { BEGIN_MUTEX_SCOPE(m_DataMutex) - m_CallWithLockQueue.push(std::move(callback)); + m_CallWithLockQueue.push(std::make_pair(allowNesting, std::move(callback))); if (m_InMessageLoop) { @@ -1328,70 +1384,89 @@ void V8IsolateImpl::ProcessCallWithLockQueue(v8::Isolate* /*pIsolate*/, void* pv void V8IsolateImpl::ProcessCallWithLockQueue() { - std::queue> callWithLockQueue; - - while (true) - { - BEGIN_MUTEX_SCOPE(m_DataMutex) - std::swap(callWithLockQueue, m_CallWithLockQueue); - END_MUTEX_SCOPE - - if (callWithLockQueue.size() > 0) - { - ProcessCallWithLockQueue(callWithLockQueue); - continue; - } - - break; - } + std::unique_lock lock(m_DataMutex.GetImpl()); + ProcessCallWithLockQueue(lock); } //----------------------------------------------------------------------------- void V8IsolateImpl::ProcessCallWithLockQueue(std::unique_lock& lock) { + _ASSERTE(lock.mutex() == &m_DataMutex.GetImpl()); _ASSERTE(lock.owns_lock()); - std::queue> callWithLockQueue(std::move(m_CallWithLockQueue)); + CallWithLockQueue callWithLockQueue(PopCallWithLockQueue(lock)); while (callWithLockQueue.size() > 0) { lock.unlock(); ProcessCallWithLockQueue(callWithLockQueue); lock.lock(); - callWithLockQueue = std::move(m_CallWithLockQueue); + callWithLockQueue = PopCallWithLockQueue(lock); } } - //----------------------------------------------------------------------------- -void V8IsolateImpl::ProcessCallWithLockQueue(std::queue>& callWithLockQueue) +void V8IsolateImpl::ProcessCallWithLockQueue(CallWithLockQueue& callWithLockQueue) { _ASSERTE(IsCurrent() && IsLocked()); - while (callWithLockQueue.size() > 0) - { - try - { - callWithLockQueue.front()(this); - } - catch (...) + BEGIN_PULSE_VALUE_SCOPE(&m_CallWithLockLevel, m_CallWithLockLevel + 1) + + while (callWithLockQueue.size() > 0) { + try + { + callWithLockQueue.front().second(this); + } + catch (...) + { + } + + callWithLockQueue.pop(); } - callWithLockQueue.pop(); + END_PULSE_VALUE_SCOPE +} + +//----------------------------------------------------------------------------- + +V8IsolateImpl::CallWithLockQueue V8IsolateImpl::PopCallWithLockQueue(const std::unique_lock& lock) +{ + _ASSERTE(IsCurrent() && IsLocked()); + _ASSERTE(lock.mutex() == &m_DataMutex.GetImpl()); + _ASSERTE(lock.owns_lock()); + IGNORE_UNUSED(lock); + + if (m_CallWithLockLevel < 1) + { + return std::move(m_CallWithLockQueue); } + + CallWithLockQueue nestableCallWithLockQueue; + CallWithLockQueue nonNestableCallWithLockQueue; + + while (m_CallWithLockQueue.size() > 0) + { + auto& callWithLockEntry = m_CallWithLockQueue.front(); + auto& callWithLockQueue = callWithLockEntry.first ? nestableCallWithLockQueue : nonNestableCallWithLockQueue; + callWithLockQueue.push(std::move(callWithLockEntry)); + m_CallWithLockQueue.pop(); + } + + m_CallWithLockQueue = std::move(nonNestableCallWithLockQueue); + return nestableCallWithLockQueue; } //----------------------------------------------------------------------------- void V8IsolateImpl::ConnectDebugClient() { - CallWithLockNoWait([] (V8IsolateImpl* pIsolateImpl) + CallWithLockNoWait(true /*allowNesting*/, [] (V8IsolateImpl* pIsolateImpl) { - if (pIsolateImpl->m_spInspector && !pIsolateImpl->m_spInspectorSession) + if (pIsolateImpl->m_upInspector && !pIsolateImpl->m_upInspectorSession) { - pIsolateImpl->m_spInspectorSession = pIsolateImpl->m_spInspector->connect(s_ContextGroupId, pIsolateImpl, v8_inspector::StringView()); + pIsolateImpl->m_upInspectorSession = pIsolateImpl->m_upInspector->connect(s_ContextGroupId, pIsolateImpl, v8_inspector::StringView()); } }); } @@ -1400,11 +1475,11 @@ void V8IsolateImpl::ConnectDebugClient() void V8IsolateImpl::SendDebugCommand(const StdString& command) { - CallWithLockNoWait([command] (V8IsolateImpl* pIsolateImpl) + CallWithLockNoWait(true /*allowNesting*/, [command] (V8IsolateImpl* pIsolateImpl) { - if (pIsolateImpl->m_spInspectorSession) + if (pIsolateImpl->m_upInspectorSession) { - pIsolateImpl->m_spInspectorSession->dispatchProtocolMessage(command.GetStringView()); + pIsolateImpl->m_upInspectorSession->dispatchProtocolMessage(command.GetStringView()); } }); } @@ -1413,9 +1488,9 @@ void V8IsolateImpl::SendDebugCommand(const StdString& command) void V8IsolateImpl::DisconnectDebugClient() { - CallWithLockNoWait([] (V8IsolateImpl* pIsolateImpl) + CallWithLockNoWait(true /*allowNesting*/, [] (V8IsolateImpl* pIsolateImpl) { - pIsolateImpl->m_spInspectorSession.reset(); + pIsolateImpl->m_upInspectorSession.reset(); }); } @@ -1475,7 +1550,7 @@ V8IsolateImpl::ExecutionScope* V8IsolateImpl::EnterExecutionScope(ExecutionScope } // set and record stack address limit - m_spIsolate->SetStackLimit(reinterpret_cast(pStackLimit)); + m_upIsolate->SetStackLimit(reinterpret_cast(pStackLimit)); m_pStackLimit = pStackLimit; // enter outermost stack usage monitoring scope @@ -1526,7 +1601,7 @@ void V8IsolateImpl::ExitExecutionScope(ExecutionScope* pPreviousExecutionScope) if (m_pStackLimit != nullptr) { // V8 has no API for removing a stack address limit - m_spIsolate->SetStackLimit(reinterpret_cast(s_pMinStackLimit)); + m_upIsolate->SetStackLimit(reinterpret_cast(s_pMinStackLimit)); m_pStackLimit = nullptr; } } @@ -1552,7 +1627,7 @@ void V8IsolateImpl::SetUpHeapWatchTimer(size_t maxHeapSize) // create heap watch timer auto wrIsolate = CreateWeakRef(); - m_spHeapWatchTimer = new Timer(static_cast(std::max(GetHeapSizeSampleInterval(), 250.0)), -1, [this, wrIsolate, maxHeapSize] (Timer* pTimer) + m_spHeapWatchTimer = new Timer(static_cast(std::max(GetHeapSizeSampleInterval(), 125.0)), -1, [this, wrIsolate, maxHeapSize] (Timer* pTimer) { // heap watch callback; is the isolate still alive? auto spIsolate = wrIsolate.GetTarget(); @@ -1560,7 +1635,7 @@ void V8IsolateImpl::SetUpHeapWatchTimer(size_t maxHeapSize) { // yes; request callback on execution thread auto wrTimer = pTimer->CreateWeakRef(); - CallWithLockAsync([wrTimer, maxHeapSize] (V8IsolateImpl* pIsolateImpl) + CallWithLockAsync(true /*allowNesting*/, [wrTimer, maxHeapSize] (V8IsolateImpl* pIsolateImpl) { // execution thread callback; is the timer still alive? auto spTimer = wrTimer.GetTarget(); @@ -1663,12 +1738,12 @@ void V8IsolateImpl::FlushContextAsync(ContextEntry& contextEntry) if (contextEntry.FlushPending.compare_exchange_strong(expected, true)) { auto wrContext = contextEntry.pContextImpl->CreateWeakRef(); - CallWithLockAsync([wrContext] (V8IsolateImpl* pIsolateImpl) + CallWithLockAsync(true /*allowNesting*/, [wrContext] (V8IsolateImpl* pIsolateImpl) { auto spContext = wrContext.GetTarget(); if (!spContext.IsEmpty()) { - pIsolateImpl->FlushContext(static_cast(spContext.GetRawPtr())); + pIsolateImpl->FlushContext(spContext.DerefAs()); } }); } @@ -1676,18 +1751,18 @@ void V8IsolateImpl::FlushContextAsync(ContextEntry& contextEntry) //----------------------------------------------------------------------------- -void V8IsolateImpl::FlushContext(V8ContextImpl* pContextImpl) +void V8IsolateImpl::FlushContext(V8ContextImpl& contextImpl) { _ASSERTE(IsCurrent() && IsLocked()); for (auto& contextEntry : m_ContextEntries) { - if (contextEntry.pContextImpl == pContextImpl) + if (contextEntry.pContextImpl == &contextImpl) { contextEntry.FlushPending = false; break; } } - pContextImpl->Flush(); + contextImpl.Flush(); } diff --git a/ClearScript/V8/ClearScriptV8/V8IsolateImpl.h b/ClearScript/V8/ClearScriptV8/V8IsolateImpl.h index e0d99913c..72b674723 100644 --- a/ClearScript/V8/ClearScriptV8/V8IsolateImpl.h +++ b/ClearScript/V8/ClearScriptV8/V8IsolateImpl.h @@ -24,23 +24,23 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli public: - explicit NativeScope(V8IsolateImpl* pIsolateImpl): - m_pIsolateImpl(pIsolateImpl), - m_LockScope(m_pIsolateImpl->m_spIsolate.get()), - m_IsolateScope(m_pIsolateImpl->m_spIsolate.get()), - m_HandleScope(m_pIsolateImpl->m_spIsolate.get()) + explicit NativeScope(V8IsolateImpl& isolateImpl): + m_IsolateImpl(isolateImpl), + m_LockScope(m_IsolateImpl.m_upIsolate.get()), + m_IsolateScope(m_IsolateImpl.m_upIsolate.get()), + m_HandleScope(m_IsolateImpl.m_upIsolate.get()) { - m_pIsolateImpl->ProcessCallWithLockQueue(); + m_IsolateImpl.ProcessCallWithLockQueue(); } ~NativeScope() { - m_pIsolateImpl->ProcessCallWithLockQueue(); + m_IsolateImpl.ProcessCallWithLockQueue(); } private: - V8IsolateImpl* m_pIsolateImpl; + V8IsolateImpl& m_IsolateImpl; v8::Locker m_LockScope; v8::Isolate::Scope m_IsolateScope; v8::HandleScope m_HandleScope; @@ -48,6 +48,8 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli public: + using CallWithLockCallback = std::function; + class Scope final { PROHIBIT_COPY(Scope) @@ -55,9 +57,9 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli public: - explicit Scope(V8IsolateImpl* pIsolateImpl): - m_MutexLock(pIsolateImpl->m_Mutex), - m_NativeScope(pIsolateImpl) + explicit Scope(V8IsolateImpl& isolateImpl): + m_MutexLock(isolateImpl.m_Mutex), + m_NativeScope(isolateImpl) { } @@ -74,11 +76,11 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli public: - explicit ExecutionScope(V8IsolateImpl* pIsolateImpl): - m_pIsolateImpl(pIsolateImpl), + explicit ExecutionScope(V8IsolateImpl& isolateImpl): + m_IsolateImpl(isolateImpl), m_ExecutionStarted(false) { - m_pPreviousExecutionScope = m_pIsolateImpl->EnterExecutionScope(this, reinterpret_cast(&pIsolateImpl)); + m_pPreviousExecutionScope = m_IsolateImpl.EnterExecutionScope(this, reinterpret_cast(this)); } void OnExecutionStarted() @@ -93,12 +95,12 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli ~ExecutionScope() { - m_pIsolateImpl->ExitExecutionScope(m_pPreviousExecutionScope); + m_IsolateImpl.ExitExecutionScope(m_pPreviousExecutionScope); } private: - V8IsolateImpl* m_pIsolateImpl; + V8IsolateImpl& m_IsolateImpl; ExecutionScope* m_pPreviousExecutionScope; bool m_ExecutionStarted; }; @@ -110,21 +112,21 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli public: - DocumentScope(V8IsolateImpl* pIsolateImpl, const V8DocumentInfo& documentInfo): - m_pIsolateImpl(pIsolateImpl) + DocumentScope(V8IsolateImpl& isolateImpl, const V8DocumentInfo& documentInfo): + m_IsolateImpl(isolateImpl) { - m_pPreviousDocumentInfo = m_pIsolateImpl->m_pDocumentInfo; - m_pIsolateImpl->m_pDocumentInfo = &documentInfo; + m_pPreviousDocumentInfo = m_IsolateImpl.m_pDocumentInfo; + m_IsolateImpl.m_pDocumentInfo = &documentInfo; } ~DocumentScope() { - m_pIsolateImpl->m_pDocumentInfo = m_pPreviousDocumentInfo; + m_IsolateImpl.m_pDocumentInfo = m_pPreviousDocumentInfo; } private: - V8IsolateImpl* m_pIsolateImpl; + V8IsolateImpl& m_IsolateImpl; const V8DocumentInfo* m_pPreviousDocumentInfo; }; @@ -135,8 +137,8 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli public: - explicit TryCatch(V8IsolateImpl* pIsolateImpl): - v8::TryCatch(pIsolateImpl->m_spIsolate.get()) + explicit TryCatch(V8IsolateImpl& isolateImpl): + v8::TryCatch(isolateImpl.m_upIsolate.get()) { } }; @@ -152,102 +154,102 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli v8::Local CreateContext(v8::ExtensionConfiguration* pExtensionConfiguation = nullptr, v8::Local hGlobalTemplate = v8::Local(), v8::Local hGlobalObject = v8::Local()) { - return v8::Context::New(m_spIsolate.get(), pExtensionConfiguation, hGlobalTemplate, hGlobalObject); + return v8::Context::New(m_upIsolate.get(), pExtensionConfiguation, hGlobalTemplate, hGlobalObject); } v8::Local GetUndefined() { - return v8::Undefined(m_spIsolate.get()); + return v8::Undefined(m_upIsolate.get()); } v8::Local GetNull() { - return v8::Null(m_spIsolate.get()); + return v8::Null(m_upIsolate.get()); } v8::Local GetTrue() { - return v8::True(m_spIsolate.get()); + return v8::True(m_upIsolate.get()); } v8::Local GetFalse() { - return v8::False(m_spIsolate.get()); + return v8::False(m_upIsolate.get()); } bool BooleanValue(v8::Local hValue) { - return hValue->BooleanValue(m_spIsolate.get()); + return hValue->BooleanValue(m_upIsolate.get()); } v8::Local GetIteratorSymbol() { - return v8::Symbol::GetIterator(m_spIsolate.get()); + return v8::Symbol::GetIterator(m_upIsolate.get()); } v8::Local CreateObject() { - return v8::Object::New(m_spIsolate.get()); + return v8::Object::New(m_upIsolate.get()); } v8::Local CreateNumber(double value) { - return v8::Number::New(m_spIsolate.get(), value); + return v8::Number::New(m_upIsolate.get(), value); } v8::Local CreateInteger(int32_t value) { - return v8::Int32::New(m_spIsolate.get(), value); + return v8::Int32::New(m_upIsolate.get(), value); } v8::Local CreateInteger(uint32_t value) { - return v8::Uint32::NewFromUnsigned(m_spIsolate.get(), value); + return v8::Uint32::NewFromUnsigned(m_upIsolate.get(), value); } v8::MaybeLocal CreateString(const StdString& value, v8::NewStringType type = v8::NewStringType::kNormal) { - return value.ToV8String(m_spIsolate.get(), type); + return value.ToV8String(m_upIsolate.get(), type); } StdString CreateStdString(v8::Local hValue) { - return StdString(m_spIsolate.get(), hValue); + return StdString(m_upIsolate.get(), hValue); } v8::Local CreateSymbol(v8::Local hName = v8::Local()) { - return v8::Symbol::New(m_spIsolate.get(), hName); + return v8::Symbol::New(m_upIsolate.get(), hName); } v8::Local CreatePrivate(v8::Local hName = v8::Local()) { - return v8::Private::New(m_spIsolate.get(), hName); + return v8::Private::New(m_upIsolate.get(), hName); } v8::Local CreateArray(int length = 0) { - return v8::Array::New(m_spIsolate.get(), length); + return v8::Array::New(m_upIsolate.get(), length); } v8::Local CreateExternal(void* pvValue) { - return v8::External::New(m_spIsolate.get(), pvValue); + return v8::External::New(m_upIsolate.get(), pvValue); } v8::Local CreateObjectTemplate() { - return v8::ObjectTemplate::New(m_spIsolate.get()); + return v8::ObjectTemplate::New(m_upIsolate.get()); } v8::Local CreateFunctionTemplate(v8::FunctionCallback callback = 0, v8::Local data = v8::Local(), v8::Local signature = v8::Local(), int length = 0) { - return v8::FunctionTemplate::New(m_spIsolate.get(), callback, data, signature, length); + return v8::FunctionTemplate::New(m_upIsolate.get(), callback, data, signature, length); } v8::MaybeLocal CompileUnboundScript(v8::ScriptCompiler::Source* pSource, v8::ScriptCompiler::CompileOptions options = v8::ScriptCompiler::kNoCompileOptions, v8::ScriptCompiler::NoCacheReason noCacheReason = v8::ScriptCompiler::kNoCacheNoReason) { - auto result = v8::ScriptCompiler::CompileUnboundScript(m_spIsolate.get(), pSource, options, noCacheReason); + auto result = v8::ScriptCompiler::CompileUnboundScript(m_upIsolate.get(), pSource, options, noCacheReason); if (!result.IsEmpty()) { @@ -259,7 +261,7 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli v8::MaybeLocal CompileModule(v8::ScriptCompiler::Source* pSource, v8::ScriptCompiler::CompileOptions options = v8::ScriptCompiler::kNoCompileOptions, v8::ScriptCompiler::NoCacheReason noCacheReason = v8::ScriptCompiler::kNoCacheNoReason) { - auto result = v8::ScriptCompiler::CompileModule(m_spIsolate.get(), pSource, options, noCacheReason); + auto result = v8::ScriptCompiler::CompileModule(m_upIsolate.get(), pSource, options, noCacheReason); if (!result.IsEmpty()) { @@ -272,31 +274,31 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli template v8::Local CreateLocal(v8::Local hTarget) { - return v8::Local::New(m_spIsolate.get(), hTarget); + return v8::Local::New(m_upIsolate.get(), hTarget); } template v8::Local CreateLocal(Persistent hTarget) { - return hTarget.CreateLocal(m_spIsolate.get()); + return hTarget.CreateLocal(m_upIsolate.get()); } template Persistent CreatePersistent(v8::Local hTarget) { - return Persistent::New(m_spIsolate.get(), hTarget); + return Persistent::New(m_upIsolate.get(), hTarget); } template Persistent CreatePersistent(Persistent hTarget) { - return Persistent::New(m_spIsolate.get(), hTarget); + return Persistent::New(m_upIsolate.get(), hTarget); } template Persistent MakeWeak(Persistent hTarget, TArg1* pArg1, TArg2* pArg2, void (*pCallback)(v8::Isolate*, Persistent*, TArg1*, TArg2*)) { - return hTarget.MakeWeak(m_spIsolate.get(), pArg1, pArg2, pCallback); + return hTarget.MakeWeak(m_upIsolate.get(), pArg1, pArg2, pCallback); } template @@ -313,7 +315,7 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli v8::Local ThrowException(v8::Local hException) { - return m_spIsolate->ThrowException(hException); + return m_upIsolate->ThrowException(hException); } bool IsDebuggingEnabled() @@ -334,59 +336,59 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli END_MUTEX_SCOPE - m_spIsolate->TerminateExecution(); + m_upIsolate->TerminateExecution(); m_IsExecutionTerminating = true; } bool IsExecutionTerminating() { - return m_spIsolate->IsExecutionTerminating() || m_IsExecutionTerminating; + return m_upIsolate->IsExecutionTerminating() || m_IsExecutionTerminating; } void CancelTerminateExecution() { - m_spIsolate->CancelTerminateExecution(); + m_upIsolate->CancelTerminateExecution(); m_IsExecutionTerminating = false; } int ContextDisposedNotification() { - return m_spIsolate->ContextDisposedNotification(); + return m_upIsolate->ContextDisposedNotification(); } bool IdleNotificationDeadline(double deadlineInSeconds) { - return m_spIsolate->IdleNotificationDeadline(deadlineInSeconds); + return m_upIsolate->IdleNotificationDeadline(deadlineInSeconds); } void LowMemoryNotification() { - m_spIsolate->LowMemoryNotification(); + m_upIsolate->LowMemoryNotification(); } v8::Local GetStackFrame(v8::Local hStackTrace, uint32_t index) { - return hStackTrace->GetFrame(m_spIsolate.get(), index); + return hStackTrace->GetFrame(m_upIsolate.get(), index); } void RequestInterrupt(v8::InterruptCallback callback, void* pvData) { - m_spIsolate->RequestInterrupt(callback, pvData); + m_upIsolate->RequestInterrupt(callback, pvData); } bool IsCurrent() const { - return m_spIsolate.get() == v8::Isolate::GetCurrent(); + return m_upIsolate.get() == v8::Isolate::GetCurrent(); } bool IsLocked() const { - return v8::Locker::IsLocked(m_spIsolate.get()); + return v8::Locker::IsLocked(m_upIsolate.get()); } v8::Local GetTypeOf(v8::Local hValue) { - return !hValue.IsEmpty() ? hValue->TypeOf(m_spIsolate.get()) : GetUndefined()->TypeOf(m_spIsolate.get()); + return !hValue.IsEmpty() ? hValue->TypeOf(m_upIsolate.get()) : GetUndefined()->TypeOf(m_upIsolate.get()); } bool IsOutOfMemory() const @@ -429,8 +431,8 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli virtual v8::Local ensureDefaultContextInGroup(int contextGroupId) override; virtual double currentTimeMS() override; - virtual void sendResponse(int callId, std::unique_ptr spMessage) override; - virtual void sendNotification(std::unique_ptr spMessage) override; + virtual void sendResponse(int callId, std::unique_ptr upMessage) override; + virtual void sendNotification(std::unique_ptr upMessage) override; virtual void flushProtocolNotifications() override; void* AddRefV8Object(void* pvObject); @@ -439,13 +441,13 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli void* AddRefV8Script(void* pvScript); void ReleaseV8Script(void* pvScript); - void RunTaskAsync(v8::Task* pTask); - void RunTaskDelayed(v8::Task* pTask, double delayInSeconds); - void RunTaskWithLockAsync(v8::Task* pTask); - void RunTaskWithLockDelayed(v8::Task* pTask, double delayInSeconds); - v8::TaskRunner* CreateForegroundTaskRunner(); + void RunTaskAsync(std::unique_ptr upTask); + void RunTaskDelayed(std::unique_ptr upTask, double delayInSeconds); + void RunTaskWithLockAsync(bool allowNesting, std::unique_ptr upTask); + void RunTaskWithLockDelayed(bool allowNesting, std::unique_ptr upTask, double delayInSeconds); + std::shared_ptr GetForegroundTaskRunner(); - void CallWithLockNoWait(std::function&& callback); + void CallWithLockNoWait(bool allowNesting, CallWithLockCallback&& callback); void DECLSPEC_NORETURN ThrowOutOfMemoryException(); static void ImportMetaInitializeCallback(v8::Local hContext, v8::Local hModule, v8::Local hMeta); @@ -464,6 +466,9 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli private: + using CallWithLockEntry = std::pair; + using CallWithLockQueue = std::queue; + struct ContextEntry final { V8ContextImpl* pContextImpl; @@ -485,11 +490,12 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli bool RunMessageLoop(bool awaitingDebugger); - void CallWithLockAsync(std::function&& callback); + void CallWithLockAsync(bool allowNesting, CallWithLockCallback&& callback); static void ProcessCallWithLockQueue(v8::Isolate* pIsolate, void* pvIsolateImpl); void ProcessCallWithLockQueue(); void ProcessCallWithLockQueue(std::unique_lock& lock); - void ProcessCallWithLockQueue(std::queue>& callWithLockQueue); + void ProcessCallWithLockQueue(CallWithLockQueue& callWithLockQueue); + CallWithLockQueue PopCallWithLockQueue(const std::unique_lock& lock); void ConnectDebugClient(); void SendDebugCommand(const StdString& command); @@ -508,25 +514,27 @@ class V8IsolateImpl final: public V8Isolate, public v8_inspector::V8InspectorCli void FlushContextAsync(v8::Local hContext); void FlushContextAsync(ContextEntry& contextEntry); - void FlushContext(V8ContextImpl* pContextImpl); + void FlushContext(V8ContextImpl& contextImpl); StdString m_Name; - UniqueDisposePtr m_spIsolate; - UniqueDisposePtr m_spCpuProfiler; + UniqueDisposePtr m_upIsolate; + UniqueDisposePtr m_upCpuProfiler; Persistent m_hHostObjectHolderKey; RecursiveMutex m_Mutex; std::list m_ContextEntries; SimpleMutex m_DataMutex; + std::shared_ptr m_spForegroundTaskRunner; std::vector> m_AsyncTasks; - std::queue> m_CallWithLockQueue; + CallWithLockQueue m_CallWithLockQueue; std::condition_variable m_CallWithLockQueueChanged; + size_t m_CallWithLockLevel; std::vector> m_TaskTimers; std::list m_ScriptCache; bool m_DebuggingEnabled; int m_DebugPort; void* m_pvDebugAgent; - std::unique_ptr m_spInspector; - std::unique_ptr m_spInspectorSession; + std::unique_ptr m_upInspector; + std::unique_ptr m_upInspectorSession; bool m_AwaitingDebugger; bool m_InMessageLoop; bool m_QuitMessageLoop; diff --git a/ClearScript/V8/ClearScriptV8/V8IsolateProxyImpl.cpp b/ClearScript/V8/ClearScriptV8/V8IsolateProxyImpl.cpp index c5270df36..5774f4732 100644 --- a/ClearScript/V8/ClearScriptV8/V8IsolateProxyImpl.cpp +++ b/ClearScript/V8/ClearScriptV8/V8IsolateProxyImpl.cpp @@ -340,9 +340,25 @@ namespace V8 { auto statistics = GetIsolate()->GetStatistics(); auto gcStatistics = gcnew V8Runtime::Statistics; + gcStatistics->ScriptCount = statistics.ScriptCount; gcStatistics->ScriptCacheSize = statistics.ScriptCacheSize; gcStatistics->ModuleCount = statistics.ModuleCount; + + auto size = static_cast(statistics.PostedTaskCounts.size()); + gcStatistics->PostedTaskCounts = gcnew array(size); + for (auto index = 0; index < size; index++) + { + gcStatistics->PostedTaskCounts[index] = statistics.PostedTaskCounts[index]; + } + + size = static_cast(statistics.InvokedTaskCounts.size()); + gcStatistics->InvokedTaskCounts = gcnew array(size); + for (auto index = 0; index < size; index++) + { + gcStatistics->InvokedTaskCounts[index] = statistics.InvokedTaskCounts[index]; + } + return gcStatistics; } diff --git a/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.cpp b/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.cpp index 6edbba8c4..be793537f 100644 --- a/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.cpp +++ b/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.cpp @@ -3,97 +3,88 @@ #include "ClearScriptV8Native.h" -//----------------------------------------------------------------------------- -// local helper functions -//----------------------------------------------------------------------------- - -V8ObjectHolderImpl* GetHolderImpl(V8ObjectHolder* pHolder) -{ - return static_cast(pHolder); -} - //----------------------------------------------------------------------------- // V8ObjectHelpers implementation //----------------------------------------------------------------------------- -V8Value V8ObjectHelpers::GetProperty(V8ObjectHolder* pHolder, const StdString& name) +V8Value V8ObjectHelpers::GetProperty(const SharedPtr& spHolder, const StdString& name) { - return GetHolderImpl(pHolder)->GetProperty(name); + return spHolder.DerefAs().GetProperty(name); } //----------------------------------------------------------------------------- -void V8ObjectHelpers::SetProperty(V8ObjectHolder* pHolder, const StdString& name, const V8Value& value) +void V8ObjectHelpers::SetProperty(const SharedPtr& spHolder, const StdString& name, const V8Value& value) { - GetHolderImpl(pHolder)->SetProperty(name, value); + spHolder.DerefAs().SetProperty(name, value); } //----------------------------------------------------------------------------- -bool V8ObjectHelpers::DeleteProperty(V8ObjectHolder* pHolder, const StdString& name) +bool V8ObjectHelpers::DeleteProperty(const SharedPtr& spHolder, const StdString& name) { - return GetHolderImpl(pHolder)->DeleteProperty(name); + return spHolder.DerefAs().DeleteProperty(name); } //----------------------------------------------------------------------------- -void V8ObjectHelpers::GetPropertyNames(V8ObjectHolder* pHolder, std::vector& names) +void V8ObjectHelpers::GetPropertyNames(const SharedPtr& spHolder, std::vector& names) { - GetHolderImpl(pHolder)->GetPropertyNames(names); + spHolder.DerefAs().GetPropertyNames(names); } //----------------------------------------------------------------------------- -V8Value V8ObjectHelpers::GetProperty(V8ObjectHolder* pHolder, int index) +V8Value V8ObjectHelpers::GetProperty(const SharedPtr& spHolder, int index) { - return GetHolderImpl(pHolder)->GetProperty(index); + return spHolder.DerefAs().GetProperty(index); } //----------------------------------------------------------------------------- -void V8ObjectHelpers::SetProperty(V8ObjectHolder* pHolder, int index, const V8Value& value) +void V8ObjectHelpers::SetProperty(const SharedPtr& spHolder, int index, const V8Value& value) { - GetHolderImpl(pHolder)->SetProperty(index, value); + spHolder.DerefAs().SetProperty(index, value); } //----------------------------------------------------------------------------- -bool V8ObjectHelpers::DeleteProperty(V8ObjectHolder* pHolder, int index) +bool V8ObjectHelpers::DeleteProperty(const SharedPtr& spHolder, int index) { - return GetHolderImpl(pHolder)->DeleteProperty(index); + return spHolder.DerefAs().DeleteProperty(index); } //----------------------------------------------------------------------------- -void V8ObjectHelpers::GetPropertyIndices(V8ObjectHolder* pHolder, std::vector& indices) +void V8ObjectHelpers::GetPropertyIndices(const SharedPtr& spHolder, std::vector& indices) { - GetHolderImpl(pHolder)->GetPropertyIndices(indices); + spHolder.DerefAs().GetPropertyIndices(indices); } //----------------------------------------------------------------------------- -V8Value V8ObjectHelpers::Invoke(V8ObjectHolder* pHolder, bool asConstructor, const std::vector& args) +V8Value V8ObjectHelpers::Invoke(const SharedPtr& spHolder, bool asConstructor, const std::vector& args) { - return GetHolderImpl(pHolder)->Invoke(asConstructor, args); + return spHolder.DerefAs().Invoke(asConstructor, args); } //----------------------------------------------------------------------------- -V8Value V8ObjectHelpers::InvokeMethod(V8ObjectHolder* pHolder, const StdString& name, const std::vector& args) +V8Value V8ObjectHelpers::InvokeMethod(const SharedPtr& spHolder, const StdString& name, const std::vector& args) { - return GetHolderImpl(pHolder)->InvokeMethod(name, args); + return spHolder.DerefAs().InvokeMethod(name, args); } //----------------------------------------------------------------------------- -void V8ObjectHelpers::GetArrayBufferOrViewInfo(V8ObjectHolder* pHolder, V8Value& arrayBuffer, size_t& offset, size_t& size, size_t& length) +void V8ObjectHelpers::GetArrayBufferOrViewInfo(const SharedPtr& spHolder, V8Value& arrayBuffer, size_t& offset, size_t& size, size_t& length) { - return GetHolderImpl(pHolder)->GetArrayBufferOrViewInfo(arrayBuffer, offset, size, length); + return spHolder.DerefAs().GetArrayBufferOrViewInfo(arrayBuffer, offset, size, length); } //----------------------------------------------------------------------------- -void V8ObjectHelpers::InvokeWithArrayBufferOrViewData(V8ObjectHolder* pHolder, ArrayBufferOrViewDataCallbackT* pCallback, void* pvArg) +void V8ObjectHelpers::InvokeWithArrayBufferOrViewData(const SharedPtr& spHolder, ArrayBufferOrViewDataCallbackT* pCallback, void* pvArg) { - return GetHolderImpl(pHolder)->InvokeWithArrayBufferOrViewData(pCallback, pvArg); + return spHolder.DerefAs().InvokeWithArrayBufferOrViewData(pCallback, pvArg); } diff --git a/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.h b/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.h index f0e1acf37..4cb1ae3e7 100644 --- a/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.h +++ b/ClearScript/V8/ClearScriptV8/V8ObjectHelpers.h @@ -13,20 +13,20 @@ class V8ObjectHelpers final public: - static V8Value GetProperty(V8ObjectHolder* pHolder, const StdString& name); - static void SetProperty(V8ObjectHolder* pHolder, const StdString& name, const V8Value& value); - static bool DeleteProperty(V8ObjectHolder* pHolder, const StdString& name); - static void GetPropertyNames(V8ObjectHolder* pHolder, std::vector& names); + static V8Value GetProperty(const SharedPtr& spHolder, const StdString& name); + static void SetProperty(const SharedPtr& spHolder, const StdString& name, const V8Value& value); + static bool DeleteProperty(const SharedPtr& spHolder, const StdString& name); + static void GetPropertyNames(const SharedPtr& spHolder, std::vector& names); - static V8Value GetProperty(V8ObjectHolder* pHolder, int index); - static void SetProperty(V8ObjectHolder* pHolder, int index, const V8Value& value); - static bool DeleteProperty(V8ObjectHolder* pHolder, int index); - static void GetPropertyIndices(V8ObjectHolder* pHolder, std::vector& indices); + static V8Value GetProperty(const SharedPtr& spHolder, int index); + static void SetProperty(const SharedPtr& spHolder, int index, const V8Value& value); + static bool DeleteProperty(const SharedPtr& spHolder, int index); + static void GetPropertyIndices(const SharedPtr& spHolder, std::vector& indices); - static V8Value Invoke(V8ObjectHolder* pHolder, bool asConstructor, const std::vector& args); - static V8Value InvokeMethod(V8ObjectHolder* pHolder, const StdString& name, const std::vector& args); + static V8Value Invoke(const SharedPtr& spHolder, bool asConstructor, const std::vector& args); + static V8Value InvokeMethod(const SharedPtr& spHolder, const StdString& name, const std::vector& args); typedef void ArrayBufferOrViewDataCallbackT(void* pvData, void* pvArg); - static void GetArrayBufferOrViewInfo(V8ObjectHolder* pHolder, V8Value& arrayBuffer, size_t& offset, size_t& size, size_t& length); - static void InvokeWithArrayBufferOrViewData(V8ObjectHolder* pHolder, ArrayBufferOrViewDataCallbackT* pCallback, void* pvArg); + static void GetArrayBufferOrViewInfo(const SharedPtr& spHolder, V8Value& arrayBuffer, size_t& offset, size_t& size, size_t& length); + static void InvokeWithArrayBufferOrViewData(const SharedPtr& spHolder, ArrayBufferOrViewDataCallbackT* pCallback, void* pvArg); }; diff --git a/ClearScript/V8/ClearScriptV8/V8ObjectHolder.h b/ClearScript/V8/ClearScriptV8/V8ObjectHolder.h index 337de6fa7..d4e1579e9 100644 --- a/ClearScript/V8/ClearScriptV8/V8ObjectHolder.h +++ b/ClearScript/V8/ClearScriptV8/V8ObjectHolder.h @@ -7,7 +7,7 @@ // V8ObjectHolder //----------------------------------------------------------------------------- -class V8ObjectHolder +class V8ObjectHolder: public SharedPtrTarget { public: diff --git a/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.cpp b/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.cpp index 240c49a07..a940203d7 100644 --- a/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.cpp +++ b/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.cpp @@ -7,7 +7,7 @@ // V8ObjectHolderImpl implementation //----------------------------------------------------------------------------- -V8ObjectHolderImpl::V8ObjectHolderImpl(V8WeakContextBinding* pBinding, void* pvObject): +V8ObjectHolderImpl::V8ObjectHolderImpl(const SharedPtr& pBinding, void* pvObject): m_spBinding(pBinding), m_pvObject(pvObject) { diff --git a/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.h b/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.h index 24a83187c..b791a4121 100644 --- a/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.h +++ b/ClearScript/V8/ClearScriptV8/V8ObjectHolderImpl.h @@ -13,7 +13,7 @@ class V8ObjectHolderImpl final: public V8ObjectHolder public: - V8ObjectHolderImpl(V8WeakContextBinding* pBinding, void* pvObject); + V8ObjectHolderImpl(const SharedPtr& spBinding, void* pvObject); virtual V8ObjectHolderImpl* Clone() const override; virtual void* GetObject() const override; diff --git a/ClearScript/V8/ClearScriptV8/V8Platform.h b/ClearScript/V8/ClearScriptV8/V8Platform.h index 7473d7bc7..0b99da525 100644 --- a/ClearScript/V8/ClearScriptV8/V8Platform.h +++ b/ClearScript/V8/ClearScriptV8/V8Platform.h @@ -9,9 +9,14 @@ #pragma warning(push, 3) -//#define V8_DEPRECATION_WARNINGS +#define V8_DEPRECATION_WARNINGS //#define V8_IMMINENT_DEPRECATION_WARNINGS +#ifdef _M_X64 + //#define V8_COMPRESS_POINTERS + //#define V8_31BIT_SMIS_ON_64BIT_ARCH +#endif //_M_X64 + #include "v8.h" #include "v8-platform.h" #include "v8-inspector.h" diff --git a/ClearScript/V8/ClearScriptV8/V8ScriptHolder.h b/ClearScript/V8/ClearScriptV8/V8ScriptHolder.h index 4f1e838ac..c8c16b24c 100644 --- a/ClearScript/V8/ClearScriptV8/V8ScriptHolder.h +++ b/ClearScript/V8/ClearScriptV8/V8ScriptHolder.h @@ -3,16 +3,22 @@ #pragma once +//----------------------------------------------------------------------------- +// forward declarations +//----------------------------------------------------------------------------- + +class V8IsolateImpl; + //----------------------------------------------------------------------------- // V8ScriptHolder //----------------------------------------------------------------------------- -class V8ScriptHolder +class V8ScriptHolder: public SharedPtrTarget { public: virtual V8ScriptHolder* Clone() const = 0; - virtual bool IsSameIsolate(void* pvIsolate) const = 0; + virtual bool IsSameIsolate(const SharedPtr& spThat) const = 0; virtual void* GetScript() const = 0; virtual const V8DocumentInfo& GetDocumentInfo() const = 0; virtual size_t GetCodeDigest() const = 0; diff --git a/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.cpp b/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.cpp index ee154be4c..5880830c5 100644 --- a/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.cpp +++ b/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.cpp @@ -7,8 +7,8 @@ // V8ScriptHolderImpl implementation //----------------------------------------------------------------------------- -V8ScriptHolderImpl::V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest): - m_spBinding(pBinding), +V8ScriptHolderImpl::V8ScriptHolderImpl(const SharedPtr& spBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest): + m_spBinding(spBinding), m_pvScript(pvScript), m_DocumentInfo(documentInfo), m_CodeDigest(codeDigest) @@ -17,8 +17,8 @@ V8ScriptHolderImpl::V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvS //----------------------------------------------------------------------------- -V8ScriptHolderImpl::V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, StdString&& code): - m_spBinding(pBinding), +V8ScriptHolderImpl::V8ScriptHolderImpl(const SharedPtr& spBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, StdString&& code): + m_spBinding(spBinding), m_pvScript(pvScript), m_DocumentInfo(documentInfo), m_Code(std::move(code)), @@ -28,8 +28,8 @@ V8ScriptHolderImpl::V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvS //----------------------------------------------------------------------------- -V8ScriptHolderImpl::V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, const StdString& code, const std::vector& cacheBytes): - m_spBinding(pBinding), +V8ScriptHolderImpl::V8ScriptHolderImpl(const SharedPtr& spBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, const StdString& code, const std::vector& cacheBytes): + m_spBinding(spBinding), m_pvScript(pvScript), m_DocumentInfo(documentInfo), m_CodeDigest(codeDigest), @@ -47,12 +47,12 @@ V8ScriptHolderImpl* V8ScriptHolderImpl::Clone() const //----------------------------------------------------------------------------- -bool V8ScriptHolderImpl::IsSameIsolate(void* pvIsolate) const +bool V8ScriptHolderImpl::IsSameIsolate(const SharedPtr& spThat) const { SharedPtr spIsolateImpl; if (m_spBinding->TryGetIsolateImpl(spIsolateImpl)) { - return spIsolateImpl.GetRawPtr() == pvIsolate; + return spIsolateImpl == spThat; } return false; diff --git a/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.h b/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.h index 8b92dc39f..43a1f452d 100644 --- a/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.h +++ b/ClearScript/V8/ClearScriptV8/V8ScriptHolderImpl.h @@ -13,11 +13,11 @@ class V8ScriptHolderImpl final: public V8ScriptHolder public: - V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest); - V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, StdString&& code); + V8ScriptHolderImpl(const SharedPtr& spBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest); + V8ScriptHolderImpl(const SharedPtr& spBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, StdString&& code); virtual V8ScriptHolderImpl* Clone() const override; - virtual bool IsSameIsolate(void* pvIsolate) const override; + virtual bool IsSameIsolate(const SharedPtr& spThat) const override; virtual void* GetScript() const override; virtual const V8DocumentInfo& GetDocumentInfo() const override; virtual size_t GetCodeDigest() const override; @@ -30,7 +30,7 @@ class V8ScriptHolderImpl final: public V8ScriptHolder private: - V8ScriptHolderImpl(V8WeakContextBinding* pBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, const StdString& code, const std::vector& cacheBytes); + V8ScriptHolderImpl(const SharedPtr& spBinding, void* pvScript, const V8DocumentInfo& documentInfo, size_t codeDigest, const StdString& code, const std::vector& cacheBytes); SharedPtr m_spBinding; void* m_pvScript; diff --git a/ClearScript/V8/ClearScriptV8/V8WeakContextBinding.h b/ClearScript/V8/ClearScriptV8/V8WeakContextBinding.h index 5ccfd6504..451d3217f 100644 --- a/ClearScript/V8/ClearScriptV8/V8WeakContextBinding.h +++ b/ClearScript/V8/ClearScriptV8/V8WeakContextBinding.h @@ -11,9 +11,9 @@ class V8WeakContextBinding final: public SharedPtrTarget { public: - V8WeakContextBinding(V8IsolateImpl* pIsolateImpl, V8ContextImpl* pContextImpl): - m_wrIsolate(pIsolateImpl->CreateWeakRef()), - m_IsolateName(pIsolateImpl->GetName()), + V8WeakContextBinding(const SharedPtr& spIsolateImpl, V8ContextImpl* pContextImpl): + m_wrIsolate(spIsolateImpl->CreateWeakRef()), + m_IsolateName(spIsolateImpl->GetName()), m_wrContext(pContextImpl->CreateWeakRef()), m_ContextName(pContextImpl->GetName()) { @@ -35,7 +35,7 @@ class V8WeakContextBinding final: public SharedPtrTarget auto spIsolate = m_wrIsolate.GetTarget(); if (!spIsolate.IsEmpty()) { - spIsolateImpl = static_cast(spIsolate.GetRawPtr()); + spIsolateImpl = spIsolate.CastTo(); return true; } @@ -58,7 +58,7 @@ class V8WeakContextBinding final: public SharedPtrTarget auto spContext = m_wrContext.GetTarget(); if (!spContext.IsEmpty()) { - spContextImpl = static_cast(spContext.GetRawPtr()); + spContextImpl = spContext.CastTo(); return true; } diff --git a/ClearScript/V8/ClearScriptV8/WeakRef.h b/ClearScript/V8/ClearScriptV8/WeakRef.h index a4377163f..e52e69237 100644 --- a/ClearScript/V8/ClearScriptV8/WeakRef.h +++ b/ClearScript/V8/ClearScriptV8/WeakRef.h @@ -53,8 +53,8 @@ class WeakRef final private: - explicit WeakRef(WeakRefImpl* pImpl): - m_spImpl(pImpl) + explicit WeakRef(const SharedPtr>& spImpl): + m_spImpl(spImpl) { } @@ -75,7 +75,7 @@ class WeakRefTarget: public SharedPtrTarget { } - WeakRef CreateWeakRef() + WeakRef CreateWeakRef() const { return WeakRef(m_spWeakRefImpl); } diff --git a/ClearScript/V8/V8/BuildToolsPatch.txt b/ClearScript/V8/V8/BuildToolsPatch.txt deleted file mode 100644 index 9315d90c1..000000000 --- a/ClearScript/V8/V8/BuildToolsPatch.txt +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/third_party/libc++/BUILD.gn b/third_party/libc++/BUILD.gn -index c082724..bbfc92e 100644 ---- a/third_party/libc++/BUILD.gn -+++ b/third_party/libc++/BUILD.gn -@@ -29,6 +29,12 @@ config("winver") { - ] - } - -+if (current_cpu == "x86") { -+ clearscript_v8_platform = "ia32" -+} else { -+ clearscript_v8_platform = current_cpu -+} -+ - if (libcxx_is_shared) { - _libcxx_target_type = "shared_library" - } else { -@@ -51,6 +57,7 @@ target(_libcxx_target_type, "libc++") { - if (libcxx_is_shared) { - no_default_deps = true - } -+ output_name = "v8-libcpp-${clearscript_v8_platform}" - sources = [ - "trunk/src/algorithm.cpp", - "trunk/src/any.cpp", diff --git a/ClearScript/V8/V8/V8Patch.txt b/ClearScript/V8/V8/V8Patch.txt index 63db85a0c..ece3685d9 100644 --- a/ClearScript/V8/V8/V8Patch.txt +++ b/ClearScript/V8/V8/V8Patch.txt @@ -1,9 +1,18 @@ diff --git a/BUILD.gn b/BUILD.gn -index 5df0619b1d..66e318705e 100644 +index 0ffa2b794d..ac34786897 100644 --- a/BUILD.gn +++ b/BUILD.gn -@@ -211,6 +211,12 @@ if (v8_multi_arch_build && - v8_enable_pointer_compression = !v8_enable_pointer_compression +@@ -507,7 +507,7 @@ config("toolchain") { + visibility = [ ":*" ] # Only targets in this file can depend on this. + + defines = [] +- cflags = [] ++ cflags = [ "-Wno-invalid-offsetof" ] + ldflags = [] + + if (v8_current_cpu == "arm") { +@@ -3509,7 +3509,14 @@ v8_source_set("torque_ls_base") { + } } +if (v8_current_cpu == "x86") { @@ -12,18 +21,12 @@ index 5df0619b1d..66e318705e 100644 + clearscript_v8_platform = v8_current_cpu +} + - # Derived defaults. - if (v8_enable_verify_heap == "") { - v8_enable_verify_heap = v8_enable_debugging_features -@@ -3533,6 +3539,7 @@ v8_source_set("torque_ls_base") { - } - v8_component("v8_libbase") { + output_name = "v8-base-${clearscript_v8_platform}" sources = [ "src/base/address-region.h", "src/base/atomic-utils.h", -@@ -3733,6 +3740,7 @@ v8_component("v8_libbase") { +@@ -3710,6 +3717,7 @@ v8_component("v8_libbase") { } v8_component("v8_libplatform") { @@ -31,55 +34,19 @@ index 5df0619b1d..66e318705e 100644 sources = [ "//base/trace_event/common/trace_event_common.h", "include/libplatform/libplatform-export.h", -@@ -4147,6 +4155,7 @@ group("v8_fuzzers") { +@@ -4104,6 +4112,7 @@ group("v8_fuzzers") { if (is_component_build) { v8_component("v8") { + output_name = "v8-${clearscript_v8_platform}" - sources = [ - "src/utils/v8dll-main.cc", - ] -diff --git a/include/v8-inspector.h b/include/v8-inspector.h -index 5f53f21d55..1e575d2abe 100644 ---- a/include/v8-inspector.h -+++ b/include/v8-inspector.h -@@ -249,6 +249,7 @@ struct V8_EXPORT V8StackTraceId { - class V8_EXPORT V8Inspector { - public: - static std::unique_ptr create(v8::Isolate*, V8InspectorClient*); -+ static V8Inspector* createPtr(v8::Isolate*, V8InspectorClient*); - virtual ~V8Inspector() = default; - - // Contexts instrumentation. -diff --git a/include/v8-platform.h b/include/v8-platform.h -index c6e78f2381..217e2bff08 100644 ---- a/include/v8-platform.h -+++ b/include/v8-platform.h -@@ -444,6 +444,19 @@ class Platform { - V8_EXPORT static double SystemClockTimeMillis(); - }; - -+class SafePlatform { -+ public: -+ virtual int NumberOfWorkerThreads() = 0; -+ virtual TaskRunner* CreateForegroundTaskRunner(Isolate* isolate) = 0; -+ virtual void CallOnWorkerThread(std::unique_ptr task) = 0; -+ virtual void CallDelayedOnWorkerThread(std::unique_ptr task, double delay_in_seconds) = 0; -+ virtual void CallOnForegroundThread(Isolate* isolate, Task* task) = 0; -+ virtual void CallDelayedOnForegroundThread(Isolate* isolate, Task* task, double delay_in_seconds) = 0; -+ virtual double MonotonicallyIncreasingTime() = 0; -+ virtual double CurrentClockTimeMillis() = 0; -+ virtual TracingController* GetTracingController() = 0; -+ V8_EXPORT static void Initialize(SafePlatform& impl); -+}; - } // namespace v8 + sources = [ "src/utils/v8dll-main.cc" ] - #endif // V8_V8_PLATFORM_H_ + public_deps = [ diff --git a/include/v8.h b/include/v8.h -index 1387f74715..8a03fc9320 100644 +index d6f60c2562..622e10f80b 100644 --- a/include/v8.h +++ b/include/v8.h -@@ -1624,6 +1624,7 @@ class V8_EXPORT ScriptCompiler { +@@ -1659,6 +1659,7 @@ class V8_EXPORT ScriptCompiler { // (with delete[]) when the CachedData object is destroyed. CachedData(const uint8_t* data, int length, BufferPolicy buffer_policy = BufferNotOwned); @@ -88,10 +55,10 @@ index 1387f74715..8a03fc9320 100644 // TODO(marja): Async compilation; add constructors which take a callback // which will be called when V8 no longer needs the data. diff --git a/src/api/api.cc b/src/api/api.cc -index 0d80f986f1..e1ac3ead27 100644 +index 7fe974de24..50408a4f78 100644 --- a/src/api/api.cc +++ b/src/api/api.cc -@@ -2047,6 +2047,10 @@ ScriptCompiler::CachedData::CachedData(const uint8_t* data_, int length_, +@@ -2049,6 +2049,10 @@ ScriptCompiler::CachedData::CachedData(const uint8_t* data_, int length_, rejected(false), buffer_policy(buffer_policy_) {} @@ -103,21 +70,21 @@ index 0d80f986f1..e1ac3ead27 100644 if (buffer_policy == BufferOwned) { delete[] data; diff --git a/src/codegen/code-stub-assembler.cc b/src/codegen/code-stub-assembler.cc -index 3051ce3662..713ba80688 100644 +index 702a64d091..63463fb477 100644 --- a/src/codegen/code-stub-assembler.cc +++ b/src/codegen/code-stub-assembler.cc -@@ -12460,6 +12460,11 @@ TNode CodeStubAssembler::Typeof(SloppyTNode value) { +@@ -11960,6 +11960,11 @@ TNode CodeStubAssembler::Typeof(SloppyTNode value) { GotoIf(InstanceTypeEqual(instance_type, ODDBALL_TYPE), &if_oddball); + Label resume_default(this); -+ GotoIfNot(Word32And(LoadMapBitField(map), Int32Constant(Map::HasNamedInterceptorBit::kMask)), &resume_default); -+ Branch(Word32And(LoadMapBitField2(map), Int32Constant(Map::IsImmutablePrototypeBit::kMask)), &return_function, &return_object); ++ GotoIfNot(Word32And(LoadMapBitField(map), Int32Constant(Map::Bits1::HasNamedInterceptorBit::kMask)), &resume_default); ++ Branch(Word32And(LoadMapBitField2(map), Int32Constant(Map::Bits2::IsImmutablePrototypeBit::kMask)), &return_function, &return_object); + BIND(&resume_default); + - TNode callable_or_undetectable_mask = Word32And( - LoadMapBitField(map), - Int32Constant(Map::IsCallableBit::kMask | Map::IsUndetectableBit::kMask)); + TNode callable_or_undetectable_mask = + Word32And(LoadMapBitField(map), + Int32Constant(Map::Bits1::IsCallableBit::kMask | diff --git a/src/execution/stack-guard.cc b/src/execution/stack-guard.cc index d37327f1c3..4f063b7bab 100644 --- a/src/execution/stack-guard.cc @@ -135,10 +102,10 @@ index d37327f1c3..4f063b7bab 100644 set_jslimit(SimulatorStack::JsLimitFromCLimit(isolate, limit)); real_climit_ = limit; diff --git a/src/init/v8.cc b/src/init/v8.cc -index fd26c60848..a2081f5211 100644 +index edcc399f95..119839bebb 100644 --- a/src/init/v8.cc +++ b/src/init/v8.cc -@@ -124,7 +124,6 @@ void V8::InitializeOncePerProcess() { +@@ -123,7 +123,6 @@ void V8::InitializeOncePerProcess() { } void V8::InitializePlatform(v8::Platform* platform) { @@ -146,76 +113,11 @@ index fd26c60848..a2081f5211 100644 CHECK(platform); platform_ = platform; v8::base::SetPrintStackTrace(platform_->GetStackTracePrinter()); -@@ -171,4 +170,49 @@ void V8::SetSnapshotBlob(StartupData* snapshot_blob) { - double Platform::SystemClockTimeMillis() { - return base::OS::TimeCurrentMillis(); - } -+ -+class SafePlatformImpl final: public Platform { -+ public: -+ void SetImpl(SafePlatform& impl) { -+ impl_.store(&impl); -+ } -+ virtual int NumberOfWorkerThreads() override { -+ return impl_.load()->NumberOfWorkerThreads(); -+ } -+ virtual std::shared_ptr GetForegroundTaskRunner(Isolate* isolate) override { -+ return std::shared_ptr(impl_.load()->CreateForegroundTaskRunner(isolate)); -+ } -+ virtual void CallOnWorkerThread(std::unique_ptr task) override { -+ impl_.load()->CallOnWorkerThread(std::move(task)); -+ } -+ virtual void CallDelayedOnWorkerThread(std::unique_ptr task, double delay_in_seconds) override { -+ impl_.load()->CallDelayedOnWorkerThread(std::move(task), delay_in_seconds); -+ } -+ virtual void CallOnForegroundThread(Isolate* isolate, Task* task) override { -+ impl_.load()->CallOnForegroundThread(isolate, task); -+ } -+ virtual void CallDelayedOnForegroundThread(Isolate* isolate, Task* task, double delay_in_seconds) override { -+ impl_.load()->CallDelayedOnForegroundThread(isolate, task, delay_in_seconds); -+ } -+ virtual double MonotonicallyIncreasingTime() override { -+ return impl_.load()->MonotonicallyIncreasingTime(); -+ } -+ virtual double CurrentClockTimeMillis() override { -+ return impl_.load()->CurrentClockTimeMillis(); -+ } -+ virtual TracingController* GetTracingController() override { -+ return impl_.load()->GetTracingController(); -+ } -+ private: -+ std::atomic impl_; -+}; -+ -+void SafePlatform::Initialize(SafePlatform& impl) { -+#pragma clang diagnostic push -+#pragma clang diagnostic ignored "-Wexit-time-destructors" -+ static SafePlatformImpl platform; -+#pragma clang diagnostic pop -+ platform.SetImpl(impl); -+ V8::InitializePlatform(&platform); -+} - } // namespace v8 -diff --git a/src/inspector/v8-inspector-impl.cc b/src/inspector/v8-inspector-impl.cc -index e91dd7f7f4..762b050add 100644 ---- a/src/inspector/v8-inspector-impl.cc -+++ b/src/inspector/v8-inspector-impl.cc -@@ -54,6 +54,10 @@ std::unique_ptr V8Inspector::create(v8::Isolate* isolate, - return std::unique_ptr(new V8InspectorImpl(isolate, client)); - } - -+V8Inspector* V8Inspector::createPtr(v8::Isolate* isolate, V8InspectorClient* client) { -+ return create(isolate, client).release(); -+} -+ - V8InspectorImpl::V8InspectorImpl(v8::Isolate* isolate, - V8InspectorClient* client) - : m_isolate(isolate), diff --git a/src/objects/objects.cc b/src/objects/objects.cc -index 227cff8da4..828bf57e31 100644 +index 9b53019297..3ca00b9e0e 100644 --- a/src/objects/objects.cc +++ b/src/objects/objects.cc -@@ -811,6 +811,12 @@ Handle Object::TypeOf(Isolate* isolate, Handle object) { +@@ -818,6 +818,12 @@ Handle Object::TypeOf(Isolate* isolate, Handle object) { if (object->IsString()) return isolate->factory()->string_string(); if (object->IsSymbol()) return isolate->factory()->symbol_string(); if (object->IsBigInt()) return isolate->factory()->bigint_string(); diff --git a/ClearScript/V8/V8/ZlibPatch.txt b/ClearScript/V8/V8/ZlibPatch.txt new file mode 100644 index 000000000..906aab7ec --- /dev/null +++ b/ClearScript/V8/V8/ZlibPatch.txt @@ -0,0 +1,23 @@ +diff --git a/BUILD.gn b/BUILD.gn +index 2414c88..0e0e2bf 100644 +--- a/BUILD.gn ++++ b/BUILD.gn +@@ -225,10 +225,18 @@ config("zlib_warnings") { + } + } + ++if (current_cpu == "x86") { ++ clearscript_v8_platform = "ia32" ++} else { ++ clearscript_v8_platform = current_cpu ++} ++ + component("zlib") { + if (!is_win) { + # Don't stomp on "libzlib" on other platforms. + output_name = "chrome_zlib" ++ } else { ++ output_name = "v8-zlib-${clearscript_v8_platform}" + } + + sources = [ diff --git a/ClearScript/V8/V8Proxy.cs b/ClearScript/V8/V8Proxy.cs index 2edab87cf..e6d6dd7c9 100644 --- a/ClearScript/V8/V8Proxy.cs +++ b/ClearScript/V8/V8Proxy.cs @@ -58,7 +58,7 @@ private static Assembly LoadAssembly() { } - var hCppLibrary = LoadNativeLibrary("v8-libcpp"); + var hZlibLibrary = LoadNativeLibrary("v8-zlib"); try { var hBaseLibrary = LoadNativeLibrary("v8-base"); @@ -117,7 +117,7 @@ private static Assembly LoadAssembly() } finally { - NativeMethods.FreeLibrary(hCppLibrary); + NativeMethods.FreeLibrary(hZlibLibrary); } } diff --git a/ClearScript/V8/V8Runtime.cs b/ClearScript/V8/V8Runtime.cs index 56a249493..27b8347d1 100644 --- a/ClearScript/V8/V8Runtime.cs +++ b/ClearScript/V8/V8Runtime.cs @@ -877,6 +877,21 @@ public void Dispose() #endregion + #region Nested type: TaskKind + + internal enum TaskKind : ushort + { + Worker, + DelayedWorker, + Foreground, + DelayedForeground, + NonNestableForeground, + NonNestableDelayedForeground, + Count + } + + #endregion + #region Nested type: Statistics internal sealed class Statistics @@ -884,6 +899,8 @@ internal sealed class Statistics public ulong ScriptCount; public ulong ScriptCacheSize; public ulong ModuleCount; + public ulong[] PostedTaskCounts; + public ulong[] InvokedTaskCounts; } #endregion diff --git a/ClearScript/V8/V8ScriptEngine.cs b/ClearScript/V8/V8ScriptEngine.cs index e2141b3f2..42a9f0ee7 100644 --- a/ClearScript/V8/V8ScriptEngine.cs +++ b/ClearScript/V8/V8ScriptEngine.cs @@ -1271,7 +1271,7 @@ internal override object MarshalToHost(object obj, bool preserveHostTarget) { if (obj == null) { - return Undefined.Value; + return UndefinedImportValue; } if (obj is DBNull) diff --git a/ClearScript/Windows/WindowsScriptEngine.Site.cs b/ClearScript/Windows/WindowsScriptEngine.Site.cs index 27335839d..c9a72a824 100644 --- a/ClearScript/Windows/WindowsScriptEngine.Site.cs +++ b/ClearScript/Windows/WindowsScriptEngine.Site.cs @@ -140,7 +140,7 @@ public void GetItemInfo(string name, ScriptInfoFlags mask, ref IntPtr pUnkItem, if (mask.HasFlag(ScriptInfoFlags.ITypeInfo)) { - pTypeInfo = item.GetType().GetITypeInfo(); + pTypeInfo = item.GetType().GetTypeInfo(); } } diff --git a/ClearScript/Windows/WindowsScriptEngine.cs b/ClearScript/Windows/WindowsScriptEngine.cs index 665b1841b..82bf31b08 100644 --- a/ClearScript/Windows/WindowsScriptEngine.cs +++ b/ClearScript/Windows/WindowsScriptEngine.cs @@ -314,7 +314,7 @@ private static bool GetDirectAccessItem(object item, out object directAccessItem continue; } - if ((item != null) && item.GetType().IsCOMObject) + if ((item != null) && (item.GetType().IsCOMObject || item.GetType().IsCOMVisible())) { directAccessItem = item; return true; @@ -427,7 +427,7 @@ private object MarshalToHostInternal(object obj, bool preserveHostTarget, HashSe { if (obj == null) { - return Undefined.Value; + return UndefinedImportValue; } if (obj is DBNull) @@ -802,6 +802,7 @@ internal override T SyncInvoke(Func func) /// protected override void Dispose(bool disposing) { + VerifyAccess(); if (disposedFlag.Set()) { if (disposing) diff --git a/ClearScript/doc/Build.docx b/ClearScript/doc/Build.docx index a698fcf35..d083006ed 100644 Binary files a/ClearScript/doc/Build.docx and b/ClearScript/doc/Build.docx differ diff --git a/ClearScript/doc/Reference.chm b/ClearScript/doc/Reference.chm index 361b85630..2c203b1a9 100644 Binary files a/ClearScript/doc/Reference.chm and b/ClearScript/doc/Reference.chm differ diff --git a/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj b/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj index 20d0159ee..e744dad87 100644 --- a/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj +++ b/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj @@ -10,7 +10,7 @@ Properties Microsoft.ClearScript.Test ClearScriptBenchmarks - v4.6 + v4.7.2 512 diff --git a/ClearScriptBenchmarks/Properties/AssemblyInfo.cs b/ClearScriptBenchmarks/Properties/AssemblyInfo.cs index 359d7aa31..4f71b8611 100644 --- a/ClearScriptBenchmarks/Properties/AssemblyInfo.cs +++ b/ClearScriptBenchmarks/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyVersion("6.0.1.0")] +[assembly: AssemblyFileVersion("6.0.1.0")] diff --git a/ClearScriptConsole/ClearScriptConsole.cs b/ClearScriptConsole/ClearScriptConsole.cs index 266ab97f3..b298593ff 100644 --- a/ClearScriptConsole/ClearScriptConsole.cs +++ b/ClearScriptConsole/ClearScriptConsole.cs @@ -14,6 +14,8 @@ internal static class ClearScriptConsole { public static void Main(string[] args) { + HostSettings.UseAssemblyTable = true; + if ((args.Length == 2) && (args[0] == "-t")) { RunTest(args[1]); diff --git a/ClearScriptConsole/Properties/AssemblyInfo.cs b/ClearScriptConsole/Properties/AssemblyInfo.cs index a1f6df1d8..78165db52 100644 --- a/ClearScriptConsole/Properties/AssemblyInfo.cs +++ b/ClearScriptConsole/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyVersion("6.0.1.0")] +[assembly: AssemblyFileVersion("6.0.1.0")] diff --git a/ClearScriptTest/AccessContextTest.cs b/ClearScriptTest/AccessContextTest.cs index 73211031b..c07be83b1 100644 --- a/ClearScriptTest/AccessContextTest.cs +++ b/ClearScriptTest/AccessContextTest.cs @@ -16,8 +16,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class AccessContextTest : ClearScriptTest { diff --git a/ClearScriptTest/BadV8DeploymentTest.cs b/ClearScriptTest/BadV8DeploymentTest.cs index 663cf3efe..0dc4e0b58 100644 --- a/ClearScriptTest/BadV8DeploymentTest.cs +++ b/ClearScriptTest/BadV8DeploymentTest.cs @@ -47,8 +47,8 @@ public void BadV8Deployment_NoNativeLibrary() [DeploymentItem("v8-ia32.dll", "BadV8Deployment_NoManagedAssembly")] [DeploymentItem("v8-base-x64.dll", "BadV8Deployment_NoManagedAssembly")] [DeploymentItem("v8-base-ia32.dll", "BadV8Deployment_NoManagedAssembly")] - [DeploymentItem("v8-libcpp-x64.dll", "BadV8Deployment_NoManagedAssembly")] - [DeploymentItem("v8-libcpp-ia32.dll", "BadV8Deployment_NoManagedAssembly")] + [DeploymentItem("v8-zlib-x64.dll", "BadV8Deployment_NoManagedAssembly")] + [DeploymentItem("v8-zlib-ia32.dll", "BadV8Deployment_NoManagedAssembly")] public void BadV8Deployment_NoManagedAssembly() { V8Proxy.RunWithDeploymentDir("BadV8Deployment_NoManagedAssembly", () => diff --git a/ClearScriptTest/BaseMemberAccessTest.cs b/ClearScriptTest/BaseMemberAccessTest.cs index 107c57cbe..5278d8b67 100644 --- a/ClearScriptTest/BaseMemberAccessTest.cs +++ b/ClearScriptTest/BaseMemberAccessTest.cs @@ -17,8 +17,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class BaseMemberAccessTest : ClearScriptTest { diff --git a/ClearScriptTest/BugFixTest.cs b/ClearScriptTest/BugFixTest.cs index 8392d29e4..670876aed 100644 --- a/ClearScriptTest/BugFixTest.cs +++ b/ClearScriptTest/BugFixTest.cs @@ -32,8 +32,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [DeploymentItem("ClearScriptConsole.exe")] [DeploymentItem("Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] diff --git a/ClearScriptTest/CrossEngineTest.cs b/ClearScriptTest/CrossEngineTest.cs index 1ed6fe0da..807214890 100644 --- a/ClearScriptTest/CrossEngineTest.cs +++ b/ClearScriptTest/CrossEngineTest.cs @@ -18,8 +18,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class CrossEngineTest : ClearScriptTest { diff --git a/ClearScriptTest/DynamicHostItemTest.cs b/ClearScriptTest/DynamicHostItemTest.cs index 71bf8ec2f..834861ebd 100644 --- a/ClearScriptTest/DynamicHostItemTest.cs +++ b/ClearScriptTest/DynamicHostItemTest.cs @@ -15,8 +15,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] [SuppressMessage("ReSharper", "StringLiteralTypo")] public class DynamicHostItemTest : ClearScriptTest diff --git a/ClearScriptTest/ExplicitBaseInterfaceMemberAccessTest.cs b/ClearScriptTest/ExplicitBaseInterfaceMemberAccessTest.cs index 8dc2065f1..8fe1de3db 100644 --- a/ClearScriptTest/ExplicitBaseInterfaceMemberAccessTest.cs +++ b/ClearScriptTest/ExplicitBaseInterfaceMemberAccessTest.cs @@ -17,8 +17,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class ExplicitBaseInterfaceMemberAccessTest : ClearScriptTest { diff --git a/ClearScriptTest/ExtensionsTest.cs b/ClearScriptTest/ExtensionsTest.cs index 5207f1532..59cf50fc7 100644 --- a/ClearScriptTest/ExtensionsTest.cs +++ b/ClearScriptTest/ExtensionsTest.cs @@ -17,8 +17,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class ExtensionsTest : ClearScriptTest { diff --git a/ClearScriptTest/HostListTest.cs b/ClearScriptTest/HostListTest.cs index 3e5ddf19b..eebddd43a 100644 --- a/ClearScriptTest/HostListTest.cs +++ b/ClearScriptTest/HostListTest.cs @@ -17,8 +17,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class HostListTest : ClearScriptTest { diff --git a/ClearScriptTest/HostVariableTest.cs b/ClearScriptTest/HostVariableTest.cs index 3f2a1b4c0..b0a845ffb 100644 --- a/ClearScriptTest/HostVariableTest.cs +++ b/ClearScriptTest/HostVariableTest.cs @@ -18,8 +18,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class HostVariableTest : ClearScriptTest { diff --git a/ClearScriptTest/JScriptEngineTest.cs b/ClearScriptTest/JScriptEngineTest.cs index f6c9c9027..e6c5114e6 100644 --- a/ClearScriptTest/JScriptEngineTest.cs +++ b/ClearScriptTest/JScriptEngineTest.cs @@ -12,6 +12,7 @@ using System.Linq; using System.Reflection; using System.Runtime.InteropServices; +using System.Text; using System.Threading; using System.Windows.Threading; using Microsoft.ClearScript.JavaScript; @@ -31,8 +32,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [DeploymentItem("JavaScript", "JavaScript")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] [SuppressMessage("ReSharper", "StringLiteralTypo")] @@ -2592,6 +2593,72 @@ public void JScriptEngine_DocumentSettings_EnforceRelativePrefix() TestUtil.AssertException(() => engine.EvaluateDocument("JavaScript/LegacyCommonJS/Module", ModuleCategory.CommonJS)); } + [TestMethod, TestCategory("JScriptEngine")] + public void JScriptEngine_UndefinedImportValue() + { + Assert.IsNull(engine.Evaluate("null")); + Assert.IsInstanceOfType(engine.Evaluate("undefined"), typeof(Undefined)); + + engine.UndefinedImportValue = null; + Assert.IsNull(engine.Evaluate("null")); + Assert.IsNull(engine.Evaluate("undefined")); + + engine.UndefinedImportValue = 123; + Assert.IsNull(engine.Evaluate("null")); + Assert.AreEqual(123, engine.Evaluate("undefined")); + } + + [TestMethod, TestCategory("JScriptEngine")] + public void JScriptEngine_ExposeStaticMembersOnHostObjects() + { + engine.Script.utf8 = Encoding.UTF8; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Undefined)); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ReferenceEquals"), typeof(Undefined)); + + engine.ExposeHostObjectStaticMembers = true; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Encoding)); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("utf8.ReferenceEquals(null, null)"))); + + engine.ExposeHostObjectStaticMembers = false; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Undefined)); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ReferenceEquals"), typeof(Undefined)); + } + + [TestMethod, TestCategory("JScriptEngine")] + public void JScriptEngine_DirectAccess_Normal() + { + engine.Script.test = new DirectAccessTestObject(); + engine.AddHostObject("daTest", HostItemFlags.DirectAccess, engine.Script.test); + + Assert.AreEqual("[HostObject:JScriptEngineTest.DirectAccessTestObject]", engine.ExecuteCommand("test")); + Assert.AreEqual("[HostObject:JScriptEngineTest.DirectAccessTestObject]", engine.ExecuteCommand("daTest")); + + Assert.AreEqual("123 456.789 qux", engine.Evaluate("test.Format('{0} {1} {2}', 123, 456.789, 'qux')")); + Assert.AreEqual("123 456.789 qux", engine.Evaluate("daTest.Format('{0} {1} {2}', 123, 456.789, 'qux')")); + + Assert.AreEqual(0, engine.Evaluate("test.Bogus(123.456)")); + Assert.AreEqual(0, engine.Evaluate("daTest.Bogus(123.456)")); + } + + [TestMethod, TestCategory("JScriptEngine")] + public void JScriptEngine_DirectAccess_ComVisible() + { + engine.Script.test = new ComVisibleTestObject(); + engine.AddHostObject("daTest", HostItemFlags.DirectAccess, engine.Script.test); + + Assert.AreEqual("[HostObject:JScriptEngineTest.ComVisibleTestObject]", engine.ExecuteCommand("test")); + Assert.AreNotEqual("[HostObject:JScriptEngineTest.ComVisibleTestObject]", engine.ExecuteCommand("daTest")); + + Assert.AreEqual("123 456.789 qux", engine.Evaluate("test.Format('{0} {1} {2}', 123, 456.789, 'qux')")); + Assert.AreEqual("123 456.789 qux", engine.Evaluate("daTest.Format('{0} {1} {2}', 123, 456.789, 'qux')")); + + Assert.AreEqual(0, engine.Evaluate("test.Bogus(123.456)")); + TestUtil.AssertException(() => engine.Evaluate("daTest.Bogus(123.456)")); + } + // ReSharper restore InconsistentNaming #endregion @@ -2676,6 +2743,33 @@ private static void PrivateStaticMethod() private delegate string TestDelegate(string pre, ref string value, int post); + public sealed class DirectAccessTestObject + { + public string Format(string format, object arg0 = null, object arg1 = null, object arg2 = null, object arg3 = null) + { + return MiscHelpers.FormatInvariant(format, arg0, arg1, arg2, arg3); + } + + public T Bogus(T arg) + { + return default(T); + } + } + + [ComVisible(true)] + public sealed class ComVisibleTestObject + { + public string Format(string format, object arg0 = null, object arg1 = null, object arg2 = null, object arg3 = null) + { + return MiscHelpers.FormatInvariant(format, arg0, arg1, arg2, arg3); + } + + public T Bogus(T arg) + { + return default(T); + } + } + // ReSharper restore UnusedMember.Local #endregion diff --git a/ClearScriptTest/JScriptModuleTest.cs b/ClearScriptTest/JScriptModuleTest.cs index c35fa9c7a..d648d7d3b 100644 --- a/ClearScriptTest/JScriptModuleTest.cs +++ b/ClearScriptTest/JScriptModuleTest.cs @@ -19,8 +19,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [DeploymentItem("JavaScript", "JavaScript")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] [SuppressMessage("ReSharper", "StringLiteralTypo")] diff --git a/ClearScriptTest/MemberAccessTest.cs b/ClearScriptTest/MemberAccessTest.cs index 86f88467a..1147e5ea7 100644 --- a/ClearScriptTest/MemberAccessTest.cs +++ b/ClearScriptTest/MemberAccessTest.cs @@ -18,8 +18,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class MemberAccessTest : ClearScriptTest { diff --git a/ClearScriptTest/Properties/AssemblyInfo.cs b/ClearScriptTest/Properties/AssemblyInfo.cs index cd64b5f4b..1fc859e2f 100644 --- a/ClearScriptTest/Properties/AssemblyInfo.cs +++ b/ClearScriptTest/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyVersion("6.0.1.0")] +[assembly: AssemblyFileVersion("6.0.1.0")] diff --git a/ClearScriptTest/PropertyBagTest.cs b/ClearScriptTest/PropertyBagTest.cs index 157d8c50e..11e9af463 100644 --- a/ClearScriptTest/PropertyBagTest.cs +++ b/ClearScriptTest/PropertyBagTest.cs @@ -19,8 +19,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class PropertyBagTest : ClearScriptTest { diff --git a/ClearScriptTest/ScriptAccessTest.cs b/ClearScriptTest/ScriptAccessTest.cs index 2e14243f7..3866e0756 100644 --- a/ClearScriptTest/ScriptAccessTest.cs +++ b/ClearScriptTest/ScriptAccessTest.cs @@ -18,8 +18,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class ScriptAccessTest : ClearScriptTest { diff --git a/ClearScriptTest/StaticMemberAccessTest.cs b/ClearScriptTest/StaticMemberAccessTest.cs index 1b74126e2..4c59840a4 100644 --- a/ClearScriptTest/StaticMemberAccessTest.cs +++ b/ClearScriptTest/StaticMemberAccessTest.cs @@ -17,8 +17,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class StaticMemberAccessTest : ClearScriptTest { diff --git a/ClearScriptTest/TypeRestrictionTest.cs b/ClearScriptTest/TypeRestrictionTest.cs index b76776e19..a12cc12c7 100644 --- a/ClearScriptTest/TypeRestrictionTest.cs +++ b/ClearScriptTest/TypeRestrictionTest.cs @@ -14,8 +14,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class TypeRestrictionTest : ClearScriptTest { diff --git a/ClearScriptTest/V8ArrayBufferOrViewTest.cs b/ClearScriptTest/V8ArrayBufferOrViewTest.cs index b8877b479..afe8f0725 100644 --- a/ClearScriptTest/V8ArrayBufferOrViewTest.cs +++ b/ClearScriptTest/V8ArrayBufferOrViewTest.cs @@ -18,8 +18,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class V8ArrayBufferOrViewTest : ClearScriptTest { diff --git a/ClearScriptTest/V8ModuleTest.cs b/ClearScriptTest/V8ModuleTest.cs index 10e7bf8e2..b7c41a030 100644 --- a/ClearScriptTest/V8ModuleTest.cs +++ b/ClearScriptTest/V8ModuleTest.cs @@ -19,8 +19,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [DeploymentItem("JavaScript", "JavaScript")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] public class V8ModuleTest : ClearScriptTest diff --git a/ClearScriptTest/V8ScriptEngineTest.cs b/ClearScriptTest/V8ScriptEngineTest.cs index 71a64b18d..3bc70df46 100644 --- a/ClearScriptTest/V8ScriptEngineTest.cs +++ b/ClearScriptTest/V8ScriptEngineTest.cs @@ -34,8 +34,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [DeploymentItem("JavaScript", "JavaScript")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] [SuppressMessage("ReSharper", "StringLiteralTypo")] @@ -1560,14 +1560,14 @@ public void V8ScriptEngine_MaxRuntimeHeapSize_Recovery() public void V8ScriptEngine_MaxRuntimeHeapSize_Dual() { const int limit = 4 * 1024 * 1024; - const string code = @"x = []; for (i = 0; i < 16 * 1024 * 1024; i++) { x.push(x); }"; + const string code = @"x = []; for (i = 0; i < 64 * 1024 * 1024; i++) { x.push(x); }"; engine.Execute(code); engine.CollectGarbage(true); var usedHeapSize = engine.GetRuntimeHeapInfo().UsedHeapSize; engine.Dispose(); - engine = new V8ScriptEngine { MaxRuntimeHeapSize = (UIntPtr)limit }; + engine = new V8ScriptEngine(V8ScriptEngineFlags.EnableDebugging) { MaxRuntimeHeapSize = (UIntPtr)limit }; TestUtil.AssertException(() => { @@ -3479,6 +3479,40 @@ public void V8ScriptEngine_ScriptArray() Assert.AreEqual("[]", JsonConvert.SerializeObject(engine.Evaluate("array"))); } + [TestMethod, TestCategory("V8ScriptEngine")] + public void V8ScriptEngine_UndefinedImportValue() + { + Assert.IsNull(engine.Evaluate("null")); + Assert.IsInstanceOfType(engine.Evaluate("undefined"), typeof(Undefined)); + + engine.UndefinedImportValue = null; + Assert.IsNull(engine.Evaluate("null")); + Assert.IsNull(engine.Evaluate("undefined")); + + engine.UndefinedImportValue = 123; + Assert.IsNull(engine.Evaluate("null")); + Assert.AreEqual(123, engine.Evaluate("undefined")); + } + + [TestMethod, TestCategory("V8ScriptEngine")] + public void V8ScriptEngine_ExposeStaticMembersOnHostObjects() + { + engine.Script.utf8 = Encoding.UTF8; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Undefined)); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ReferenceEquals"), typeof(Undefined)); + + engine.ExposeHostObjectStaticMembers = true; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Encoding)); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("utf8.ReferenceEquals(null, null)"))); + + engine.ExposeHostObjectStaticMembers = false; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Undefined)); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ReferenceEquals"), typeof(Undefined)); + } + // ReSharper restore InconsistentNaming #endregion diff --git a/ClearScriptTest/VBScriptEngineTest.cs b/ClearScriptTest/VBScriptEngineTest.cs index d3380b924..360df5bcd 100644 --- a/ClearScriptTest/VBScriptEngineTest.cs +++ b/ClearScriptTest/VBScriptEngineTest.cs @@ -12,6 +12,7 @@ using System.Linq; using System.Reflection; using System.Runtime.InteropServices; +using System.Text; using System.Threading; using System.Windows.Threading; using Microsoft.CSharp.RuntimeBinder; @@ -30,8 +31,8 @@ namespace Microsoft.ClearScript.Test [DeploymentItem("v8-ia32.dll")] [DeploymentItem("v8-base-x64.dll")] [DeploymentItem("v8-base-ia32.dll")] - [DeploymentItem("v8-libcpp-x64.dll")] - [DeploymentItem("v8-libcpp-ia32.dll")] + [DeploymentItem("v8-zlib-x64.dll")] + [DeploymentItem("v8-zlib-ia32.dll")] [DeploymentItem("VBScript", "VBScript")] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] [SuppressMessage("ReSharper", "StringLiteralTypo")] @@ -2760,6 +2761,75 @@ public void VBScriptEngine_EvaluateDocument_Script() } } + [TestMethod, TestCategory("VBScriptEngine")] + public void VBScriptEngine_UndefinedImportValue() + { + Assert.IsNull(engine.Evaluate("null")); + Assert.IsInstanceOfType(engine.Evaluate("empty"), typeof(Undefined)); + Assert.IsInstanceOfType(engine.Evaluate("nothing"), typeof(Undefined)); + + engine.UndefinedImportValue = null; + Assert.IsNull(engine.Evaluate("null")); + Assert.IsNull(engine.Evaluate("empty")); + Assert.IsNull(engine.Evaluate("nothing")); + + engine.UndefinedImportValue = 123; + Assert.IsNull(engine.Evaluate("null")); + Assert.AreEqual(123, engine.Evaluate("empty")); + Assert.AreEqual(123, engine.Evaluate("nothing")); + } + + [TestMethod, TestCategory("VBScriptEngine")] + public void VBScriptEngine_ExposeStaticMembersOnHostObjects() + { + engine.Script.utf8 = Encoding.UTF8; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + TestUtil.AssertException(() => engine.Evaluate("utf8.ASCII")); + TestUtil.AssertException(() => engine.Evaluate("utf8.ReferenceEquals")); + + engine.ExposeHostObjectStaticMembers = true; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Encoding)); + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("utf8.ReferenceEquals(null, null)"))); + + engine.ExposeHostObjectStaticMembers = false; + Assert.AreEqual("utf-8", engine.Evaluate("utf8.WebName")); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ASCII"), typeof(Undefined)); + Assert.IsInstanceOfType(engine.Evaluate("utf8.ReferenceEquals"), typeof(Undefined)); + } + + [TestMethod, TestCategory("VBScriptEngine")] + public void VBScriptEngine_DirectAccess_Normal() + { + engine.Script.test = new DirectAccessTestObject(); + engine.AddHostObject("daTest", HostItemFlags.DirectAccess, engine.Script.test); + + Assert.AreEqual("[HostObject:VBScriptEngineTest.DirectAccessTestObject]", engine.ExecuteCommand("eval test")); + Assert.AreEqual("[HostObject:VBScriptEngineTest.DirectAccessTestObject]", engine.ExecuteCommand("eval daTest")); + + Assert.AreEqual("123 456.789 qux", engine.Evaluate("test.Format(\"{0} {1} {2}\", 123, 456.789, \"qux\")")); + Assert.AreEqual("123 456.789 qux", engine.Evaluate("daTest.Format(\"{0} {1} {2}\", 123, 456.789, \"qux\")")); + + Assert.AreEqual(0, engine.Evaluate("test.Bogus(123.456)")); + Assert.AreEqual(0, engine.Evaluate("daTest.Bogus(123.456)")); + } + + [TestMethod, TestCategory("VBScriptEngine")] + public void VBScriptEngine_DirectAccess_ComVisible() + { + engine.Script.test = new ComVisibleTestObject(); + engine.AddHostObject("daTest", HostItemFlags.DirectAccess, engine.Script.test); + + Assert.AreEqual("[HostObject:VBScriptEngineTest.ComVisibleTestObject]", engine.ExecuteCommand("eval test")); + Assert.AreNotEqual("[HostObject:VBScriptEngineTest.ComVisibleTestObject]", engine.ExecuteCommand("eval daTest")); + + Assert.AreEqual("123 456.789 qux", engine.Evaluate("test.Format(\"{0} {1} {2}\", 123, 456.789, \"qux\")")); + Assert.AreEqual("123 456.789 qux", engine.Evaluate("daTest.Format(\"{0} {1} {2}\", 123, 456.789, \"qux\")")); + + Assert.AreEqual(0, engine.Evaluate("test.Bogus(123.456)")); + TestUtil.AssertException(() => engine.Evaluate("daTest.Bogus(123.456)")); + } + // ReSharper restore InconsistentNaming #endregion @@ -2908,6 +2978,33 @@ private static void PrivateStaticMethod() private delegate string TestDelegate(string pre, ref string value, int post); + public sealed class DirectAccessTestObject + { + public string Format(string format, object arg0 = null, object arg1 = null, object arg2 = null, object arg3 = null) + { + return MiscHelpers.FormatInvariant(format, arg0, arg1, arg2, arg3); + } + + public T Bogus(T arg) + { + return default(T); + } + } + + [ComVisible(true)] + public sealed class ComVisibleTestObject + { + public string Format(string format, object arg0 = null, object arg1 = null, object arg2 = null, object arg3 = null) + { + return MiscHelpers.FormatInvariant(format, arg0, arg1, arg2, arg3); + } + + public T Bogus(T arg) + { + return default(T); + } + } + #endregion } diff --git a/NetCore/ClearScript/ClearScript.csproj b/NetCore/ClearScript/ClearScript.csproj index c96310fee..694f11dbf 100644 --- a/NetCore/ClearScript/ClearScript.csproj +++ b/NetCore/ClearScript/ClearScript.csproj @@ -121,6 +121,7 @@ + @@ -133,6 +134,7 @@ + diff --git a/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj b/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj index a705af8f2..014bbe851 100644 --- a/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj +++ b/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj @@ -125,10 +125,10 @@ Document - + Document - + Document diff --git a/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters b/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters index 90d0e6018..cc03bf7fe 100644 --- a/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters +++ b/NetCore/ClearScript/V8/ClearScriptV8/32/ClearScriptV8-32.vcxproj.filters @@ -11,8 +11,8 @@ - - + + diff --git a/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj b/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj index e3b36421e..0efe70e2d 100644 --- a/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj +++ b/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj @@ -76,9 +76,11 @@ 4564 false + -d2FH4- %(AdditionalOptions) $(SolutionDir)ClearScript\V8\V8\lib\v8-x64.dll.lib + -d2:-FH4- %(AdditionalOptions) $(SolutionDir)\ClearScript\Exports @@ -102,12 +104,14 @@ AnySuitable Speed true + -d2FH4- %(AdditionalOptions) true true $(SolutionDir)ClearScript\V8\V8\lib\v8-x64.dll.lib UseLinkTimeCodeGeneration + -d2:-FH4- %(AdditionalOptions) $(SolutionDir)\ClearScript\Exports @@ -120,10 +124,10 @@ Document - + Document - + Document diff --git a/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters b/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters index fe82271da..f4f14fcb8 100644 --- a/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters +++ b/NetCore/ClearScript/V8/ClearScriptV8/64/ClearScriptV8-64.vcxproj.filters @@ -203,8 +203,8 @@ - - + + diff --git a/NuGet/files/build/net45/Microsoft.ClearScript.targets b/NuGet/files/build/net45/Microsoft.ClearScript.targets index 592ff5782..bcd3945d1 100644 --- a/NuGet/files/build/net45/Microsoft.ClearScript.targets +++ b/NuGet/files/build/net45/Microsoft.ClearScript.targets @@ -9,8 +9,8 @@ ClearScriptV8-64.dll PreserveNewest - - v8-libcpp-ia32.dll + + v8-zlib-ia32.dll PreserveNewest @@ -21,8 +21,8 @@ v8-ia32.dll PreserveNewest - - v8-libcpp-x64.dll + + v8-zlib-x64.dll PreserveNewest diff --git a/NuGet/files/build/netcoreapp3.1/Microsoft.ClearScript.targets b/NuGet/files/build/netcoreapp3.1/Microsoft.ClearScript.targets index 7cef86f67..729717da0 100644 --- a/NuGet/files/build/netcoreapp3.1/Microsoft.ClearScript.targets +++ b/NuGet/files/build/netcoreapp3.1/Microsoft.ClearScript.targets @@ -9,8 +9,8 @@ ClearScriptV8-64.dll PreserveNewest - - v8-libcpp-ia32.dll + + v8-zlib-ia32.dll PreserveNewest @@ -21,8 +21,8 @@ v8-ia32.dll PreserveNewest - - v8-libcpp-x64.dll + + v8-zlib-x64.dll PreserveNewest diff --git a/RunNetCoreTests.cmd b/RunNetCoreTests.cmd new file mode 100644 index 000000000..c45919982 --- /dev/null +++ b/RunNetCoreTests.cmd @@ -0,0 +1,4 @@ +"%ProgramFiles(x86)%\dotnet\dotnet.exe" test --no-build --no-restore -c Debug -v d NetCore\ClearScriptTest\ClearScriptTest.csproj +"%ProgramFiles(x86)%\dotnet\dotnet.exe" test --no-build --no-restore -c Release -v d NetCore\ClearScriptTest\ClearScriptTest.csproj +"%ProgramFiles%\dotnet\dotnet.exe" test --no-build --no-restore -c Debug -v d NetCore\ClearScriptTest\ClearScriptTest.csproj +"%ProgramFiles%\dotnet\dotnet.exe" test --no-build --no-restore -c Release -v d NetCore\ClearScriptTest\ClearScriptTest.csproj diff --git a/V8Update.cmd b/V8Update.cmd index ef8545f28..a345179ae 100644 --- a/V8Update.cmd +++ b/V8Update.cmd @@ -5,7 +5,7 @@ setlocal :: process arguments ::----------------------------------------------------------------------------- -set v8testedrev=7.9.317.32 +set v8testedrev=8.1.307.28 :ProcessArgs @@ -178,14 +178,14 @@ call git config user.email "ClearScript@microsoft.com" if errorlevel 1 goto Error call git apply --reject --ignore-whitespace ..\..\V8Patch.txt 2>applyV8Patch.log if errorlevel 1 goto Error -cd buildtools +cd third_party\zlib call git config user.name ClearScript if errorlevel 1 goto Error call git config user.email "ClearScript@microsoft.com" if errorlevel 1 goto Error -call git apply --reject --ignore-whitespace ..\..\..\BuildToolsPatch.txt 2>..\applyBuildToolsPatch.log +call git apply --reject --ignore-whitespace ..\..\..\..\ZlibPatch.txt 2>..\..\applyZlibPatch.log if errorlevel 1 goto Error -cd .. +cd ..\.. cd .. :ApplyPatchesDone @@ -197,24 +197,24 @@ cd .. :Build -:CreatePatchFiles -echo Creating patch files ... +:CreatePatches +echo Creating/updating patches ... cd v8 call git diff --ignore-space-change --ignore-space-at-eol >V8Patch.txt 2>createV8Patch.log if errorlevel 1 goto Error -cd buildtools -call git diff --ignore-space-change --ignore-space-at-eol >..\BuildToolsPatch.txt 2>..\createBuildToolsPatch.log +cd third_party\zlib +call git diff --ignore-space-change --ignore-space-at-eol >..\..\ZlibPatch.txt 2>..\..\createZlibPatch.log if errorlevel 1 goto Error +cd ..\.. cd .. -cd .. -:CreatePatchFilesDone +:CreatePatchesDone :Build32Bit echo Building 32-bit V8 ... cd v8 call "%VSINSTALLDIR%\VC\Auxiliary\Build\vcvarsall" x86 >nul if errorlevel 1 goto Error -call gn gen out\ia32\%mode% --args="fatal_linker_warnings=false is_component_build=true is_debug=%isdebug% is_official_build=%isofficial% target_cpu=\"x86\" v8_enable_i18n_support=false v8_target_cpu=\"x86\" v8_use_external_startup_data=false enable_precompiled_headers=false" >gn.log +call gn gen out\ia32\%mode% --args="enable_precompiled_headers=false fatal_linker_warnings=false is_component_build=true is_debug=%isdebug% is_official_build=%isofficial% target_cpu=\"x86\" use_custom_libcxx=false v8_embedder_string=\"-ClearScript\" v8_enable_i18n_support=false v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_target_cpu=\"x86\" v8_use_external_startup_data=false" >gn-ia32.log if errorlevel 1 goto Error ninja -C out\ia32\%mode% v8-ia32.dll >build-ia32.log if errorlevel 1 goto Error @@ -226,7 +226,7 @@ echo Building 64-bit V8 ... cd v8 call "%VSINSTALLDIR%\VC\Auxiliary\Build\vcvarsall" x64 >nul if errorlevel 1 goto Error -call gn gen out\x64\%mode% --args="fatal_linker_warnings=false is_component_build=true is_debug=%isdebug% is_official_build=%isofficial% target_cpu=\"x64\" v8_enable_i18n_support=false v8_target_cpu=\"x64\" v8_use_external_startup_data=false enable_precompiled_headers=false" >gn.log +call gn gen out\x64\%mode% --args="enable_precompiled_headers=false fatal_linker_warnings=false is_component_build=true is_debug=%isdebug% is_official_build=%isofficial% target_cpu=\"x64\" use_custom_libcxx=false v8_embedder_string=\"-ClearScript\" v8_enable_i18n_support=false v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_target_cpu=\"x64\" v8_use_external_startup_data=false" >gn-x64.log if errorlevel 1 goto Error ninja -C out\x64\%mode% v8-x64.dll >build-x64.log if errorlevel 1 goto Error @@ -255,9 +255,9 @@ if errorlevel 1 goto Error :ImportLibs echo Importing V8 libraries ... -copy build\v8\out\ia32\%mode%\v8-libcpp-ia32.dll lib\ >nul +copy build\v8\out\ia32\%mode%\v8-zlib-ia32.dll lib\ >nul if errorlevel 1 goto Error -copy build\v8\out\ia32\%mode%\v8-libcpp-ia32.dll.pdb lib\ >nul +copy build\v8\out\ia32\%mode%\v8-zlib-ia32.dll.pdb lib\ >nul if errorlevel 1 goto Error copy build\v8\out\ia32\%mode%\v8-base-ia32.dll lib\ >nul if errorlevel 1 goto Error @@ -269,9 +269,9 @@ copy build\v8\out\ia32\%mode%\v8-ia32.dll.pdb lib\ >nul if errorlevel 1 goto Error copy build\v8\out\ia32\%mode%\v8-ia32.dll.lib lib\ >nul if errorlevel 1 goto Error -copy build\v8\out\x64\%mode%\v8-libcpp-x64.dll lib\ >nul +copy build\v8\out\x64\%mode%\v8-zlib-x64.dll lib\ >nul if errorlevel 1 goto Error -copy build\v8\out\x64\%mode%\v8-libcpp-x64.dll.pdb lib\ >nul +copy build\v8\out\x64\%mode%\v8-zlib-x64.dll.pdb lib\ >nul if errorlevel 1 goto Error copy build\v8\out\x64\%mode%\v8-base-x64.dll lib\ >nul if errorlevel 1 goto Error @@ -285,12 +285,12 @@ copy build\v8\out\x64\%mode%\v8-x64.dll.lib lib\ >nul if errorlevel 1 goto Error :ImportLibsDone -:ImportPatchFiles -echo Importing patch files ... +:ImportPatches +echo Importing patches ... copy build\v8\V8Patch.txt .\ >nul -copy build\v8\BuildToolsPatch.txt .\ >nul +copy build\v8\ZlibPatch.txt .\ >nul if errorlevel 1 goto Error -:ImportPatchFilesDone +:ImportPatchesDone :ImportDone diff --git a/Version.tt b/Version.tt index 497c7acdc..a92013833 100644 --- a/Version.tt +++ b/Version.tt @@ -1 +1 @@ -<# var version = new Version(6, 0, 0, 0); #> +<# var version = new Version(6, 0, 1, 0); #> diff --git a/docs/Details/Build.html b/docs/Details/Build.html index 6d8a058ca..706533554 100644 --- a/docs/Details/Build.html +++ b/docs/Details/Build.html @@ -325,16 +325,16 @@

3.       Important: The V8 build now requires a 64-bit -operating system. Your Visual Studio installation must include the .NET -desktop development and Desktop development with C++ workloads. Once -built, ClearScript can still be deployed in a 32-bit environment.

+style='color:red'>Important:
The V8 build now requires a 64-bit operating +system. Your Visual Studio installation must include the .NET desktop +development and Desktop development with C++ workloads. Once built, +ClearScript can still be deployed in a 32-bit environment.

4.       Important: Your Windows SDK installation must -include the Debugging Tools for Windows feature. Here’s how to add it to -your installation:

+style='color:red'>Important: Your Windows SDK installation must include +the Debugging Tools for Windows feature. Here’s how to add it to your +installation:

a.       Launch @@ -396,10 +396,10 @@

Note: The first time you open the solution, Visual Studio may prompt you to upgrade one or more projects to the latest platform toolset or .NET Framework. We -recommend that you select Cancel or Don't Upgrade. If you encounter -issues building ClearScript’s unmanaged projects (ClearScriptV8-32 and ClearScriptV8-64), +recommend that you select Cancel or Don't Upgrade. If you +encounter issues building ClearScript’s unmanaged projects (ClearScriptV8-32 +and ClearScriptV8-64), ensure that their Windows SDK Version properties are set to an installed version of the Windows SDK.

@@ -416,9 +416,9 @@

ClearScript now includes optional -support for building strong-named assemblies. Use the following one-time -procedure to enable this feature:

+

ClearScript now includes optional support +for building strong-named assemblies. Use the following one-time procedure to +enable this feature:

1.       If @@ -497,11 +497,11 @@

v8-libcpp-ia32.dll

+style='font-size:10.0pt;line-height:115%;font-family:Consolas;color:black'>v8-zlib-ia32.dll

v8-libcpp-x64.dll

+line-height:115%;font-family:Consolas;color:black'>v8-zlib-x64.dll

For ASP.NET projects, we recommend that you add these assemblies as content files at the @@ -729,6 +729,15 @@

4.       You +can add the flag V8ScriptEngineFlags.AwaitDebuggerAndPauseOnStart +to have the script engine stop and wait for a debugger connection before +executing script code. Once attached, the debugger will be in a breakpoint +state.

+ +

5.       If you’d like to debug your application remotely, you must also do the following:

@@ -743,7 +752,7 @@

Important: If necessary, configure your firewall to allow incoming connections to your TCP port.

-

5.6.       Attach the Visual Studio Code debugger to your application:

diff --git a/docs/Reference/WebKI.xml b/docs/Reference/WebKI.xml index 2e17d4fcc..9cff3bdce 100644 --- a/docs/Reference/WebKI.xml +++ b/docs/Reference/WebKI.xml @@ -251,6 +251,7 @@ + @@ -304,8 +305,8 @@ - + @@ -751,6 +752,7 @@ + @@ -760,6 +762,7 @@ + @@ -890,9 +893,12 @@ + + + @@ -1010,7 +1016,10 @@ - + + + + diff --git a/docs/Reference/WebTOC.xml b/docs/Reference/WebTOC.xml index 2159d7aa3..71ce1c586 100644 --- a/docs/Reference/WebTOC.xml +++ b/docs/Reference/WebTOC.xml @@ -1,22 +1,22 @@  - - + + - - + + - + - + - + @@ -24,20 +24,20 @@ - - + + - - + + - + @@ -48,20 +48,20 @@ - + - + - + - + - + @@ -69,8 +69,8 @@ - - + + @@ -78,27 +78,27 @@ - - + + - - + + - + - + - + - + @@ -106,45 +106,45 @@ - - - + + + - + - + - + - + - + - + - + - + @@ -153,12 +153,12 @@ - + - + @@ -176,20 +176,20 @@ - + - - + + - - + + @@ -197,14 +197,14 @@ - - + + - + @@ -213,22 +213,22 @@ - + - + - - + + - - + + @@ -239,27 +239,27 @@ - + - + - - + + - + - + @@ -268,17 +268,17 @@ - + - - + + - + @@ -290,14 +290,16 @@ + + - - + + @@ -307,7 +309,7 @@ - + @@ -317,11 +319,11 @@ - + - + @@ -331,34 +333,34 @@ - + - + - + - + - + - + @@ -369,48 +371,48 @@ - - + + - + - + - - + + - + - + - - + + @@ -420,112 +422,115 @@ - + - - + + - + - - + + - + - + - - + + - + - + - + - - + + + + + - + - - - + + + - + - - + + - + - + - - + + - + - + - - - + + + @@ -533,30 +538,30 @@ - - + + - + - - + + - + - - + + @@ -570,23 +575,23 @@ - + - + - - + + - - + + @@ -600,7 +605,7 @@ - + @@ -609,14 +614,14 @@ - - + + - + @@ -627,7 +632,7 @@ - + @@ -638,7 +643,7 @@ - + @@ -651,9 +656,9 @@ - + - + @@ -662,8 +667,8 @@ - - + + @@ -672,17 +677,17 @@ - - + + - + - - + + @@ -696,7 +701,7 @@ - + @@ -706,14 +711,14 @@ - - + + - + @@ -724,7 +729,7 @@ - + @@ -735,14 +740,14 @@ - + - + - + @@ -753,22 +758,22 @@ - - - + + + - + - - + + - - + + @@ -776,23 +781,23 @@ - + - + - - + + - + - - + + @@ -800,27 +805,27 @@ - + - + - - + + - + - + - + diff --git a/docs/Reference/fti/FTI_100.json b/docs/Reference/fti/FTI_100.json index b1d03ad58..032e71af0 100644 --- a/docs/Reference/fti/FTI_100.json +++ b/docs/Reference/fti/FTI_100.json @@ -1 +1 @@ -{"documentflags":[24444929,33423367,39387141],"documentname":[13565957,14614533,14680069,15859717,18219013,20054021,20250629,21692421,23265285,25559045],"dictionary":[5308418,6029317,6750212],"dump":[9306113],"donotenablevtablepatching":[42729473],"describing":[29687809,37224449,41025537],"data":[393217,524289,2293761,3211265,6094860,7602188,10616834,11796482,15007746,15335426,17104900,17367044,18219012,18743300,18808836,19005444,19070980,19333124,19988484,20054020,20250628,20381700,20578308,20774916,21102596,21495812,21561348,22216708,22347780,22478852,23330820,23789572,24510468,25559044,26017793,26148870,28835846,29294598,29556737,30081025,30408705,32374790,32899073,38273025,38993926,40304644,41091076,42139660,42401804],"documentcategory":[458755,851970,3801092,3866630,3932165,4194310,4325382,4456452,4587524,4653060,6094854,7602186,13959174,15269894,15466502,16777222,17104902,17891334,18612230,18743302,18939910,19070982,19660806,20381702,20578310,21561350,21626882,22347782,22478854,24444929,24641538,25690115,25886722,29294598,30146568,30736390,31260679,31653894,32374790,36044802,37617671,38404100,40828932,41811972,42139658,42401798,42532868],"discarded":[12320769,13500417,14614529,15859713,39387137],"deleteproperty":[2424834,15073286,16187398,27918339,41943042],"detailed":[29425665,29491201,29556737,30408705,34144257,35979265,40304641,41091073,42467329],"debugport":[16973829,17498117,19136517,19267589,19529733,19857413,19922949,20119557,21823493,24117253],"dimensions":[4521985],"defined":[4718593,5963777,13303809,13565953,22151169,26869761,29556737,30408705,38731777,40304641,41091073],"defines":[6356993,6488065,24444937,25427972,26673156,27394049,36175873,36634625,38928385,38993921,39387137,39583745,40370177,40501249,41484289,41746433,41877505,42205185,42270721,42467329,42729473,42795009,43057153,43122689],"directaccess":[43057153],"decrement":[2424833,41943041],"debugging":[16973826,18874370,19857410,21757954,26869761,30867457,34078721,38928386,42270722,42729474],"decimal":[4128769,4784129,6881286,41680897,42729473,42926081],"defaultarg":[4521985,4849665,5308417,6750209,9306113],"dummy":[42663937],"downloaded":[36634625],"dispatches":[2424833,41943041],"debug":[6094850,16973825,17498113,19136513,19267585,19529729,19857409,19922945,20119553,21823489,24117249,25362436,33488898,34406404,42139652,42401798],"disablesourcemanagement":[42729473],"dataview":[25427969,42991617],"disabled":[16842753,32178177,35848193,39911425,42270721,42729473],"debugger":[12320769,13500417,13565954,13631489,14614530,14680066,15859714,16384001,16973826,17498113,17629185,17956865,18153473,18219009,18546689,18874370,19136513,19267586,19529730,19595265,19857411,19922946,20054017,20119553,20250625,20643841,20971521,21692417,21757953,21823489,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23265281,23920641,24117250,25100289,25493505,25559041,26476545,42270721],"depends":[30801921],"downloadstring":[9306113],"documen":[3670017,3866625,4325377,4390913,18350081,24969217,26607619,27459585,28639233,30081025,31260673,33619969,34340865,35913729,40108035,42336257],"disposing":[12713991,21364744,25821192],"dispose":[2818049,3801090,4456451,4587522,4653058,6094849,6488066,7602179,9306113,11534347,12713994,17235978,21364747,24379395,25165833,25821195,28114948,30343172,38404098,40566785,40828930,41811970,42139651,42401793,42532867],"documentloadcallback":[24444929,33751047,40632325],"delimited":[13631489,23003137,23199745,26476545,27852801,28049410,32636929,36044802],"distinction":[12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217],"delegates":[24444929,27131905,27787265,27983873,28508161,29884417,34209794,38404097,40828929,41811969,42139650,42532866],"destinationindex":[9043973,11075589,12910597],"del":[4128769,4784129,5570561,5898246,41680897,42926081],"dimension":[7077889,7929857],"direct":[43057153],"documentinfo":[786435,3473415,3735559,3801090,3932165,4194310,4456450,4587522,4653058,6094851,7602181,12124171,15728651,16056331,18350085,20185099,21102604,21168134,21495820,23330828,23592961,23789580,24248321,24444929,25296897,26148867,26607619,26738689,27656194,28639234,28835843,31195142,31260674,31457281,32243714,33423362,34340866,34603015,38404098,38535173,38666251,39452676,40108042,40566785,40632325,40828930,41811970,42139653,42401795,42532866],"dynamically":[32833537,36306945,38600705],"description":[196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,1048577,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,5046273,6094849,6750209,7602177,21168129,21626881,22544385,22609921,22675457,23068673,23461889,23527425,23592961,23724033,23986177,24051713,24182785,24248321,24313857,24379393,24444933,24641537,24838145,24903681,24969217,25034753,25231361,25296897,25362433,25427970,25624577,25690113,25755649,25886721,25952257,26017793,26083329,26148865,26214401,26345473,26411009,26542081,26607617,26673155,26738689,26804225,26935297,27000833,27066369,27131905,27328513,27394051,27459585,27525121,27590657,27787265,27918337,27983873,28049409,28114945,28246017,28311553,28377089,28442625,28508161,28573697,28770305,28835841,28901377,29032449,29294593,29360129,29425665,29556737,29687809,29884417,29949953,30015489,30277633,30343169,30408705,30474241,30605313,30932993,30998529,31064065,31391745,31457281,31522817,31981569,32047105,32374785,32505857,32702465,32899073,33095681,33357825,33488897,34406401,34537473,35389441,35454977,35913731,36044803,36175874,36634625,37486594,37617666,37748737,38076419,38141953,38273025,38404099,38731780,38928385,38993921,39256065,39321601,39387137,39583745,39714819,39780354,39976962,40108035,40304644,40370177,40501249,40566786,40763395,40828931,40960003,41025538,41091076,41156611,41222146,41287683,41353218,41418755,41484289,41549828,41615362,41680898,41746433,41811971,41877505,41943042,42008579,42074114,42139651,42205185,42270721,42336259,42401795,42467329,42532867,42598402,42663937,42729473,42795010,42860546,42926082,42991618,43057153,43122689],"disposes":[6488065],"dialogs":[2686977,26279938,27131905,27394049,27983873,28770305,29884417,37814273,40173569,40828929,41811969,42532865,42860547],"drives":[4849666],"demonstrates":[5898241,6750209,7143425,7340033,8585217,9306113],"declared":[31850497,41484289,42729473],"dynamic":[2424845,4128779,4784139,5636099,5767171,6422532,6553604,6619140,6684675,6815747,7667713,7733252,7798787,7864323,8060933,13565953,14942209,22544386,25755649,26804226,28573698,38928385,41680907,41943054,42074113,42270721,42926091,43057153],"date":[42270722,42729474],"deeply":[37093377],"disableglobalmembers":[42270721],"documentloader":[720899,3538946,3932162,4194306,4259846,24444929,27328515,29753352,34668551,41156617],"dict":[5308420,6029314,6750212],"disconnect":[1769473,4063237,37748737],"directly":[2424833,6029313,27131905,27787265,27983873,28508161,29884417,32833537,36306945,38404097,38600705,40828929,41811969,41943041,42139649,42532865],"details":[14942209,16121857,17039361],"disconnects":[1769473,4063233,37748737],"defaultscriptusageattribute":[917507,3407879,5111815,24444929,26083329,28246022,29163522,29622273,30015491,40763403,40960006],"declare":[34013185],"document":[327683,720898,851974,3473410,3670035,3735554,3801102,3866631,3932176,3997702,4194321,4325382,4390917,4456462,4587534,4653070,6094863,7602205,9306113,12124162,12320770,13107203,13500418,13565958,13959172,14548995,14614532,14680070,15269893,15466500,15728642,15859716,16056322,16711682,16777221,17104900,17367042,17760258,17891331,18219010,18350081,18612227,18743300,18939908,19005442,19070980,19333122,19660804,20054018,20185090,20250626,20381699,20578307,21102594,21168130,21495810,21561348,21626886,21692418,22347779,22478851,23265282,23330818,23592964,23789570,24248324,24444940,24510466,24641539,24969221,25296900,25427969,25559042,25690113,25886723,26148870,26607619,26738690,27131905,27328513,27459589,27656193,27787265,27983873,28049412,28508161,28835846,28966915,29294601,29687810,29753345,29884417,30081027,30146561,30539777,30736385,31195139,31457284,31522817,31588353,31653889,32243713,32374793,32571393,32768001,33423361,33751041,34340866,34603009,34668545,35389442,35913740,36044812,36634626,37617666,38404111,38535171,38666241,39387138,39452673,39845889,40108038,40370179,40435713,40566786,40632323,40828943,40894465,41025538,41156612,41811983,42139678,42336268,42401808,42532879,42729473],"dictt":[5308418,6029314],"datetime":[39714817,42270722,42729473],"discarding":[3801090,4456450,4587522,4653058,7602178,13565954,14680066,23592961,24248321,25296897,31457281,38404098,40828930,41811970,42139650,42532866],"delegating":[5898241,7340033,8585217],"delete":[2424834,41943042],"delegate":[2424833,4128772,4784131,5832709,5898245,7340037,8585221,24444929,27525122,35586049,37748737,38535173,39256065,40042501,40632325,41680899,41943041,42926084],"destination":[9043974,10616833,11075590,11796481,12910598,15007745,15335425],"disablelistindextyperestriction":[27131905,27787265,27983873,28508161,29884417,30801925,38404097,40828929,41811969,42139649,42532865],"dynamicobject":[2424855,41943068],"documentcontextcallback":[851969,3801090,3866630,3932165,4194310,4456450,4587522,4653058,6094851,7602181,15269894,16777222,17104902,18743302,18939910,19070982,19660806,21561350,21626881,24444929,24641537,25886721,29294595,31588359,32243719,32374787,36044801,38404098,38535173,40828930,41811970,42139653,42401795,42532866],"download":[9306113],"datetimeoffset":[39714817],"displaying":[28770305,40173569,42860545],"different":[16973825,18874369,19857409,21757953,33030145,42532865],"disables":[2686977,26279937,27131911,27787273,27983879,28508167,28901377,29884423,30801921,30867457,31522817,31850497,32178177,33816577,34078721,34209793,35717121,36438017,36896769,37879809,38404103,40828935,41811975,42139657,42401793,42532871,42860545,43122689],"describes":[29556737,30408705,40304641,41091073],"disposable":[6488067],"disabletyperestriction":[27131905,27787265,27983873,28508161,29884417,30801921,31850501,38404097,40828929,41811969,42139649,42532865],"double":[4128769,4784129,8126470,13565953,37486593,41680897,42926081],"derived":[917507,1441795,1703939,1900547,1966083,2293761,2424841,3145731,3211265,26083329,26411009,26935297,30015489,30605313,31391745,39714820,40304641,40763396,40960004,41091073,41287684,41418756,41943049,42008580],"dispatcher":[27131906,27983874,29884418,36962316,40828930,41811970,42532867],"dimensional":[14942209],"discards":[720897,3538945,41156609],"determines":[327681,458753,720897,851969,1769473,1835009,2031618,2097153,2162690,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3211265,3276801,3342337,3801089,4128773,4456450,4587522,4653058,4784133,5046274,5701633,6094849,6225921,6356994,6946817,7602177,11599873,22675458,23855105,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731778,39256065,39780353,39976961,40304641,40566785,40828930,41025537,41091073,41156609,41222145,41549826,41615361,41680901,41811970,41943041,42074114,42139649,42336257,42401793,42532866,42663937,42926085],"discard":[13565958,14680070],"disable":[16973825,18874369,19857409,21757953],"determine":[36241409],"documents":[720897,3538945,3670018,3866626,4325378,4390914,27852801,28049409,36044801,36634627,41156609],"dynamicmetaobject":[2424834,41943042],"default":[1,327681,458753,720897,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3145729,3211265,3276801,3342337,3407874,3801091,4128769,4456451,4587523,4653059,4784129,6094849,7602179,11468801,12058625,24444930,25952258,26083329,27131905,27328514,27787265,27983873,28246017,28508161,29163521,29622273,29753350,29884417,30015489,31850498,32178177,33030145,33554434,33816577,34340865,34471937,35127298,35586049,35848193,35913729,36044801,36438017,36569090,36634625,36765697,36896769,37617665,37748737,37879809,38076417,38273025,38338561,38404100,38731777,39059457,39256065,39714817,39780353,39911425,39976961,40304641,40566785,40763395,40828932,40960003,41025537,41091073,41156611,41222145,41287681,41418753,41549826,41615361,41680897,41746433,41811972,41943041,42008577,42139652,42336257,42401793,42532868,42663937,42926081],"dll":[655361,983041,1114113,1179649,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4194305,4259841,4325377,4390913,4521985,4718593,4849665,4915201,4980737,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23658497,23789569,23855105,23920641,24117249,24510465,24576001,24707073,24772609,25100289,25165825,25493505,25559041,25821185,26279937,26476545,26869761,27197441,27262977,27656193,27721729,27852801,28180481,28639233,28704769,28966913,29163521,29229057,29491201,29622273,29753345,29818881,30081025,30146561,30212097,30539777,30670849,30736385,30801921,30867457,31129601,31195137,31260673,31326209,31588353,31653889,31719425,31784961,31850497,31916033,32112641,32178177,32243713,32309249,32440321,32571393,32636929,32768001,32833537,32964609,33030145,33161217,33226753,33292289,33423361,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"discardcacheddocuments":[720897,3538950,41156609],"documentsettings":[851971,3604486,3670018,3866626,3932165,4194310,4325378,4390914,21626882,24444929,27131905,27787265,27852802,27983873,28049411,28508161,29884417,30539778,31522817,31588354,32636930,32768012,33751042,34668546,36044809,38404097,39845900,40828929,41811969,42139649,42401793,42532865],"deprecated":[32178177],"directory":[27852801,28049409,36044801],"display":[27131905,27394049,27983873,29884417,37814273,40828929,41811969,42532865,42860545],"defaults":[4521985,4849665,5308417,6750209,9306113,24444929,40763393],"defaultaccess":[27131905,27787265,27983873,28508161,29622277,29884417,38404097,40828929,41811969,42139649,42532865],"documentaccessflags":[24444929,30539783,36634629]} \ No newline at end of file +{"documentsettings":[917507,3932162,3997702,4063234,4259845,4456454,4521986,5177346,22085634,23068673,27328515,28770305,29622274,29818882,30212097,30539778,30867458,31260673,31588353,31719426,31981569,32440322,34734081,36306956,36503564,39845897,41418753,41615361,41877505,42139649,42991617,43384833],"declared":[35323905,39452673,42401793],"default":[1,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3735554,4325379,4653059,4718595,5046273,5505027,5701635,12189697,16908289,21757953,23068674,24969218,28180481,28770305,29163522,29360134,29425665,29753345,30212097,31391745,31588353,31981569,32636929,33554434,34144257,34734081,35323906,35520513,35717121,35979265,36175873,36700161,36896769,36962305,37027841,37093377,37421057,37683201,37748739,38010881,38797313,38862850,39059457,39124993,39256066,39845889,39911425,40108033,40173570,40304641,40435713,40501249,40697857,40763393,40828931,41025537,41091073,41156609,41287681,41353217,41418756,41549827,41615364,41746433,41811969,41877508,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991620,43057153,43253761,43384836],"disconnect":[655361,4587525,41746433],"disables":[3473409,21495809,27787265,28770311,29753345,30212103,31260673,31588361,31981575,32636929,34668545,34734087,34865153,35323905,36962305,37027841,37158913,37683201,37945345,38273025,41418759,41615367,41877511,42074113,42139649,42991625,43319297,43384839],"details":[14811137,15728641,16646145],"destinationindex":[10289157,10682373,10813445],"delimited":[14548993,22478849,23461889,24903681,27328514,29622273,30867457,39845890],"dimension":[6684673,6750209],"disablelistindextyperestriction":[28770305,30212097,31588353,31981569,34734081,34865157,41418753,41615361,41877505,42991617,43384833],"disposing":[14286855,20709384,23003144],"documentcontextcallback":[917505,3342339,3997702,4259845,4325378,4521990,4653061,4718594,5505026,5701634,13828102,14024710,16842758,18284550,19267590,19791878,20840454,22085633,23068673,25427969,25755654,26411009,27525123,29294595,29818887,35454983,39845889,41222149,41418754,41615362,41877506,42139651,42991621,43384834],"donotenablevtablepatching":[42401793],"dll":[393217,1114113,1245185,1310721,1441793,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4259841,4390913,4456449,4521985,4587521,4784129,4849665,4915201,4980737,5111809,5177345,5242881,5308417,5373953,5439489,5570561,5636097,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21823489,21889025,21954561,22020097,22282241,22347777,22413313,22478849,22544385,22609921,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23789569,23855105,24051713,24182785,24248321,24379393,24510465,24903681,25100289,25690113,25755649,25821185,25952257,26148865,26804225,26869761,27394049,28114945,28508161,28573697,29360129,29425665,29622273,29753345,29818881,30474241,30539777,30605313,30670849,30867457,31195137,31326209,31457281,31522817,31653889,31719425,31784961,31916033,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"debug":[3342338,18022401,18612225,18743297,19202049,19988481,20054017,21954561,23396353,23789569,25821185,26214404,27459588,28311554,42139654,42991620],"depends":[34865153],"dummy":[43253761],"date":[42401794,43188226],"disablesourcemanagement":[42401793],"defaultarg":[4784129,4849665,5111809,5242881,7012353,9895937],"documentinfo":[262147,3342339,3604487,3866631,3997702,4259845,4325378,4653061,4718594,5505026,5701634,13893643,15794181,16187403,16384011,17956876,18481164,19529739,22151174,23068673,24444929,24510476,24576001,25886723,26148876,26279937,26476545,28049411,28442627,30146561,32309254,34340871,34930690,35454978,36110340,36372482,37093378,37617666,38338562,38404107,40632330,40960005,41222149,41418754,41615362,41877506,41943041,42139651,42991621,43384834],"dynamic":[3014667,3211277,3407883,6488065,6619140,6815747,7077891,7208963,7340035,7798787,8192004,8388613,8650756,8781828,9175043,14221313,14811137,24117250,25034753,26017794,26673154,40566785,40763406,41025547,41680897,42532865,42926091,43188225],"drives":[5242882],"defaults":[4784129,4849665,5111809,5242881,7012353,9895937,23068673,37748737],"documen":[3932161,4063233,4521985,5177345,15794177,27262977,28442627,30932993,31457281,33685505,34930689,37093377,38338561,38797313,40632323,42336257],"defines":[6029313,6356993,23068681,23986180,25231364,26345473,39124993,39452673,39518209,39583745,39714817,39976961,40042497,40370177,40501249,40566785,41484289,41680897,42074113,42401793,42598401,42663937,42860545,43188225],"directaccess":[41680897],"datetimeoffset":[41287681],"direct":[41680897],"disabled":[18808833,29753345,35979265,36700161,42401793,43188225],"documentloadcallback":[23068673,31719431,40960005],"dispatches":[3211265,40763393],"detailed":[28246017,29687809,29949953,31195137,33488897,33816577,42467329,42663937,42729473],"displaying":[29032449,36765697,43319297],"del":[3014657,3407873,6422529,6553606,41025537,42926081],"debugport":[18022405,18612229,18743301,19202053,19988485,20054021,21954565,23396357,23789573,25821189],"declare":[38731777],"defaultscriptusageattribute":[1572867,3735559,5767175,21757958,23068673,28180481,29425666,31391747,34144257,37748747,40828934],"document":[524290,917510,1376259,3342351,3604482,3866626,3932179,3997713,4063238,4259856,4325390,4390918,4521991,4653085,4718606,5177349,5505038,5701646,9895937,13500419,13631491,13828101,13893634,13959174,14024709,14221318,14417924,14680068,14745602,14876674,15138820,15794177,16187394,16384002,16580610,16842756,17104898,17301507,17367042,17563651,17891332,17956866,18153475,18284548,18350082,18481154,18546690,19070979,19267588,19529730,19791876,19857410,20185090,20250627,20840452,21168131,21430274,22085638,22151170,22609922,23068684,23986177,24182786,24444932,24510466,24576004,25427971,25755652,25886726,26148866,26279940,26411011,26476548,26804226,27262981,27328516,27525129,27656194,27721729,28049414,28442627,28573698,28770305,29163521,29294601,29360129,29818881,30081026,30146562,30212097,30474241,30539777,30605315,30932997,31260673,31457283,31588353,31719425,31784961,31981569,32309251,32440321,32505857,34340865,34734081,35192833,35454977,36110337,36306945,36372481,36503553,37093378,37355521,37617665,37879809,38404097,38797324,39124994,39845900,39976962,40042499,40304642,40632326,40697858,40960003,41222147,41418767,41549828,41615375,41877519,41943042,42139664,42336268,42401793,42991646,43384847],"dict":[4849668,6225922,7012356],"derived":[720899,1572867,1966083,2686979,2818051,2949123,3080193,3211273,3276801,27590657,28180481,28901377,29097985,30408705,31391745,37748740,40763401,40828932,41287684,41811972,42008580,42467329,42729473,43057156],"double":[3014657,3407873,7405574,14221313,40239105,41025537,42926081],"debugger":[13762561,13959170,14221314,14548993,14745601,14876673,15138818,17104897,17498113,17694721,17891330,18022403,18087937,18546689,18612226,18743297,19136513,19202050,19398657,19464193,19857409,19988482,20054017,20905985,21364737,21626881,21823489,21954561,22020097,22413313,22478849,22544385,22806529,22872065,22937602,23199745,23396354,23461889,23527425,23789569,24182785,24903681,25821186,26804225,28573697,43188225],"discardcacheddocuments":[524289,3670022,41549825],"documentname":[13959173,14221317,15138821,17104901,17891333,18546693,19857413,24182789,26804229,28573701],"determines":[524289,655361,786433,851970,917505,1179649,1376257,1507330,2162689,2228226,2293761,2359297,2424833,2490369,2555905,2621441,2752513,3014661,3080193,3145729,3211265,3276801,3342337,3407877,4325377,4653057,4718594,5046273,5505026,5701634,5832705,6029314,9043969,9109505,10092545,23724034,24051713,38797313,39845889,39911425,40108033,40173570,40304641,40435714,40697857,40763393,41025541,41091073,41156609,41353217,41418753,41549825,41615362,41746433,41877506,41943041,42139649,42205185,42270721,42336257,42467329,42532866,42729473,42926085,42991617,43253761,43384834],"destination":[10289158,10682374,10813446,10878977,11337729,14155777,14942209],"documentcategory":[917506,1179651,3342342,3997702,4063238,4259845,4325380,4521990,4653066,4718596,5505028,5701636,13828102,14024710,14417926,14680070,16842758,17301510,17563654,18153478,18284550,19070982,19267590,19791878,20250630,20840454,21168134,22085634,23068673,25427970,25755654,26411010,27525126,27721731,29294598,30474248,31784966,32505862,34930695,39845890,40697863,41418756,41615364,41877508,42139654,42991626,43384836],"defaultaccess":[28770305,30212097,31588353,31981569,34144261,34734081,41418753,41615361,41877505,42991617,43384833],"directly":[3211265,6225921,28770305,30212097,31588353,31981569,34734081,35389441,35848193,39190529,40763393,41418753,41615361,41877505,42991617,43384833],"download":[9895937],"demonstrates":[6160385,6291457,6553601,7012353,7995393,9895937],"delegate":[3014659,3211265,3407876,6094853,6291461,6553605,7995397,23068673,23658498,36044805,39059457,40763393,40960005,41025540,41222149,41746433,42205185,42926083],"determine":[32571393],"discards":[524289,3670017,41549825],"dataview":[23986177,43122689],"dimensions":[4784129],"debugging":[17498114,18022402,18612226,22937602,23855105,34668545,38273025,40566786,42401794,43188226],"disable":[17498113,18022401,18612225,22937601],"dynamicobject":[3211287,40763420],"directory":[27328513,29622273,39845889],"dynamically":[35389441,35848193,39190529],"discard":[13959175,14221319],"delegating":[6291457,6553601,7995393],"documentloader":[524291,3670018,3801094,3997698,4259842,23068673,29163523,29360136,32440327,41549833],"describes":[28246017,29949953,42467329,42729473],"dictionary":[4849666,6225925,7012356],"data":[1638401,3080193,3276801,3342348,4128769,4653068,10878978,11337730,14155778,14942210,17170436,17301508,17367044,17956868,18284548,18350084,18415620,18481156,18546692,19070980,19791876,19857412,20250628,20840452,21168132,21430276,22609924,23265284,24510468,25362433,25755652,25886726,26148868,26804228,27525126,27983873,28049414,28246017,28508164,28573700,29294598,29949953,31457281,36175873,40108033,40370182,42139660,42467332,42729476,42991628],"disabletyperestriction":[28770305,30212097,31588353,31981569,34734081,34865153,35323909,41418753,41615361,41877505,42991617,43384833],"downloadstring":[9895937],"downloaded":[39124993],"documentflags":[23068673,36372487,39976965],"dictt":[4849666,6225922],"documentaccessflags":[23068673,30539783,39124997],"delete":[3211266,40763394],"discarded":[14745601,14876673,15138817,17891329,39976961],"dialogs":[3473409,21495810,26345473,29032449,30212097,31981569,34734081,36765697,38928385,41615361,41877505,43319299,43384833],"decimal":[3014657,3407873,6881286,41025537,42401793,42926081],"disconnects":[655361,4587521,41746433],"dispose":[2621441,3342337,4325378,4653059,4718594,5505027,5701634,6356994,9895937,13434891,14286858,18939914,20709387,20971529,23003147,25165828,26607619,30015492,41418754,41615362,41877507,41943041,42139649,42991619,43384834],"describing":[30081025,34471937,40304641],"display":[26345473,30212097,31981569,34734081,38928385,41615361,41877505,43319297,43384833],"deprecated":[29753345],"different":[17498113,18022401,18612225,22937601,35520513,41877505],"disableglobalmembers":[43188225],"dimensional":[14811137],"dump":[9895937],"dynamicmetaobject":[3211266,40763394],"datetime":[41287681,42401793,43188226],"deeply":[33226753],"disposes":[6356993],"description":[131073,196609,262145,327681,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1179649,1376257,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,4128769,4194305,4325377,4653057,4718593,5046273,5505025,5701633,7012353,21757953,22085633,22151169,22216705,22675457,22740993,23068677,23658497,23724033,23920641,23986178,24117249,24313857,24444929,24576001,24641537,24707073,24772609,24838145,24969217,25034753,25165825,25231363,25296897,25362433,25427969,25493505,25559041,25624577,25886721,26017793,26083329,26214401,26279937,26345475,26411009,26476545,26542081,26607617,26673153,26738689,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28180481,28246017,28311553,28377089,28442625,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29491201,29556737,29687809,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30736385,30801921,30932993,30998529,31129601,31260673,31391745,31588353,31850497,31981569,32899073,34734081,37748739,38797315,39124993,39387137,39452673,39518209,39583746,39649281,39714817,39845891,39911427,39976961,40042497,40108034,40173572,40239106,40304642,40370177,40435716,40501249,40566785,40632323,40697858,40763394,40828931,40894466,41025538,41091074,41156610,41287683,41353218,41418755,41484289,41549827,41615363,41680897,41746433,41811971,41877507,41943042,42008579,42074113,42139651,42205185,42270722,42336259,42401793,42467332,42532866,42598401,42663937,42729476,42795010,42860546,42926082,42991619,43057155,43122690,43188225,43253761,43319298,43384835],"defined":[3014657,4915201,5111809,5570561,14221313,19726337,20381697,23855105,28246017,29949953,40435713,42467329,42729473,42926081],"delegates":[23068673,28770305,30212097,31588353,31981569,34734081,37158914,41418753,41615361,41877506,42991618,43384833],"dispatcher":[30212098,31981570,34734082,38600716,41615362,41877507,43384834],"decrement":[3211265,40763393],"disposable":[6356995],"discarding":[4325378,4653058,4718594,5505026,5701634,13959170,14221314,24444929,24576001,26279937,26476545,41418754,41615362,41877506,42991618,43384834],"documents":[524289,3670017,3932162,4063234,4521986,5177346,27328513,29622273,39124995,39845889,41549825],"distinction":[13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329],"deleteproperty":[3211266,15466502,16318470,25624579,40763394]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_101.json b/docs/Reference/fti/FTI_101.json index 75fadac54..e691c3b45 100644 --- a/docs/Reference/fti/FTI_101.json +++ b/docs/Reference/fti/FTI_101.json @@ -1 +1 @@ -{"examples":[4718593,4849665,5308417,5505025,5570561,5898241,5963777,6029313,6225921,6356993,6488065,6750209,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7667713,7995393,8126465,8519681,8585217,8912897,8978433,9306113,10092545,10223617,10944514,12386305],"exact":[13565953],"external":[6619137,7274497,7667713,8257537,35848193,36438017,39911425],"enumerates":[33095682,37683201,38862849,41943042],"exception":[393220,524292,2293766,3211270,3801089,4456449,4587521,4653057,5505025,7143425,7602177,9306119,10027017,10158082,10944513,12386305,13762569,13828098,14090241,19726337,22937601,24444931,26017794,27721729,29229064,29425670,29556755,30212097,30408723,30670849,31129602,31784961,32309250,32899074,32964610,35061761,35586050,35848193,36241409,37158913,38010881,38404097,39911425,40304673,40828929,41091105,41811969,42139649,42467335,42532866],"event":[983044,1769473,1835009,4063233,5373954,14942209,24444930,37748739,39256067,41287684,41418756,42008580,42139649,42532865],"eventconnection":[1769475,4063234,5373958,24444929,37748743],"executionstarted":[29425665,29556737,30408705,30670855,35061765,37158919,40304641,41091073,42467329],"eventsource":[1835011,5373954,14942209,24444929,39256071],"expensive":[10420225,38993922],"exposeruntimetype":[31850497,41484289],"eval":[20709377],"enum":[36634626,38928386,38993922,39387138,40501250,40763396,40960004,41287684,41484290,41746434,42008580,42270722,42729474,43057154],"engin":[10944513,12386305,27131906,27787266,27983874,28508162,29884418,31588353,32243713,32768001,32833537,35323905,36110337,36306945,37027841,38404098,38600705,39124993,40828930,41811970,42139650,42532866,43057153],"enablenullresultwrapping":[5701634,27131905,27787265,27983873,28508161,29884417,35717125,38404097,40828929,41811969,42139649,42532865],"exceeds":[35848193,39911425],"earlier":[30801921,36438017],"exceptions":[2293761,3211265,4128769,4784129,9306114,40304641,41091073,41680897,42926081],"enableremotedebugging":[38928385,42270721],"extensionattribute":[5177347,5242883,5439491,6160387,8781827,9699331,9895939,11862019,39583747,41877507],"enumerations":[4784129,4915203,24444929,26673153,27394049,41680897],"exempt":[30801921],"effect":[5701633,13565953,14680065,29622273,32178177,33030145,36896769,38338561,39059457,40960001,41287681,41746433,42729473],"events":[196610,393218,524290,589826,14942209,38731777,40304641,41091073,41287681,41418753,41549825,42008577],"execution":[3801091,4456451,4587523,4653059,7602179,12320769,13434881,13500417,13565954,14090241,14614529,14680066,15859713,20447233,20512769,20709377,22937601,23592961,24248321,24444931,25296897,27131905,27721729,27787266,27983873,28508161,29425665,29556737,29884417,30408705,30670849,31457281,31522817,34471937,35061761,35848195,36241411,36765697,37158913,38404100,39911427,40042498,40304642,40828932,41091074,41811972,42139654,42401793,42467329,42532868],"enabled":[16973825,18874369,19857409,21757953,26869761,34865153,35520513,38928387,39714817,40501249,42270723,42729476],"enforces":[4456449,4587521,4653057,21037057,40828929,41811969,42532865],"enables":[2686977,26279937,27131911,27787273,27983879,28508167,28901377,29884423,30801921,30867457,31522817,31850497,32178177,33816577,34078721,34209793,35717121,35848193,36438017,36896769,37879809,38404103,39911425,40828935,41811975,42139657,42401793,42532871,42860545,43122689],"extendedhostfunctions":[4521986,4718595,4784131,4849667,4915202,4980742,5308419,5505026,5570564,5898243,5963779,6029315,6291458,6356994,6488066,6750210,6881282,7012354,7077890,7143426,7208962,7274498,7340035,7405570,7536642,7995394,8126466,8519682,8585218,8912898,8978434,9306115,10092546,10223618,10944514,12386306,23068674,24182786,24444929,41680905,42926081],"enablefileloading":[36634625],"exceeding":[35848193,39911425],"encapsulated":[2424833,41943041],"expect":[42663937],"enumerablet":[5570562,5898242,7340033],"enablejitdebugging":[42729473],"extension":[5177346,5242882,5439490,6160386,8781826,9699330,9895938,11862018,14942210,24444929,25427969,27131905,27787266,27983873,28508161,29884417,35323905,36110337,36896772,37027841,38404097,39124993,39583745,40828929,41811969,41877505,42139650,42532865],"errors":[34471937,35848193,36765697,39911425],"execute":[3801092,4456452,4587524,4653060,7602181,13434881,13500423,14680071,15728647,15859719,19726343,20447233,20512769,20709377,23592965,24248326,38404100,40828932,41811972,42139653,42532869],"enforceanonymoustypeaccess":[27131905,27787265,27983873,28508161,29884417,36438021,38404097,40828929,41811969,42139649,42532865],"effective":[34865153,35520513,35848193,38993922,39911425],"enginename":[17956869,18874373,19857413,29425665,29556737,30408705,33161221,34930695,37289991,40304641,41091073,42467329],"exposed":[1507329,4718593,4849665,5308417,5505025,5570561,5898241,5963777,6029313,6356993,6488065,6750209,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7667713,7995393,8126465,8519681,8585217,8912897,8978433,9175041,9306113,10092545,10223617,10289153,10354689,10420227,10944513,11403265,11468801,12058625,12386305,13041665,14024705,14745601,14942212,15794177,15990785,24444932,27131905,27787265,27983873,28508161,29622273,29884417,31850497,33030145,34013185,36896770,37879810,38404097,39714817,40763393,40828929,41418753,41811969,42008577,42139649,42205186,42532865,42926081,43057157],"exposes":[196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,1048577,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3801117,4128769,4456477,4587549,4653085,4784129,5046273,6094849,7602205,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11927553,11993089,12058625,12189697,12255233,12779521,12976129,13041665,13238273,13369345,13697025,14024705,14221313,14286849,14745601,14811137,14942209,15794177,15990785,22609928,23461890,23527432,24313858,24969217,25690113,25952264,26083329,26411009,26607617,26738689,26935297,27131905,27328513,27459585,27590657,27787265,27983873,28049409,28311553,28442625,28508161,28770305,28901377,29425665,29556737,29687809,29884417,29949953,30015489,30277633,30408705,30474241,30605313,31064065,31391745,31522817,31981569,32505857,32702465,33095681,33357825,34537473,35389441,35913729,36044801,36175873,37486593,37617665,37748737,38076417,38141953,38273025,38404125,38731777,39256065,39714818,39780353,39976961,40108033,40304641,40370177,40566785,40763393,40828957,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811997,41943041,42008577,42074113,42139677,42205185,42336257,42401793,42467329,42532893,42598401,42663937,42795009,42860545,42926081,42991617,43122689],"enablestandardsmode":[42729474],"explicitly":[36634625,42663937],"exits":[9306113],"excessive":[34471937,35848193,36765697,39911425],"extract":[7143425],"exemption":[30801921],"executes":[3801096,4456456,4587528,4653064,7602185,13434881,13500417,14548993,14680065,15466497,15728641,15859713,16777217,19726337,20447233,20512769,20709379,23592964,24248325,24641539,38404104,40828936,41811976,42139657,42532872],"exposing":[24444930,41484289,43057153],"enforced":[34471937,36765697],"equality":[35717121,39714818,41484289],"enforce":[36438017],"enablemodeless":[2686977,26279941,42860545],"encoding":[24969218,27459587,30081039,33619982,35913730,42336259],"experimental":[38928385,42270721],"extensions":[1638402,5177346,5242882,5439490,6160386,7340033,13631490,23003138,23199746,24444929,25034754,25231361,26214401,26476546,26542082,27000833,28049409,29032449,32636929,36044801,38404097,40828929,41811969,41877510,42532865,42729473],"enableautohostvariables":[27131905,27787265,27983873,28508161,29884417,34209797,38404097,40828929,41811969,42139649,42532865],"element":[4128773,4521986,4784133,5046275,5767172,6684676,6881282,7012354,7077891,7208962,7405570,7536642,7864325,7929858,7995394,8126466,8519682,8912898,8978434,10092546,10223618,11075586,14417922,15925250,23986178,28442625,37486593,41680901,42074116,42926085],"ending":[28311553,35651585,39976961],"equals":[327681,458753,720897,786433,851969,917506,1441794,1703938,1769473,1835009,1900546,1966082,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145730,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35717121,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714818,39780353,39976961,40108033,40304641,40566785,40763394,40828929,40960002,41025537,41091073,41156609,41222145,41287682,41353217,41418754,41484289,41549825,41615361,41680897,41811969,41943041,42008578,42139649,42336257,42401793,42532865,42663937,42926081],"enabledynamicmoduleimports":[38928385,42270721],"enabledatetimeconversion":[42270721],"elements":[2228226,5046273,11075588,12124161,12320769,13107201,13500417,13565953,13959169,14417924,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217,27131905,27787265,27983873,28442625,28508161,29884417,30801922,37486594,38404097,40828929,41811969,42074114,42139649,42532865],"externally":[18743297,19005441,19070977,19333121,20054017,20250625,20774913,22216705,22347777,22478849,23330817,23789569],"engine":[1638402,2752514,3801092,4456454,4587526,4653062,5177351,5242887,6094854,6881281,7012353,7208961,7405569,7536641,7602180,7995393,8126465,8519681,8912897,8978433,9699335,10092545,10223617,10420231,11534341,11862023,12713985,13303810,13565954,13631489,14090241,14680065,14942209,16056321,16384001,16515073,16711681,16842753,16973828,17104897,17367041,17760257,17825793,17891329,17956867,18219009,18612225,18743297,18808833,18874372,18939905,19005441,19070977,19333121,19660801,19857412,19922946,20054017,20119554,20316161,20381697,20578305,20643841,20709377,20774913,20840450,20905987,20971522,21037057,21102593,21233665,21364737,21430273,21561345,21692417,21757956,21823490,21889026,21954562,22020098,22085633,22151170,22282241,22347777,22478849,22740994,22806529,22872066,22937601,23003138,23134209,23199746,23330817,23658498,23855106,23920641,24117250,24379394,24444930,24510465,24576002,25034753,25100290,25231362,25362444,25493506,25821185,26214406,26476546,26542081,26673155,26869762,27000838,27131906,27394051,27721729,27787265,27983874,28114946,28508162,29032450,29425665,29556737,29884418,30343170,30408705,30867457,30998530,31916033,31850497,33095682,33161217,33488902,33816577,33882118,34013185,34209793,34930689,35586049,36241410,36896769,36962305,37093377,37289985,37879809,38404104,39321601,39583746,40042497,40304641,40828943,41091073,41222145,41811983,41877506,41943042,42074113,42139667,42270723,42401798,42467330,42532875,42729473,42926081,43057153],"enable":[16973825,18874369,19857409,21757953,26279942,35848193,36438017,39911425],"endcpuprofile":[6094849,7602177,18022405,22413317,42139649,42401793],"enumerator":[5046273,42074113],"expected":[3932161,4194305],"existing":[4718593,4784129,23068673,41680897],"error":[131074,9306113,10027010,12582914,13762562,16318466,24444929,26017794,28180481,29425668,29491201,29556739,30212097,30408707,31326209,31784961,32899074,34144257,35979265,38010881,40304646,41091077,42467332],"expressions":[12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217,20709377],"empty":[4128769,4784129,7667715,13303809,13565953,18022401,22151169,22413313,25755649,26869762,27394049,41222146,41680897,42926081],"ecmascript":[31653889,35389441,40370177],"evaluated":[13107201,13959169,15269889],"endtimestamp":[28311553,35651589,39976961],"evaluates":[3801095,4456455,4587527,4653063,7602184,12124161,12320769,13107201,13565953,13959169,14614529,15269889,23396353,25296900,25886723,31457285,38404103,40828935,41811975,42139656,42532871],"extended":[24444930,36044801,41418753,41680897],"enableallloading":[36634625],"enablewebloading":[36634625],"example":[4718593,5963777,7143425,33947649,38731777,39518209,40239105,40697857],"efficient":[10420225,32178177,38993921],"enforcerelativeprefix":[36634625],"evaluate":[3801092,4456452,4587524,4653060,5832705,7602181,12124168,12320776,13107201,13434881,13565959,13959169,14614536,15269889,19726337,20447233,20512769,20709377,23396360,25296901,31457286,38404100,40828932,41811972,41943041,42139653,42532868],"elementt":[6881282,7012354,7208962,7405570,7536642,7995394,8126466,8519682,8912898,8978434,10092546,10223618],"enumerable":[4718594,5570562,5898241,5963778,7340033,36896769,37879809],"evaluatedocument":[3801091,4456451,4587523,4653059,7602179,13107206,13959174,15269894,25886724,38404099,40828931,41811971,42139651,42532867],"easy":[39321601],"entered":[29097985],"entry":[6750209],"executing":[13303809,22151169,26869761,30867457,34078721,42270721],"enablesamplecollection":[40501249],"expression":[12124161,12320769,13107201,13434881,13565953,13959169,14614529,15269889,20447233,20512769,20709378],"executecommand":[3801089,4456449,4587522,4653058,7602178,13434886,20447238,20512774,20709382,38404097,40828930,41811970,42139650,42532865],"end":[35913729,36044801,36175873,37486593,37617665,37748737,38076417,38141953,38273025,38404097,38731777,39256065,39583745,39714817,39780353,39976961,40108033,40304641,40370177,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42336257,42401793,42467329,42532865,42598401,42663937,42795009,42860545,42926081,42991617,43122689],"executable":[32505857,33357825,36700161,38076417,39518213,39780353],"enabledebugging":[38928386,42270723,42729475],"engines":[10420225,13434881,20250625,20447233,20512769,20709377,22216705,23789569,24444931,25427969,27394051,37093378,38404097,39321602,39387137,39583745,41877505,42532865,42860545,43057153],"executedocument":[3801091,4456451,4587523,4653059,7602179,14548998,15466502,16777222,24641540,38404099,40828931,41811971,42139651,42532867],"exhaustive":[12451846,18415622,19398663,24772615],"enhance":[42729473],"eligible":[36634625],"exists":[29622273,33030145,40960001,41287681,41746433],"executed":[14548993,15466497,16056321,16515073,16711681,16777217,17104897,17367041,17760257,17891329,18219009,18612225,18743297,18808833,18939905,19005441,19070977,19333121,19660801,19988481,20054017,20185089,20250625,20381697,20578305,20774913,21102593,21495809,21561345,21692417,22216705,22347777,22478849,23265281,23330817,23789569,24510465,24707073,25559041,26673153,40566785],"explicit":[14942210],"enumeration":[2424833,24444929,26673153,27394049,27787266,36634626,36896770,37879810,38928386,38993922,39387138,40501250,41484290,41746434,41943041,42139650,42270722,42729474,43057154],"equal":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222147,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"expose":[11010049,11403265,11468801,11665409,12058625,12779521,13041666,14024706,14745601,14942211,15794177,15990785,31588353,32243713,34013185,36438017,38731777,42926081],"enabling":[35848193,39911425],"enums":[13565953,39714817,40763393,40960001],"excluded":[36896769,37879809],"errordetails":[29425665,29491207,29556737,30408705,34144261,35979271,40304641,41091073,42467329]} \ No newline at end of file +{"evaluates":[4325383,4653064,4718599,5505031,5701639,13631489,13828097,13893633,14221313,14680065,14745601,15138817,20447233,24444932,26279941,26411011,41418759,41615367,41877511,42991624,43384839],"evaluated":[13631489,13828097,14680065],"eventconnection":[655363,4587522,4980742,23068673,41746439],"examples":[4849665,4915201,5242881,5570561,5963777,6029313,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6750209,6881281,7012353,7143425,7405569,7471105,7536641,7602177,7667713,7733249,7995393,8060929,8323074,8585217,9043969,9240577,9371649,9437185,9633793,9895937],"equal":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2686977,2621441,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270723,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"extension":[5308418,5439490,5636098,5898242,10485762,10747906,11272194,11468802,14811138,23068673,23986177,28770305,30212097,31588354,31981569,34078721,34734081,35782657,36962308,37552129,38207489,39518209,39714817,41418753,41615361,41877505,42991618,43384833],"enablewebloading":[39124993],"exceeds":[35979265,36700161],"exceptions":[3014657,3080193,3276801,3407873,9895938,41025537,42467329,42729473,42926081],"extendedhostfunctions":[3014659,4784130,4849667,4915203,5111810,5242883,5373958,5570563,5963778,6029314,6160386,6225923,6291459,6356994,6422532,6553603,6750210,6881282,7012354,7143426,7274498,7405570,7471106,7536642,7602178,7667714,7733250,7995394,8060930,8323074,8585218,9240578,9371650,9437186,9633794,9895939,22216706,22675458,23068673,41025537,42926089],"enumerates":[29556738,33619969,34275329,40763394],"ending":[28835841,33161217,41091073],"experimental":[40566785,43188225],"expected":[3997697,4259841],"excessive":[35979265,36700161,36896769,37421057],"enhance":[42401793],"engin":[8323073,9437185,28770307,29818881,30212099,31588355,31981571,34078721,34734083,35389441,35454977,35782657,35848193,36175873,36306945,37552129,38207489,39190529,41418755,41615363,41680897,41877507,42991619,43384835],"extended":[23068674,39845889,42926081,43057153],"effective":[35979265,36700161,38141953,38666241,40370178],"enforces":[4718593,5505025,5701633,22282241,41615361,41877505,43384833],"error":[65538,9895937,11599874,12320770,14614530,15073282,23068673,25362434,27983874,28246019,29687812,29949955,31195137,31522817,32178177,32964609,33488897,33751041,33816577,33947649,42467334,42663940,42729477],"execution":[4325379,4653059,4718595,5505027,5701635,13565953,13959170,14221314,14745601,14876673,15138817,17235969,17891329,21299201,21692417,23068675,23330817,24248321,24444929,24576001,26279937,26476545,27394049,28246017,28770305,29687809,29949953,30212097,31260673,31588354,31981569,32112641,32571395,33095681,34406401,34734081,35979267,36044802,36700163,36896769,37421057,41418756,41615364,41877508,42139649,42467330,42663937,42729474,42991622,43384836],"enforce":[32636929],"elementt":[6881282,7143426,7405570,7471106,7602178,7536642,7667714,7733250,8585218,9240578,9371650,9633794],"explicit":[14811138],"existing":[3014657,5570561,22675457,42926081],"enforcerelativeprefix":[39124993],"encoding":[27262978,30932995,31457295,33685518,38797314,42336259],"ecmascript":[27656193,32505857,40042497],"events":[983042,1048578,1638402,4128770,14811137,40173569,40435713,41811969,42008577,42467329,42729473,43057153],"exposeruntimetype":[35323905,39452673],"element":[1507331,3014661,3407877,4784130,6684674,6750211,6815748,6881282,7143426,7208964,7405570,7471106,7602178,7536642,7667714,7733250,8585218,9175045,9240578,9371650,9633794,10223618,10289154,16777218,25559042,28704769,40239105,41025541,42532868,42926085],"exists":[34144257,35520513,40501249,40828929,41811969],"enableallloading":[39124993],"entry":[7012353],"enablestandardsmode":[42401794],"eval":[24248321],"expression":[13631489,13828097,13893633,14221313,14680065,14745601,15138817,17235969,23330817,24248322,27394049],"equals":[262145,524289,655361,720898,786433,851969,917505,1179649,1376257,1572866,1966082,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2686978,2621441,2752513,2818050,2883585,2949122,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,37748738,37945345,38797313,39452673,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828930,40894465,41025537,41091073,41156609,41287682,41353217,41418753,41549825,41615361,41746433,41811970,41877505,41943041,42008578,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057154,43253761,43384833],"endcpuprofile":[3342337,4653057,17629189,21561349,42139649,42991617],"executing":[19726337,20381697,23855105,34668545,38273025,43188225],"extract":[6160385],"enablemodeless":[3473409,21495813,43319297],"executecommand":[4325377,4653058,4718594,5505025,5701634,17235974,23330822,24248326,27394054,41418753,41615362,41877505,42991618,43384834],"external":[6488065,6619137,6946817,8060929,32636929,35979265,36700161],"expose":[12058625,12189697,12255233,12386306,12648449,13041666,13172737,13238273,14811139,15859713,16908289,19005441,29818881,32636929,35454977,38731777,40435713,41025537],"enablesamplecollection":[41484289],"enumerations":[3014657,5111811,23068673,25231361,26345473,42926081],"enumerablet":[6291457,6422530,6553602],"enumerator":[1507329,42532865],"equality":[37945345,39452673,41287682],"eligible":[39124993],"enums":[14221313,37748737,40828929,41287681],"extensions":[327682,5308418,5439490,5636098,5898242,6291457,14548994,22478850,22740994,23068673,23461890,24313857,24903682,26542082,27328513,28377089,29229057,30801921,30867457,39518214,39845889,41418753,41615361,41877505,42401793,43384833],"expensive":[9699329,40370178],"enableremotedebugging":[40566785,43188225],"example":[4915201,5570561,6160385,35913729,36634625,37486593,38076417,40435713],"enables":[3473409,21495809,27787265,28770311,29753345,30212103,31260673,31588361,31981575,32636929,34668545,34734087,34865153,35323905,35979265,36700161,36962305,37027841,37158913,37683201,37945345,38273025,41418759,41615367,41877511,42074113,42139649,42991625,43319297,43384839],"engines":[9699329,13959169,14221313,17235969,23068675,23265281,23330817,23986177,24248321,26148865,26345475,27394049,28573697,33226754,39387138,39518209,39714817,39976961,41418753,41680897,41877505,43319297],"expressions":[13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329,24248321],"excluded":[36962305,37683201],"enablejitdebugging":[42401793],"exhaustive":[13303814,16056326,18677767,25100295],"executable":[28966913,29491201,36634629,37814273,39911425,41156609],"enum":[37748740,39124994,39452674,39976962,40370178,40501250,40566786,40828932,41484290,41680898,41811972,42008580,42401794,43188226],"empty":[3014657,3407873,6488067,14221313,17629185,19726337,20381697,21561345,23855106,25034753,26345473,41025537,42270722,42926081],"enabledatetimeconversion":[43188225],"errors":[35979265,36700161,36896769,37421057],"engine":[327682,2031618,3342342,4325380,4653060,4718598,5308423,5439495,5505030,5701638,6881281,7143425,7405569,7471105,7536641,7602177,7667713,7733249,8585217,9240577,9371649,9633793,9699335,10485767,10747911,13434885,13565953,13762561,13959169,14221314,14286849,14548993,14811137,16384001,16580609,16842753,17104897,17170433,17301505,17367041,17498116,17563649,17956865,18022404,18153473,18284545,18350081,18415617,18481153,18546689,18612228,18808833,18874369,19070977,19267585,19464195,19726338,19791873,19857409,19922945,20185089,20250625,20316162,20381698,20512771,20578305,20643842,20709377,20774914,20840449,20905986,21037057,21102593,21168129,21233666,21299201,21364738,21430273,21626882,21692417,21823489,21889025,21954562,22020098,22282241,22413314,22478850,22544385,22609921,22740993,22806529,22872066,22937604,23003137,23068674,23199745,23396354,23461890,23527426,23789570,23855106,24051714,24248321,24313858,24903682,25165826,25231363,25690113,25755649,25821186,26345475,26542081,26607618,27459596,28246017,28311558,28377094,28770306,29229062,29556738,29687809,29949953,30015490,30212098,30670849,30801922,31588353,31981570,32571394,32702465,32768001,32899074,33226753,34668545,34734082,34996225,35323905,36044801,36175873,36962305,37027841,37158913,37683201,38469638,38600705,38731777,39059457,39387137,39518210,39714818,40763394,41025537,41418760,41615375,41680897,41877515,42139654,42270721,42401793,42467329,42532865,42663938,42729473,42991635,43188227,43384847],"evaluate":[4325380,4653061,4718596,5505028,5701636,6094849,13631489,13828097,13893640,14221319,14680065,14745608,15138824,17235969,20447240,23330817,24248321,24444933,25952257,26279942,27394049,40763393,41418756,41615364,41877508,42991621,43384836],"executed":[13500417,14024705,14417921,16384001,16580609,16842753,17104897,17170433,17301505,17367041,17563649,17956865,18153473,18284545,18350081,18415617,18481153,18546689,18874369,19070977,19267585,19529729,19791873,19857409,20185089,20250625,20840449,21168129,21430273,22609921,23265281,24182785,24510465,25231361,25755649,26148865,26804225,26869761,28508161,28573697,41943041],"externally":[17301505,17367041,17956865,18415617,19791873,19857409,20250625,22609921,23265281,25755649,26148865,28573697],"exception":[1638404,3080198,3276806,4128772,4325377,4653057,4718593,5505025,5701633,5963777,6160385,8323073,9437185,9895943,11403266,12320777,13565953,15007746,15073289,21299201,21692417,23068675,25362434,25952257,27983874,28246035,29687814,29949971,31326210,32112641,32178177,32243720,32571393,32964609,33030146,33095681,33947649,34406401,34537474,35979265,36700161,39059458,41418753,41615361,41877506,42467361,42663943,42729505,42991617,43384833],"exposing":[23068674,39452673,41680897],"exits":[9895937],"encapsulated":[3211265,40763393],"exempt":[34865153],"earlier":[32636929,34865153],"enforceanonymoustypeaccess":[28770305,30212097,31588353,31981569,32636933,34734081,41418753,41615361,41877505,42991617,43384833],"exposed":[589825,4849665,4915201,5242881,5570561,5963777,6029313,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6750209,6881281,7012353,7143425,7405569,7471105,7602177,7536641,7667713,7733249,7995393,8060929,8323073,8585217,9240577,9371649,9437185,9633793,9699331,9895937,10158081,11141121,12058625,12189697,12255233,12386305,13107201,13041665,13238273,14811140,16908289,19005441,23068676,28770306,30212098,31588354,31981570,33357825,34144257,34734082,35323905,35520513,36962306,37683202,37748737,38731777,41025537,41287681,41418754,41615362,41680901,41877506,42008577,42598402,42991618,43057153,43384834],"enabledynamicmoduleimports":[40566785,43188225],"enabledebugging":[40566786,42401795,43188227],"evaluatedocument":[4325379,4653059,4718595,5505027,5701635,13631494,13828102,14680070,26411012,41418755,41615363,41877507,42991619,43384835],"enablenullresultwrapping":[9109506,28770305,30212097,31588353,31981569,34734081,37945349,41418753,41615361,41877505,42991617,43384833],"elements":[1507329,2097154,10223620,10289156,13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329,28704769,28770305,30212097,31588353,31981569,34734081,34865154,40239106,41418753,41615361,41877505,42532866,42991617,43384833],"easy":[39387137],"end":[37748737,38797313,39518209,39583745,39649281,39714817,39845889,39911425,40042497,40108033,40173569,40239105,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43253761,43319297,43384833],"effect":[9109505,13959169,14221313,29753345,34144257,35520513,35717121,36962305,38010881,40501249,40828929,41811969,42401793],"executionstarted":[28246017,29687809,29949953,32112645,33095687,34406407,42467329,42663937,42729473],"exemption":[34865153],"enablefileloading":[39124993],"endtimestamp":[28835841,33161221,41091073],"enabled":[17498113,18022401,18612225,22937601,23855105,38141953,38666241,40566787,41287681,41484289,42401796,43188227],"exact":[14221313],"exposes":[131073,196609,262145,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1179649,1376257,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,4128769,4194305,4325405,4653085,4718621,5046273,5505053,5701661,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,14483457,14811137,15859713,16908289,19005441,23920642,24969224,26083330,27000833,27131905,27197441,27262977,27328513,27590657,27656193,27721729,27787265,27852801,27918337,28180481,28246017,28442625,28639240,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29491201,29556737,29687809,29884424,29949953,30081025,30146561,30212097,30277633,30408705,30736385,30932993,30998529,31260673,31391745,31588353,31981569,34734081,37748737,38797313,39583745,39649281,39845889,39911425,40042497,40108033,40173569,40239105,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287682,41353217,41418781,41549825,41615389,41746433,41811969,41877533,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991645,43057153,43122689,43253761,43319297,43384861],"event":[655361,786433,1441796,4587521,4980738,14811137,23068674,41746435,41811972,41877505,42008580,42205187,42991617,43057156],"enginename":[18022405,19464197,22937605,28246017,29687809,29949953,30670853,32702471,32768007,42467329,42663937,42729473],"enumeration":[3211265,23068673,25231361,26345473,31588354,36962306,37683202,39124994,39452674,39976962,40370178,40501250,40566786,40763393,41484290,41680898,42401794,42991618,43188226],"executedocument":[4325379,4653059,4718595,5505027,5701635,13500422,14024710,14417926,25427972,41418755,41615363,41877507,42991619,43384835],"enableautohostvariables":[28770305,30212097,31588353,31981569,34734081,37158917,41418753,41615361,41877505,42991617,43384833],"enabling":[35979265,36700161],"explicitly":[39124993,43253761],"exposehostobjectstaticmembers":[28770305,30212097,31588353,31981569,33357829,34734081,41418753,41615361,41877505,42991617,43384833],"enumerable":[4915202,5570562,6291457,6422530,6553601,36962305,37683201],"entered":[31064065],"extensionattribute":[5308419,5439491,5636099,5898243,10485763,10747907,11272195,11468803,39518211,39714819],"expect":[43253761],"executes":[4325384,4653065,4718600,5505032,5701640,13500417,13959169,14024705,14417921,14876673,16187393,17235969,17891329,23330817,24248323,24576004,25427971,25952257,26476549,27394049,41418760,41615368,41877512,42991625,43384840],"exceeding":[35979265,36700161],"execute":[4325380,4653061,4718596,5505028,5701636,13959175,14876679,16187399,17235969,17891335,23330817,24248321,24576005,25952263,26476550,27394049,41418756,41615364,41877509,42991621,43384836],"efficient":[9699329,29753345,40370177],"enable":[17498113,18022401,18612225,21495814,22937601,32636929,35979265,36700161],"errordetails":[28246017,29687809,29949953,31195141,33488903,33816583,42467329,42663937,42729473],"enforced":[36896769,37421057],"eventsource":[786435,4980738,14811137,23068673,42205191]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_102.json b/docs/Reference/fti/FTI_102.json index 8eba6c20a..6cf657842 100644 --- a/docs/Reference/fti/FTI_102.json +++ b/docs/Reference/fti/FTI_102.json @@ -1 +1 @@ -{"final":[9306113],"feature":[32178180,38928385,42270721],"filter":[8388614,8650758,9371654,9830406],"format":[4849665,5308417,5570561,11927553,11993089,12189697,12255233,12976129,13238273,13303809,13369345,13697025,16121857,21954561,22020097,22151169,23003137,23199745,25100289,26476545,26869761,30867457,34078721],"floating":[5505025],"finalize":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801090,4128769,4456449,4587521,4653057,4784129,6094849,7602177,12713986,16842761,21364738,25821186,35913729,36044801,37617665,37748737,38076417,38273025,38404098,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"finallyfunc":[9306120],"funcname":[15400965],"function":[327681,458753,720897,851969,1769474,1835010,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3211265,3276801,3342337,3801090,3932161,4063233,4128773,4194305,4456450,4521985,4587522,4653058,4718593,4784132,4849665,4915201,5177345,5242881,5308417,5373955,5439489,5505026,5570562,5636098,5701634,5767170,5832710,5898248,5963777,6029313,6094849,6160385,6225922,6291457,6356996,6422530,6488068,6553602,6619138,6684674,6750209,6815746,6881282,6946818,7012354,7077889,7143426,7208962,7274498,7340040,7405570,7536642,7602178,7667714,7733250,7798786,7864322,7929857,7995394,8060930,8126466,8257538,8519682,8585224,8781825,8912898,8978434,9043969,9175041,9240577,9306121,9437185,9699329,9764865,9895937,10092546,10158081,10223618,10682369,10944515,11075585,11337729,11599873,11730945,11862017,12124161,12320769,12386307,12648449,12845057,12910593,13107201,13303809,13434881,13565953,13828097,13959169,14417921,14614529,15073281,15138817,15269889,15400964,15532033,15597569,16056321,16121857,16187393,16515073,16580609,16711681,16908289,16973825,17104897,17170433,17367041,17760257,17825793,17891329,17956865,18022401,18087937,18219009,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19333121,19660801,19857409,19988481,20054017,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20905985,21102593,21299201,21495809,21561345,21692417,21757953,22151169,22216705,22347777,22413313,22478849,23265281,23330817,23396353,23789569,23855105,24444929,24510465,24707073,25559041,26869761,27197441,27262977,27525122,29687814,32440321,33685505,34734081,35913729,36044801,37224449,37617665,37748739,38076417,38273025,38404098,38469633,38535169,38731777,39256066,39780353,39976961,40042497,40304641,40435713,40566785,40828930,40894465,41025543,41091073,41156609,41222145,41549825,41615361,41680900,41811970,41943041,42139650,42336257,42401793,42532866,42663937,42926085],"fields":[262146,1048578,41222145,41287681,41353217,41418753,41746433,42008577],"f414c260":[21954561,22020097,23003137,23199745,25100289,26476545],"formatting":[27131905,27787265,27983873,28508161,29884417,30867458,31522817,34078722,38404097,40828929,41811969,42139649,42401793,42532865],"functional":[14942209],"free":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,4128769,4784129,6094849,35913729,36044801,37617665,37748737,38076417,38273025,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41943041,42008577,42336257,42401793,42663937,42926081],"fatal":[29425665,29556737,30212097,30408705,31784961,38010881,40304641,41091073,42467329],"fail":[35717121,41484289],"functionality":[32178177,42729473],"functions":[24444930,27131905,27787265,27983873,28508161,29884417,32833537,34209794,36306945,38404097,38600705,40828929,41680897,41811969,42139649,42532865,42926081],"functionname":[29687809,33685509,41025537],"fails":[4128769,4784129,5505025,6488065,33816577,41680897,42926081],"finished":[11534337,17235969,25165825],"follow":[1],"file":[7143425,13631490,23003138,23199746,25231361,26214401,26476546,27000833,27131905,27787265,27983873,28049409,28508161,29032449,29556737,29884417,30408705,32636929,35323905,36044801,36110337,36634625,37027841,38404098,39124993,40304641,40828930,41091073,41811970,42139649,42532866],"following":[196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,1048577,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4718593,4784129,4849665,5046273,5308417,5505025,5570561,5898241,5963777,6029313,6094849,6356993,6488065,6750210,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7602177,7667713,7995393,8126465,8519681,8585217,8912897,8978433,9306113,10092545,10223617,10944513,12386305,13565953,14942209,24969217,25690113,26083329,26411009,26607617,26738689,26935297,27131905,27328513,27459585,27590657,27787265,27983873,28049409,28311553,28442625,28508161,28770305,28901377,29425665,29556737,29687809,29884417,29949953,30015489,30277633,30408705,30474241,30605313,31064065,31391745,31522817,31981569,32505857,32702465,33095681,33357825,34537473,35389441,35913729,36044801,36175873,37486594,37617665,37748737,38076417,38141953,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40370177,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42074113,42139649,42205185,42336257,42401793,42467329,42532865,42598401,42663937,42795009,42860545,42926081,42991617,43122689],"first":[5046273,5177345,5242881,5439489,6160385,7340033,8585217,8781825,9043970,9437186,9699329,9895937,10682370,11075586,11862017,12910594,14417922,31588353,32243713,42074113,42270721],"frames":[29556737,30408705,40304641,41091073],"fso":[4849666],"framework":[32178177],"forwards":[13565953],"foo":[5308417,6750209],"files":[27131905,27787265,27983873,28508161,29884417,35323905,36110337,37027841,38404097,39124993,40828929,41811969,42139649,42532865],"formatted":[13303809,22151169,26869761],"false":[5701633,6225921,6356993,6553601,6684673,7798785,9175041,9306114,9502721,9764865,10944513,11599873,12386305,12451841,12713986,12845057,13565953,14680065,15073281,15532033,16187393,16580609,16908289,17104897,17367041,17825793,18219009,18415617,18808833,19398657,19988481,20316161,20381697,20578305,21102593,21364738,21495809,21561345,23855105,24510465,24772609,25559041,25821186,26279937,36241409,40042497],"future":[38928385,42270721],"fully":[786433,3014657,5570561,6029313,8716289,9961473,13041665,14024705,14745601,15990785,40108033,41353217],"favor":[12451841,18415617,19398657,24772609],"features":[25427969,26869761,38928385,39321601,42270721,42729474],"float":[37486593],"filesystemobject":[4849666],"fallback":[27131905,27787265,27983873,28508161,29884417,33816577,38404097,40828929,41811969,42139649,42532865],"form":[5570561,6029313,6291457,8060929,11403265,11468801,12058625,13041665,13565953,14024705,14745601,15794177,15990785],"filenameextensions":[13631493,16384004,22020100,23003141,23199749,26476549,28049409,32636933,36044801],"finally":[9306113],"flagsattribute":[36634628,38928388,39387140,40501252,41484292,42270724,42729476,43057156],"field":[655362,1114114,1179650,5701633,14942209,27131906,27787266,27983874,28508162,29884418,31850497,35717122,38404098,40828930,41287684,41418756,41484290,41811970,42008580,42139650,42532866,42729473],"foreach":[5898243,8585218],"formatcode":[27131905,27787265,27983873,28508161,29884417,30867461,31522817,34078725,38404097,40828929,41811969,42139649,42401793,42532865],"float32array":[37486593],"f093":[4849665,5308417,11927553,11993089,12189697,12255233,12976129,13238273,13369345,13697025],"finalization":[16842753],"flags":[4128769,4784129,7143432,10878981,11141125,11206661,11403269,11993093,12058629,12255237,12779525,13238277,13697029,13893637,14024709,14155781,14221317,14942213,15990789,16252933,16580613,16646149,16973829,17498117,17825797,18153477,18284549,18546693,18874373,19136517,19267589,19529733,19791877,19857413,19922949,20119557,20643845,20840453,21757957,21823493,21954565,22020105,22085637,22282245,22740997,22872069,23003141,23199749,23920645,24117253,25100293,25493509,26476549,26607617,31391745,32112645,33423365,40108033,41418753,41680897,42926081],"facilitate":[30867457,34078721],"filenameextension":[27131906,27787266,27983873,28508161,29884418,35323910,36110342,37027845,38404097,39124998,40828930,41811970,42139650,42532865],"float64array":[37486593],"func":[4128770,4784129,5570561,5832711,7340040,27525123,41680897,42926082],"flag":[4128769,4784129,7143430,41680897,42926081]} \ No newline at end of file +{"feature":[29753348,40566785,43188225],"framework":[29753345],"filenameextensions":[13762564,14548997,22478853,23461893,23527428,24903685,27328513,30867461,39845889],"finallyfunc":[9895944],"formatted":[19726337,20381697,23855105],"formatting":[28770305,30212097,31260673,31588353,31981569,34668546,34734081,38273026,41418753,41615361,41877505,42139649,42991617,43384833],"following":[131073,196609,262145,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1179649,1376257,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,4128769,4194305,4325377,4653057,4718593,4849665,4915201,5046273,5242881,5505025,5570561,5701633,5963777,6029313,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6750209,6881281,7012354,7143425,7405569,7471105,7602177,7536641,7667713,7733249,7995393,8060929,8323073,8585217,9240577,9371649,9437185,9633793,9895937,14221313,14811137,27000833,27131905,27197441,27262977,27328513,27590657,27656193,27721729,27787265,27852801,27918337,28180481,28246017,28442625,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29491201,29556737,29687809,29949953,30081025,30146561,30212097,30277633,30408705,30736385,30932993,30998529,31260673,31391745,31588353,31981569,34734081,37748737,38797313,39583745,39649281,39845889,39911425,40042497,40108033,40173569,40239106,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43253761,43319297,43384833],"free":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,5046273,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41549825,41746433,41811969,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,43057153,43253761],"float64array":[40239105],"form":[6225921,6422529,7274497,8388609,12058625,12189697,12255233,12386305,13041665,13238273,14221313,16908289,19005441],"first":[1507329,5308417,5439489,5636097,5898241,6291457,7995393,9961474,10223618,10289154,10485761,10682370,10747905,10813442,11272193,11468801,11534338,29818881,35454977,42532865,43188225],"features":[23855105,23986177,39387137,40566785,42401794,43188225],"func":[3014657,3407874,6094855,6291464,6422529,23658499,41025538,42926081],"frames":[28246017,29949953,42467329,42729473],"flag":[3014657,3407873,6160390,41025537,42926081],"fields":[131074,196610,4194306,40108033,40501249,40894465,41811969,42008577,42270721,43057153],"file":[6160385,14548994,22478850,23461890,24313857,24903682,27328513,28246017,28377089,28770305,29229057,29949953,30212097,30801921,30867457,31588353,31981569,34078721,34734081,35782657,37552129,38207489,39124993,39845889,41418754,41615362,41877506,42467329,42729473,42991617,43384834],"files":[28770305,30212097,31588353,31981569,34078721,34734081,35782657,37552129,38207489,41418753,41615361,41877505,42991617,43384833],"funcname":[14352389],"filter":[8847366,8978438,9306118,9568262],"fail":[37945345,39452673],"fatal":[28246017,29687809,29949953,32178177,32964609,33947649,42467329,42663937,42729473],"functionname":[30081025,34013189,40304641],"fallback":[28770305,30212097,31588353,31981569,34734081,37027841,41418753,41615361,41877505,42991617,43384833],"format":[4849665,5242881,6422529,11796481,11993089,12124161,12451841,12582913,12976129,13369345,13697025,15728641,19726337,20381697,21364737,22020097,22478849,23461889,23527425,23855105,24903681,34668545,38273025],"float":[40239105],"functional":[14811137],"filesystemobject":[5242882],"function":[524289,655362,786434,851969,917505,1179649,1376257,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2752513,3014660,3080193,3145729,3211265,3276801,3342337,3407877,3997697,4259841,4325378,4587521,4653058,4718594,4784129,4849665,4915201,4980739,5046273,5111809,5242881,5308417,5439489,5505026,5570561,5636097,5701634,5832706,5898241,5963778,6029316,6094854,6160386,6225921,6291464,6356996,6422530,6488066,6553608,6619138,6684673,6750209,6815746,6881282,6946818,7012353,7077890,7143426,7208962,7274497,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7995400,8060930,8192002,8257537,8323075,8388610,8585218,8650754,8781826,9043970,9109506,9175042,9240578,9371650,9437187,9633794,9830401,9895945,9961473,10092545,10158081,10223617,10289153,10485761,10616833,10682369,10747905,10813441,10944513,11010049,11272193,11403265,11468801,11534337,11862017,13631489,13828097,13893633,14221313,14352388,14680065,14745601,15007745,15138817,15400961,15466497,15728641,15925249,16318465,16384001,16449537,16515073,16580609,16711681,16842753,17039361,17104897,17170433,17235969,17301505,17367041,17498113,17563649,17629185,17956865,18022401,18153473,18284545,18350081,18415617,18481153,18546689,18612225,18874369,19070977,19267585,19333121,19464193,19529729,19660801,19726337,19791873,19857409,19922945,20185089,20250625,20381697,20447233,20512769,20840449,21168129,21430273,21561345,22347777,22609921,22937601,23068673,23134209,23265281,23330817,23658498,23855105,24051713,24182785,24248321,24510465,25690113,25755649,26148865,26804225,26869761,27394049,28114945,28508161,28573697,30081030,33423361,34013185,34471937,34603009,36044801,36241409,37355521,37879809,38797313,39845889,39911425,40108033,40173569,40304647,40435713,40697857,40763393,41025541,41091073,41156609,41222145,41353217,41418754,41549825,41615362,41746435,41877506,41943041,42139649,42205186,42270721,42336257,42467329,42729473,42926084,42991618,43253761,43384834],"fully":[262145,2883585,6225921,6422529,8454145,8519681,12255233,12386305,13041665,13238273,40632321,40894465],"forwards":[14221313],"functions":[23068674,28770305,30212097,31588353,31981569,34734081,35389441,35848193,37158914,39190529,41025537,41418753,41615361,41877505,42926081,42991617,43384833],"float32array":[40239105],"f414c260":[21364737,22020097,22478849,23461889,23527425,24903681],"finished":[13434881,18939905,20971521],"fso":[5242882],"f093":[4849665,5242881,11796481,11993089,12124161,12451841,12582913,12976129,13369345,13697025],"floating":[5963777],"finalize":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325378,4653057,4718593,5046273,5505025,5701633,14286850,18808841,20709378,23003138,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418754,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"formatcode":[28770305,30212097,31260673,31588353,31981569,34668549,34734081,38273029,41418753,41615361,41877505,42139649,42991617,43384833],"favor":[13303809,16056321,18677761,25100289],"finalization":[18808833],"follow":[1],"finally":[9895937],"filenameextension":[28770305,30212098,31588354,31981570,34078725,34734081,35782662,37552134,38207494,41418753,41615362,41877505,42991618,43384834],"foreach":[6553603,7995394],"future":[40566785,43188225],"fails":[3014657,3407873,5963777,6356993,37027841,41025537,42926081],"functionality":[29753345,42401793],"field":[393218,1114114,1245186,1310722,9109505,14811137,28770306,30212098,31588354,31981570,34734082,35323905,37945346,39452674,41418754,41615362,41811972,41877506,42008580,42401793,42991618,43057156,43384834],"final":[9895937],"facilitate":[34668545,38273025],"false":[6029313,6815745,7340033,8192001,8323073,9043969,9109505,9437185,9895938,10092545,10158081,10616833,10944513,11206657,13303809,13959169,14221313,14286850,15466497,15925249,16056321,16318465,16449537,17170433,18284545,18350081,18481153,18546689,18677761,19070977,19333121,19922945,20709378,20840449,21168129,21430273,21495809,23003138,24051713,24510465,25100289,25690113,26804225,28508161,32571393,36044801],"flags":[3014657,3407873,6160392,11927557,12058629,12124165,12386309,12451845,12845061,12779525,12910597,12976133,13172741,13238277,13697029,14811141,15532037,15990789,16121861,16908293,16973829,17498117,17825797,18022405,18087941,18612229,18743301,19136517,19202053,19333125,19595269,19988485,20054021,20643845,20774917,21102597,21364741,21889029,21954565,22020101,22413317,22478853,22806533,22872069,22937605,23199749,23396357,23461893,23527433,23789573,24903685,25690117,25821189,28442625,28901377,35061765,36372485,40632321,41025537,42926081,43057153],"flagsattribute":[39124996,39452676,39976964,40566788,41484292,41680900,42401796,43188228],"foo":[4849665,7012353]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_103.json b/docs/Reference/fti/FTI_103.json index 6878fa7b0..c178b9d1a 100644 --- a/docs/Reference/fti/FTI_103.json +++ b/docs/Reference/fti/FTI_103.json @@ -1 +1 @@ -{"grow":[27787265,31522817,34471937,36765697,42139649,42401793],"gain":[8060929],"garbage":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801090,4128769,4456450,4587522,4653058,4784129,6094850,7602178,11534337,12451842,16842755,17235969,18415618,19398658,24772610,25165825,35913729,36044801,37617665,37748737,38076417,38273025,38404098,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828930,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811970,41943041,42008577,42139650,42336257,42401794,42532866,42663937,42926081],"generally":[6750209],"generated":[6094854,7602182,17104898,17367042,18219010,18743298,18808834,19005442,19070978,19333122,19988482,20054018,20250626,20381698,20578306,20774914,21102594,21495810,21561346,22216706,22347778,22478850,23330818,23789570,24510466,25559042,26148867,28835843,29294595,32374787,38993921,42139654,42401798],"guid":[3801096,4456456,4587528,4653064,4849665,5308417,7602184,10813446,10878982,11141126,11206662,11272198,11927553,11993089,12189697,12255233,12976129,13238273,13369345,13697025,14221318,14286854,14811142,21954561,22020097,22609924,23003137,23199745,23527428,25100289,26476545,38404104,40828936,41811976,42139656,42532872],"general":[131073,5767169,6684673,7864321,31850497],"getruntimeheapinfo":[7602177,21299205,42139649],"giving":[39714817],"gettype":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35586050,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"gets":[327681,458753,720897,786433,851969,917505,1048578,1114113,1179649,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424835,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801090,4128774,4456450,4587522,4653058,4784134,5046273,5636097,5767169,6094849,6422529,7602178,10944513,12386305,13303809,15597569,17170433,22151169,23724034,24969219,25690113,26083330,26411010,26607622,26738690,26869761,26935298,27131911,27328513,27459587,27590659,27656193,27787273,27852801,27983879,28049414,28180481,28311557,28442629,28508166,28573698,28639233,28704769,28770305,28966913,29163521,29229057,29360130,29425672,29491201,29556749,29622273,29687818,29753345,29818881,29884423,29949955,30015490,30081025,30146561,30212097,30277633,30408718,30474242,30539777,30605313,30670849,30736385,30932994,31064067,31129601,31195137,31260673,31326209,31391748,31522822,31588353,31653889,31719425,31784961,31916033,31981571,32112641,32243713,32309249,32440321,32505860,32571393,32636929,32702468,32768001,32964609,33030145,33095683,33161217,33226753,33292289,33357829,33423361,33554433,33619969,33685505,33751041,33882113,33947649,34144257,34275329,34340865,34471937,34537476,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389442,35520513,35651585,35782657,35848193,35913732,35979265,36044807,36110337,36175876,36241409,36372481,36503553,36569089,36700161,36765697,36831233,36962305,37027841,37093378,37158913,37224449,37289985,37355521,37421057,37486596,37552129,37617666,37748737,37814273,37945345,38010881,38076421,38207489,38273025,38338561,38404104,38469633,38666241,38731780,38797313,39059457,39124993,39190529,39256065,39452673,39518209,39649281,39714818,39780358,39845889,39911425,39976966,40108039,40173569,40239105,40304654,40370178,40435713,40566787,40697857,40763395,40828937,40894465,40960003,41025547,41091087,41156610,41222145,41287683,41353219,41418757,41549828,41615363,41680902,41811977,41943046,42008579,42074118,42139659,42336260,42401799,42467336,42532873,42598401,42663937,42795011,42860545,42926086,42991619],"gadgets":[4718595,5963779,38731779],"getelement":[4128769,4784129,5767173,41680897,42926081],"generating":[6094854,7602182,18743297,19005441,19070977,19333121,20054017,20250625,20774913,22216705,22347777,22478849,23330817,23789569,26148867,28835843,29294595,32374787,42139654,42401798],"getunderlyingobject":[3080193,27197445,38141953],"getmetaobject":[2424833,41943041],"getheapinfo":[6094849,18677765,42401793],"getobjectdata":[2293762,3211266,10616840,15007752,40304642,41091074],"generate":[8585217,38993922],"generic":[1769473,1835009,2228225,4521985,4915201,5242881,5505025,5570562,5898241,6029317,6160385,6225921,6291457,6356993,6488065,6750210,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7995393,8126465,8519681,8716289,8912897,8978433,9895937,9961473,10092545,10223617,10944513,11403265,11468801,11665409,11862017,12058625,12386305,12779521,13041666,14024706,14745602,14942210,15794177,15990786,34537473,37486593,37748737,39256065],"getting":[2424833,41943041],"getbytes":[1245185,1310721,1376257,1572865,2228225,11337733,11730949,36175873,37486593,42598401,42795009,42991617],"getstacktrace":[3801089,4456450,4587521,4653057,7602178,13303813,22151174,26869766,38404097,40828929,41811969,42139650,42532866],"gethashcode":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"getcomponents":[7143425],"getdynamicmembernames":[2424833,41943041],"groups":[6225921,10944513],"guide":[5177345,5242881,5439489,6160385,8781825,9699329,9895937,11862017],"greater":[33947649,39518209,40239105,40697857],"getbaseexception":[2293761,3211265,9306113,40304641,41091073],"given":[2359297,10420225,17039361,39976961,42139649,43057153],"getvalue":[14942209],"getenumerator":[4849665,5046273,42074113],"global":[3801089,4456449,4587521,4653057,7602177,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11927553,11993089,12058625,12189697,12255233,12779521,12976129,13041665,13238273,13369345,13697025,14024705,14221313,14286849,14745601,14811137,14942209,15400962,15794177,15990785,24444929,30867457,31588353,32243713,32833537,34078721,36306945,38404097,38600705,40828929,41811969,42139649,42270721,42532865,42729473,43057153,43122689],"globalmembers":[42270721,43057153],"getproperty":[2424834,4128770,4784130,5636102,6422534,15597574,17170438,28573699,29360131,41680898,41943042,42926082],"getnamespacenode":[2162689,9240581,38731777]} \ No newline at end of file +{"garbage":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342338,3407873,4325378,4653058,4718594,5046273,5505026,5701634,13303810,13434881,16056322,18677762,18808835,18939905,20971521,25100290,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418754,41549825,41615362,41746433,41811969,41877506,41943041,42008577,42139650,42205185,42270721,42336257,42467329,42729473,42926081,42991618,43057153,43253761,43384834],"gain":[8388609],"generally":[7012353],"getproperty":[3014658,3211266,3407874,7798790,8650758,15400966,17039366,24117251,24641539,40763394,41025538,42926082],"globalmembers":[41680897,43188225],"getruntimeheapinfo":[4653057,28114949,42991617],"getunderlyingobject":[3538945,22347781,39649281],"getbytes":[1703937,1769473,1835009,1900545,2097153,9830405,11862021,39583745,40239105,42795009,42860545,43122689],"grow":[31260673,31588353,36896769,37421057,42139649,42991617],"getting":[3211265,40763393],"general":[65537,6815745,7208961,9175041,35323905],"greater":[35913729,36634625,37486593,38076417],"getelement":[3014657,3407873,7208965,41025537,42926081],"getcomponents":[6160385],"getvalue":[14811137],"getbaseexception":[3080193,3276801,9895937,42467329,42729473],"generating":[3342342,4653062,17301505,17367041,17956865,18415617,19791873,19857409,20250625,22609921,23265281,25755649,25886723,26148865,27525123,28049411,28573697,29294595,42139654,42991622],"getobjectdata":[3080194,3276802,10878984,14155784,42467330,42729474],"generic":[655361,786433,2097153,4784129,5111809,5439489,5832705,5898241,5963777,6029313,6160385,6225925,6291457,6356993,6422530,6553601,6750209,6881281,7012354,7143425,7274497,7405569,7471105,7602177,7536641,7667713,7733249,8060929,8323073,8454145,8519681,8585217,9043969,9240577,9371649,9437185,9633793,10747905,11468801,12058625,12189697,12255234,12386306,12648449,13041666,13172737,13238274,14811138,16908289,19005441,27131905,40239105,41746433,42205185],"getstacktrace":[4325377,4653058,4718593,5505026,5701633,19726341,20381702,23855110,41418753,41615361,41877506,42991618,43384833],"global":[4325377,4653057,4718593,5505025,5701633,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,14352386,14483457,14811137,15859713,16908289,19005441,23068673,29818881,34668545,35389441,35454977,35848193,38273025,39190529,41418753,41615361,41680897,41877505,42074113,42401793,42991617,43188225,43384833],"getheapinfo":[3342337,19660805,42139649],"getmetaobject":[3211265,40763393],"gets":[196610,262145,393217,524289,655361,720897,786433,851969,917505,1179649,1245185,1376257,1507329,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2686977,2621441,2752513,2818049,2883585,2949121,3014662,3080193,3145729,3211267,3276801,3342337,3407878,4325378,4653058,4718594,5046273,5505026,5701634,7208961,7798785,8323073,8650753,9437185,15400961,17039361,19726337,20381697,23855105,24117250,24641538,25296898,26935298,27000835,27131908,27197443,27262979,27328518,27590657,27656194,27721729,27852803,27918340,28180482,28246029,28442630,28704773,28770311,28835845,28901380,28966916,29032449,29097986,29163521,29360129,29425665,29491205,29556739,29622273,29687816,29818881,29949966,30081034,30146562,30212104,30277633,30408706,30474241,30539777,30605313,30670849,30736386,30867457,30932995,30998531,31195137,31260678,31326209,31391746,31457281,31522817,31588362,31653889,31719425,31784961,31916033,31981576,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226754,33292289,33423361,33488897,33554433,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34340865,34406401,34471937,34537473,34603009,34734088,34799617,34930689,34996225,35061761,35127297,35192833,35258369,35454977,35520513,35586049,35651585,35717121,35782657,35913729,35979265,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,37093377,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37748739,37814273,37879809,38010881,38076417,38141953,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38797316,38862849,38928385,38993921,39256065,39321601,39583748,39780353,39845895,39911429,40042498,40108033,40173572,40239108,40304651,40435716,40632327,40697858,40763398,40828931,40894467,41025542,41091078,41156614,41287682,41353219,41418761,41549826,41615370,41746433,41811971,41877514,41943043,42008579,42139655,42205185,42270721,42336260,42467342,42532870,42663944,42729487,42795009,42860547,42926086,42991628,43057157,43122691,43253761,43319297,43384842],"giving":[41287681],"gethashcode":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"gettype":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2686977,2621441,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,37748737,38797313,39059458,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"given":[2424833,9699329,16646145,41091073,41680897,42991617],"generate":[7995393,40370178],"getdynamicmembernames":[3211265,40763393],"getenumerator":[1507329,5242881,42532865],"generated":[3342342,4653062,17170434,17301506,17367042,17956866,18284546,18350082,18415618,18481154,18546690,19070978,19791874,19857410,20250626,20840450,21168130,21430274,22609922,23265282,24510466,25755650,25886723,26148866,26804226,27525123,28049411,28508162,28573698,29294595,40370177,42139654,42991622],"guid":[4325384,4653064,4718600,4849665,5242881,5505032,5701640,11665414,11730950,11796481,11927558,11993089,12124161,12451841,12582913,12713990,12845062,12779526,12910598,12976129,13369345,13697025,14483462,21364737,22020097,22478849,23461889,23527425,24903681,28639236,29884420,41418760,41615368,41877512,42991624,43384840],"guide":[5308417,5439489,5636097,5898241,10485761,10747905,11272193,11468801],"gadgets":[4915203,5570563,40435715],"groups":[8323073,9043969],"getnamespacenode":[851969,8257541,40435713]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_104.json b/docs/Reference/fti/FTI_104.json index 22120e684..4cea9bafe 100644 --- a/docs/Reference/fti/FTI_104.json +++ b/docs/Reference/fti/FTI_104.json @@ -1 +1 @@ -{"hitline":[1048579,1114114,1179650,3014659,26673153,37421062,41353222],"helplink":[29556737,30408705,40304641,41091073],"hash":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"handled":[9306113],"handler":[1769473,1835009,4063233,5373953,24444929,37748739,39256066],"help":[29556737,30408705,40304641,41091073],"heapsizelimit":[33357825,34799621,39780353],"heap":[27787266,31522818,32505860,33357828,33947649,34799617,34865154,35520514,35782657,35848196,36700161,38076420,38207489,39518213,39780356,39911428,40239105,40697857,42139650,42401794],"hosts":[33947649,39518209,40239105,40697857],"host":[1507329,1638404,1769473,1835009,2162696,3801100,4063233,4128792,4456460,4521988,4587532,4653068,4718604,4784158,4849667,5177348,5242884,5308419,5373953,5439491,5505030,5570573,5636098,5767170,5898248,5963783,6029325,6160387,6225923,6291462,6356998,6422530,6488070,6553602,6619138,6684674,6750222,6815746,6881286,6946819,7012358,7077895,7143431,7208966,7274502,7340037,7405574,7536646,7602188,7667718,7733250,7798786,7864322,7929859,7995398,8060930,8126470,8192001,8257540,8323073,8388609,8454145,8519686,8585222,8650753,8716289,8847361,8912902,8978438,9109505,9240577,9306120,9371649,9502721,9830401,9961473,10092550,10223622,10420227,10551297,10813441,10878977,10944520,11010050,11141121,11206657,11272193,11403267,11468803,11665410,11927553,11993089,12058627,12189697,12255233,12386311,12779522,12976129,13041667,13238273,13369345,13565957,13697025,14024707,14221313,14286849,14745603,14811137,14942216,15794179,15990787,19726337,22544386,22675458,23068675,23461890,23724034,23986178,24182787,24313858,24444936,24903684,25034754,25755651,25952264,26345475,26542082,26804226,27131907,27787267,27983875,28377093,28508164,28573698,29229057,29425665,29884419,31588353,31850497,32243713,32833537,34013187,34209794,34471937,36306945,36765697,36896770,37093379,37748738,37879810,38404112,38600705,38731794,39256066,40828943,41091073,41680927,41811983,41877508,42139663,42205186,42467329,42532879,42663938,42729473,42926104,43057156],"handle":[4128769,4784129,5373953,9306113,28770305,40173569,41680897,42860545,42926081],"high":[26673153,39321601],"htm":[7143425],"heapsizesampleinterval":[31522817,34865157,42401793],"hostitemflags":[3801102,4456462,4587534,4653070,7602190,10813441,10878983,11010049,11141127,11206663,11272193,11403271,11468801,11665409,11927553,11993095,12058631,12189697,12255239,12779527,12976129,13041665,13238279,13369345,13697031,14024711,14221319,14286849,14745601,14811137,14942214,15794177,15990791,22609924,23461889,23527428,24313857,24444929,25952260,38404110,40828942,41811982,42139662,42532878,43057157],"hostfunctions":[4128771,4784169,5505026,5636098,5701634,5767170,5832707,5898242,6225922,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077891,7143426,7208962,7274498,7340035,7405570,7471110,7536642,7667715,7733250,7798786,7864322,7929859,7995394,8060930,8126466,8257538,8519682,8585219,8912898,8978434,9306114,10092546,10223618,10944514,12386306,14942209,22544386,22675458,23724034,23986178,24444929,25755650,26804226,27525122,28573698,34209793,35717121,41680942,42926090],"hitcount":[1048577,1179653,29687809,34734085,41025537,41353217],"http":[7143425,9306113],"holds":[6750209,11796481,15335425],"hit":[1048577,1179649,29687810,34734081,37421058,41025538,41353217],"hitlines":[29687809,37421061,41025537],"hostsettings":[24444929,28901379,32178178,43122695],"hos":[2686977,26279938,27394049,42860546,43057153],"hresult":[28180486,29425666,29556738,30408706,40304642,41091074,42467330],"handling":[9306113],"handlers":[42139649,42532865],"hosttypeargs":[5570565,6029317],"honor":[39387137],"hands":[43057153],"halt":[27131905,27787265,27983873,28508161,29884417,36241409,38404097,40828929,41811969,42139649,42532865],"hierarchy":[35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39583745,39714817,39780353,39976961,40304641,40370177,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41418753,41549825,41615361,41680897,41811969,41877505,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081,43122689],"hostwindow":[27131905,27983873,29884417,37814277,40828929,41811969,42532865,42860545],"hidedynamicmembers":[43057153],"hosttypecollection":[589827,2162691,4718603,4784129,5963781,8192006,8323074,8388610,8454146,8650754,8716290,8847366,9109506,9240578,9371654,9830406,9961474,10551302,23068673,24444929,24903682,26345474,28377095,29949955,38731788,41549825,41680897],"hierarchical":[4718593,5963777,38731777]} \ No newline at end of file +{"hit":[196609,393217,30081026,34603009,35258370,40304642,40894465],"hitline":[196611,393218,1245186,2883587,25231361,35258374,40894470],"holds":[7012353,11337729,14942209],"helplink":[28246017,29949953,42467329,42729473],"heap":[28966916,29491204,31260674,31588354,35913729,35979268,36438017,36569089,36634629,36700164,37224449,37486593,37814273,38076417,38141954,38666242,39911428,41156612,42139650,42991618],"hosttypecollection":[851971,983043,3014657,4915205,5111818,5570571,7929858,8126466,8257538,8454146,8519682,8716290,8847362,8912902,8978438,9306114,9568262,9764870,10420230,22675457,23068673,27000835,30343170,31129602,31850503,40173569,40435724,42926081],"hitlines":[30081025,35258373,40304641],"hosttypeargs":[6225925,6422533],"handlers":[41877505,42991617],"hands":[41680897],"hosts":[35913729,36634625,37486593,38076417],"hierarchy":[37748737,38797313,39518209,39714817,39845889,39911425,40042497,40108033,40173569,40304641,40435713,40697857,40763393,40828929,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"handle":[3014657,3407873,4980737,9895937,29032449,36765697,41025537,42926081,43319297],"hitcount":[196609,393221,30081025,34603013,40304641,40894465],"hostsettings":[23068673,27787267,29753346,42074119],"handler":[655361,786433,4587521,4980737,23068673,41746435,42205186],"handling":[9895937],"high":[25231361,39387137],"hostitemflags":[4325390,4653070,4718606,5505038,5701646,11665409,11730945,11796481,11927559,11993089,12058631,12124167,12189697,12255233,12386311,12451847,12582913,12648449,12713985,12845063,12779527,12910599,12976135,13041665,13172743,13238279,13369345,13697031,14483457,14811142,15859713,16908295,19005441,23068673,23920641,24969220,26083329,28639236,29884420,41418766,41615374,41680901,41877518,42991630,43384846],"heapsizesampleinterval":[31260673,38666245,42139649],"hierarchical":[4915201,5570561,40435713],"hostwindow":[30212097,31981569,34734081,38928389,41615361,41877505,43319297,43384833],"hos":[3473409,21495810,26345473,41680897,43319298],"hresult":[28246018,29687810,29949954,31522822,42467330,42663938,42729474],"hidedynamicmembers":[41680897],"hostfunctions":[3014697,3407875,5832706,5963778,6029314,6094851,6160386,6291459,6356994,6488067,6553602,6619138,6684675,6750211,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7340034,7405570,7471106,7602178,7536642,7667714,7733250,7798786,7864326,7995395,8060930,8192002,8323074,8388610,8585218,8650754,8781826,9043970,9109506,9175042,9240578,9371650,9437186,9633794,9895938,14811137,23068673,23658498,23724034,24117250,25034754,25559042,26017794,26673154,26935298,37158913,37945345,41025546,42926126],"host":[327684,589825,655361,786433,851976,3014686,3407896,4325388,4587521,4653068,4718604,4784132,4849667,4915207,4980737,5111811,5242883,5308420,5439492,5505036,5570572,5636099,5701644,5832707,5898243,5963782,6029318,6160391,6225933,6291461,6356998,6422541,6488070,6553608,6619138,6684675,6750215,6815746,6881286,6946820,7012366,7077890,7143430,7208962,7274502,7340034,7405574,7471110,7536646,7602182,7667718,7733254,7798786,7929857,7995398,8060934,8126465,8192002,8257537,8323080,8388610,8454145,8519681,8585222,8650754,8716289,8781826,8847361,8912897,8978433,9043971,9175042,9240582,9306113,9371654,9437191,9568257,9633798,9699331,9764865,9895944,10420225,11206657,11665409,11730945,11796481,11927553,11993089,12058627,12124161,12189699,12255235,12386307,12451841,12582913,12648450,12713985,12845057,12779521,12910593,12976129,13041667,13172738,13238275,13369345,13697025,14221317,14483457,14811144,15859714,16908291,19005443,22216707,22675459,22740994,23068680,23724034,23920642,24117250,24969224,25034755,25559042,25952257,26017794,26083330,26542082,26673154,26935298,28770309,29687809,29818881,30212100,30343172,31129603,31588356,31850501,31981572,32243713,33226755,33357825,34734084,35323905,35389441,35454977,35848193,36175873,36896769,36962306,37158914,37421057,37683202,38731779,39190529,39518212,40435730,41025560,41418769,41615376,41680900,41746434,41877520,42205186,42401793,42598402,42663937,42729473,42926111,42991632,43253762,43384848],"http":[6160385,9895937],"htm":[6160385],"heapsizelimit":[29491201,36569093,41156609],"handled":[9895937],"honor":[13959169,14221313,39976961],"help":[28246017,29949953,42467329,42729473],"halt":[28770305,30212097,31588353,31981569,32571393,34734081,41418753,41615361,41877505,42991617,43384833],"hash":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2686977,2621441,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_105.json b/docs/Reference/fti/FTI_105.json index 6f847e184..b50c76f42 100644 --- a/docs/Reference/fti/FTI_105.json +++ b/docs/Reference/fti/FTI_105.json @@ -1 +1 @@ -{"int32":[2424835,4128773,4521985,4784131,5505025,5570561,5832707,5898241,6094850,7077891,7274497,7340035,7929859,7995398,8585218,13565953,15073282,16973826,17170434,17498114,19136514,19202050,19267586,19529730,19857410,19922946,20119554,21823490,23986178,24051713,24117250,25362436,27525122,27918337,28180481,29360129,30932993,33095681,33488898,33947649,34406404,35127298,37683201,39518209,40239105,40697857,41680899,41943044,42139652,42401798,42926085],"implementers":[2424833,10420225,41943041],"invocations":[10420225],"int":[4521987,5832707,7077891,7340035,7929859,8585219,15073283,16973827,17170435,17498115,19136515,19202051,19267587,19529731,19857411,19922947,20119555,21823491,24117251,28180484,33947653,35127300,37486593,37683204,38338563,39059459,39518213,40239109,40697861],"immediate":[29556737,30408705,40304641,41091073],"interchangeable":[6750209],"intvalue":[5505025],"indentation":[30867457,34078721],"idynamicmetaobjectprovider":[4128778,4784138,5767174,6422535,6553607,6619142,6684678,7733255,7864326,8060934,22544386,25755649,26804226,28573698,41680906,42926090,43057153],"iscriptengineexception":[24444929,28180482,29229058,29425667,29491201,30212098,30670849,31129601,31326210,31784961,32309250,32964609,33161218,34144258,34930689,35061762,35979265,37158913,37289985,38010881,40304644,41091076,42467334],"idictionary":[5046279,9633793,9764865,11599873,12845057,28442629,33554433,34996225,36503553,38535173,41549828,42074128],"immutable":[24444929,39714817],"interval":[27787266,31522818,34865153,35520513,38338561,39059457,42139650,42401794],"ilist":[14942209],"initialize":[2424833,8847361,9371649,9830401,10551297,41943041],"indexer":[14942209],"indexers":[14942210],"indexed":[2424835,15073281,17170433,19202049,24051713,27918337,29360129,30801921,30932993,33095681,35127297,41943044],"itypedarray":[1572867,2228227,11075586,12648450,14417922,25427970,29818882,32702467,34537476,36175878,37486613],"iscriptableobject":[1507331,10420226,24444929,41549828,42205190,42926084],"interfere":[42729473],"instances":[13565953,16056321,16515073,16711681,16973826,17104897,17367041,17760257,17891329,17956865,18219009,18612225,18743297,18808833,18939905,18874370,19005441,19070977,19333121,19660801,19857410,20054017,20381697,20578305,20774913,20905985,21102593,21561345,21692417,21757954,22347777,22478849,23330817,24444929,24510465,33619969,35323905,36110337,38273025,39124993,39714818,42139650],"istransient":[39387137],"iterates":[5046273,42074113],"icomparablet":[6356994],"ienumerable":[5046273,37683206,38862854,41549832,42074121],"ipropertybag":[4128774,4784134,4915205,5046275,5636103,6815751,7667713,7798791,22544386,24444930,26804226,28442627,28573698,41549829,41680902,42074118,42926086],"implement":[14942209,42074113,43057153],"isreadonly":[9502725,28442625,42074113],"interfaces":[13565953,13631489,14614529,14680065,15859713,16384001,17629185,17956865,18153473,18219009,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20054017,20250625,20643841,20971521,21692417,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23265281,23920641,24117249,24444929,25100289,25427969,25493505,25559041,26476545,27394049,37486593,40763393,40960001],"introduced":[30801921],"icollection":[5046282,28442630,34996231,36503559,41549828,42074132],"itemname":[10813445,10878981,11010053,11141125,11206661,11272197,11403269,11665413,11927557,11993093,12189701,12255237,12779525,12976133,13041669,13238277,13369349,13697029,14024709,14221317,14286853,14745605,14811141,14942213,15794181,15990789],"instantiation":[4128769,4784129,6619140,7274497,7667713,8257538,25755649,28639233,34340865,41680897,42532865,42926081],"import":[4521986,4718593,5308418,5570562,5898241,5963777,6029314,6291457,6750209,6881281,7012353,7143425,7208961,7340033,7405569,7536641,7995393,8126465,8519681,8912897,8978433,9306113,10092545,10223617,11141122,11272194,12189697,12255233,13369346,13697026,14221313,14811137,24444929,31588353,32243713,41680897],"including":[13565953],"invalidoperationexception":[40304645],"iscomparable":[6356993],"int32array":[37486593],"indices":[5767174,6684678,7864326,14942209,33095681,37683201,41943041],"int32t":[5505026,5570562,5898242],"idisposable":[6488066,11534337,17235969,25165825,38404100,40566788,42401796],"instead":[14942209,16384004,22020100,33947652,35717121,39452676,41484289],"intptr":[40173574],"invokes":[2424834,3801089,4128772,4456449,4587521,4653057,4784131,5832706,5898242,7340034,7602177,8585218,9306113,12713986,15400961,16908289,18087937,21364738,25821186,27525122,36241409,38404097,40828929,41680899,41811969,41943042,42139649,42532865,42663937,42926084],"iarraybuffer":[1310723,9437186,11730946,12910594,25427969,28704770,30277635,33292294,42598406],"ignores":[6946817],"identical":[17104897,17367041,18219009,18808833,19988481,20381697,20578305,21102593,21495809,21561345,24510465,25559041],"invoked":[3670017,3866625,4128774,4325377,4390913,4784134,6225921,6946817,7274497,8257537,9306113,10944513,12386305,15400961,16842753,22675458,23724034,25755650,31588353,32243713,41680902,42139649,42926086],"ignored":[6946817,38928385,42270722,42729474],"include":[7143425,13565953],"importable":[34013185],"inheritance":[35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39583745,39714817,39780353,39976961,40304641,40370177,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41418753,41549825,41615361,41680897,41811969,41877505,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081,43122689],"icomparable":[6356994],"int8array":[37486593],"implementation":[2424844,24444931,27394049,31588353,32243713,32571393,34013185,38404097,41549825,41943052,42336257,42532865],"inherits":[36175873,37486593,38731777,39714817,40304641,40763393,40828929,40960001,41091073,41287681,41418753,41680897,41811969,41943041,42008577,42074113,42139649,42336257,42532865,42991617],"inherited":[327686,393217,458758,524289,589825,720902,786438,851974,917512,1245187,1441800,1572867,1703944,1769478,1835014,1900552,1966088,2031622,2097158,2228227,2162701,2293766,2359302,2424852,2490373,2555910,2621446,2818054,2883590,2949126,3014662,3145736,3211270,3276806,3342341,3801093,4128774,4456499,4587576,4653112,4784175,5046282,6094854,7602226,24248324,26083330,26411009,26935298,27131920,27787277,27983886,28114945,28442629,29556744,29884432,29949955,30015489,30343169,30408713,30605313,31391746,31457284,31981571,32702467,34537476,35913734,36044806,36175878,37486599,37617670,37748742,38076422,38273029,38404101,38731793,39256070,39714825,39780358,39976966,40108038,40304655,40566790,40763401,40829000,40960010,41025542,41091088,41156614,41222149,41287690,41353222,41418762,41549830,41615366,41680943,41812040,41943060,42008585,42074127,42139711,42336262,42401798,42532929,42663942,42926086,42991622],"iserializable":[10616833,15007745],"ihostwindow":[2686979,26279938,27394049,28770307,37814279,40173570,42860550],"initonly":[655361],"information":[3801090,3932161,4194305,4456450,4587522,4653058,5177345,5242881,5439489,5570561,5832705,6029313,6094852,6160385,6291457,7077889,7274497,7602181,7929857,8257537,8781825,9699329,9895937,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11796481,11862017,11927553,11993089,12058625,12124163,12189697,12255233,12320769,12779521,12976129,13041665,13107201,13238273,13369345,13697025,13959169,14024705,14221313,14286849,14614529,14745601,14811137,15269889,15335425,15728642,15794177,15990785,16056322,18350081,18677762,20185090,21102594,21299202,21495809,23330818,23396353,23592961,23789570,24248321,24444930,24969217,25296897,26148866,26673153,26738689,27459585,28835843,29556737,30408705,31195137,31457281,31588354,32243714,34603009,35717121,35913729,38404098,38535171,38666241,39780353,40108033,40304641,40566785,40632322,40828930,41091073,41484289,41811970,42139653,42336257,42401796,42532866],"interrupts":[3801089,4456449,4587521,4653057,7602177,14090241,22937601,27721729,38404097,40828929,41811969,42139649,42532865],"isnull":[4128769,4784129,5701637,35717122,41484289,41680897,42926081],"internal":[32178177,36438018,42139649],"inside":[2424833,41943041],"item":[5046273,7667715,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11927553,11993089,12058625,12189697,12255233,12779521,12976129,13041665,13238273,13369345,13697025,14024705,14221313,14286849,14745601,14811137,14942210,15794177,15990785,27590657,28442625,29949953,30932995,33095682,33554437,35127300,36569092,38731777,41549825,41943042,42074114,42270721],"iarraybufferview":[1245187,1376259,1572867,2228227,9043970,10682370,11337730,25427969,31064067,31981571,32702467,33292290,34275330,34537475,35258370,36175882,37486602,42795014,42991626],"idisposablet":[6488066],"iwindowsscriptobject":[3080195,27197442,27394049,38141958],"invoking":[2424833,5832705,13565953,14942209,28508161,37093379,38404097,41943041],"interactive":[30867457,34078721],"inotifypropertychanged":[983041,41549828],"info":[10616838,11796485,15007750,15335429,18350085,24969217,27459586,31195141,34603014,35913729,38535173,40632325,42336258],"iconvertible":[6881285,7012357,7208965,7405573,7536645,7995397,8126469,8519685,8912901,8978437,10092549,10223621],"immutablevalueattribute":[1441795,9568262,24444929,30605315,39714825],"instantiate":[4849665,10813441,10878977,11206657,11927553,11993089,12976129,13238273,14286849],"increment":[2424833,41943041],"imports":[3801096,4456456,4521985,4587528,4653064,4718594,4784136,4915201,5308418,5570562,5963778,6029314,6291457,7274497,7602184,11141121,11272193,12189697,12255233,13369345,13697025,14221313,14811137,23068674,23527432,24182787,38404104,38928385,40828936,41680904,41811976,42139656,42270721,42532872],"individual":[2424833,29622273,40763393,40960001,41943041],"int16":[4128769,4784129,7012358,41680897,42926081],"interrupt":[3801089,4456450,4587521,4653057,7602178,14090245,22937606,27721734,35848193,38404097,39911425,40042497,40828929,41811969,42139650,42532866],"invokemethod":[2424833,18087941,41943041],"invocable":[5570561,6029313,6291457,11403265,11468801,12058625,13041665,14024705,14745601,15794177,15990785,36896769,37879809],"invocation":[15400961,16908290,18087938,37093377],"instance":[262145,327681,458753,655361,720897,786436,851969,917509,1441797,1703941,1769473,1835009,1900549,1966085,2031617,2097153,2162689,2293761,2359297,2490369,2424834,2555905,2621441,2752516,2818049,2883585,2949121,3014660,3145733,3211265,3276801,3342337,3407873,3604481,3801089,3932161,3997697,4128781,4194305,4259841,4456449,4587521,4653057,4718593,4784141,4849666,4915201,4980737,5111809,5177346,5242882,5308418,5439490,5505025,5570561,5898241,5963777,6029313,6094855,6160386,6356993,6488065,6750209,6881282,7012354,7077889,7143425,7208962,7274498,7340033,7405570,7471105,7536642,7602177,7667713,7995394,8126466,8519682,8585217,8781827,8912898,8978434,9306113,9568257,9699331,9895939,10092546,10223618,10747905,10944513,11862019,12386305,12517377,13172737,13631490,13893633,14155777,14352385,14483457,14876673,15204353,15663105,16252929,16384002,16449537,16646145,16973827,17301506,17432577,17498114,17629187,17694721,17956868,18153474,18284545,18350081,18546691,18874372,19136513,19267586,19464193,19529731,19595266,19791874,19857412,19922947,20119554,20643842,20840450,20905987,20971523,21233665,21430273,21757955,21823490,21889027,21954562,22020098,22085633,22282241,22740994,22806530,22872067,23003138,23134210,23199746,23658498,23920642,24117251,24576002,24838146,25100290,25231362,25362444,25493507,26017793,26214406,26476546,26673156,26869761,27000838,27066376,27131905,27394051,27787266,27983873,28246018,28508161,29032450,29425665,29556738,29884417,30408706,30998532,31522817,31916033,32571393,32899073,33161217,33488902,34406412,34930689,35913730,36044802,37289985,37552129,37617665,37748737,37879812,38076418,38273025,38404100,38731777,38928385,39256065,39583748,39714822,39780353,39976961,40108036,40304644,40566785,40763399,40828937,40960006,41025537,41091076,41156610,41222147,41287686,41353220,41418765,41549825,41615361,41680910,41811977,41943042,42008583,42139665,42270721,42336258,42401813,42467329,42532869,42663938,42729474,42926096],"identify":[5767169,6684673,7864321],"imported":[4521985,4915202,5308417,5570562,5963777,6029314,6291458],"items":[5046273,42074113,43057153],"inherit":[38731777,39714817,40304641,40763393,40828929,40960001,41091073,41287681,41418753,41680897,41811969,41943041,42008577,42139649,42336257,42532865],"inference":[14942209],"invoke":[2424835,3801089,4456449,4587521,4653057,6750209,7602177,9306114,14942209,15400966,16908294,18087937,35586049,38404097,40828929,41811969,41943043,42139649,42532865],"index":[2424836,5046273,9043969,9437185,10682369,11075591,12910593,14417927,14942209,15073286,17170438,19202054,27131905,27787265,27983873,28508161,29884417,30801921,35127303,38404097,40828929,41811969,41943044,42074113,42139649,42532865],"indicates":[786433,917507,1441795,1703939,1900547,1966083,3014657,3145731,29425666,29556738,30212097,30408706,30670849,31784961,32440321,35061761,37158913,38010881,38469633,39387138,39714819,40108033,40304642,40763395,40960003,41091074,41287683,41353217,41418755,42008579,42467330],"identifier":[3670023,3801104,3866631,4325383,4390919,4456464,4587536,4653072,4849666,5308418,7602192,10813442,10878978,11141122,11206658,11272194,11927555,11993091,12189699,12255235,12976131,13238275,13369347,13697027,14221314,14286850,14811138,21954563,22020098,22609928,23003139,23199746,23527432,25100291,26083329,26214402,26411009,26476547,26935297,27000834,29687810,30015489,30605313,31391745,38404112,39649281,39714817,40435713,40763393,40828946,40960001,41025538,41287681,41418753,41811986,42008577,42139664,42532880],"interrupted":[24444929,41091073],"initvalue":[6750215],"infrastructure":[2424833,41943041],"inspector":[16121858,17039361],"intended":[2424836,13565953,30867457,32178177,34078721,41943044],"idispatchex":[42729473],"isdefaultattribute":[917505,1441793,1703937,1900545,1966081,3145729,39714817,40763393,40960001,41287681,41418753,42008577],"initializing":[26673154,27394049,38928385,42270721,42729473],"includes":[5898241,13565955,14942209,30867457,34078721],"istypeobj":[4128770,4784130,6225927,6946823,22675459,41680898,42926082],"int64":[1114114,4128769,4784129,8978438,32440322,38469634,40435714,41680897,42926081],"implemented":[26083329,26411009,26935297,30015489,30605313,31391745,37486593,39714817,40763393,40960001,41287681,41418753,42008577],"int16array":[37486593],"initializes":[3407873,3473409,3604481,3735553,3997697,4259841,4980737,5111809,7471105,8192001,8847361,9371649,9502721,9568257,9830401,10027009,10485761,10551297,10747905,11796481,12517377,12582913,13172737,13631489,13762561,13893633,14155777,14352385,14483457,14876673,15204353,15335425,15663105,16252929,16318465,16384001,16449537,16646145,17301505,17432577,17498113,17629185,17694721,18153473,18284545,18350081,18546689,19136513,19267585,19464193,19529729,19595265,19791873,19922945,20119553,20643841,20840449,20971521,21168130,21233665,21430273,21823489,21889025,21954561,22020097,22085633,22282241,22740993,22806529,22872065,23003137,23134209,23199745,23658497,23920641,24117249,24576001,24838146,25100289,25231362,25362444,25493505,26017796,26214406,26476545,27000838,27066376,28246018,28377093,29032450,32047106,32899076,34406412,35913729,36044801,38076417,38404098,38731781,39714817,40108034,40304644,40763394,40828934,40960001,41091076,41156609,41287681,41418760,41549826,41680897,41811974,42008578,42139660,42336257,42401804,42532866,42926081],"interprets":[12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217,41222145],"innerexception":[10027013,13762565,29229061,29425665,29556737,30408705,40304641,41091073,42467329],"ireadonlylist":[35192838,37421062,39190534],"isfatal":[29425665,29556737,30212101,30408705,31784967,38010887,40304641,41091073,42467329],"istype":[4128769,4784129,6356998,41680897,42926081],"indexing":[2424833,5767169,6684673,7864321,41943041],"inadvertent":[33947649,39518209,40239105,40697857],"involvement":[43057153],"implements":[983041,4128777,4784137,5636097,5767169,6356993,6422529,6488065,6553601,6684673,6815745,7733249,7798785,7864321,8060929,9633793,9764865,10158081,10616833,11534337,11599873,12845057,13828097,14942209,15007745,16842753,17235969,22544386,25165825,26804226,28573698,29491201,30670849,31129601,31784961,32964609,33554433,34930689,34996225,35979265,36503553,37158913,37289985,38010881,38404097,40304641,40566785,41091073,41549825,41680905,42074113,42401793,42926090],"integer":[4521985,5505025,5832705,7077889,7340033,7929857,8585217,15073281,16973825,17170433,17498113,19136513,19202049,19267585,19529729,19857409,19922945,20119553,21823489,24117249,28180481,33947649,35127297,37683201,39518209,40239105,40697857],"integers":[4718593,5898241,5963777,7077889,7929857],"idataview":[1245187,25427969,31981571,42991622],"ievent":[983042],"initial":[6750209],"indicating":[28442625,42074113],"interface":[1245185,1310721,1376257,1507329,1572865,2228225,2686977,3080193,5046273,7667713,9043969,9437185,10420225,10682369,11075585,11337729,11665409,11730945,12648449,12779521,12910593,14417921,24444929,25427969,26279937,27131905,27197441,27394050,27983873,28180481,28442625,28704769,28770305,29229057,29425665,29818881,29884417,30212097,30277633,31064065,31326209,31981569,32309249,32702465,33161217,33292289,34144257,34275329,34537473,35061761,35258369,36175878,37486600,37814273,38141957,38404097,40173569,40304641,40566785,40763396,40828929,40960004,41091073,41287684,41549831,41811969,42008580,42074123,42205189,42401793,42467333,42532865,42598405,42795013,42860550,42926081,42991622]} \ No newline at end of file +{"isnull":[3014657,3407873,9109509,37945346,39452673,41025537,42926081],"idataview":[1835011,23986177,27197443,43122694],"index":[1507329,3211268,9961473,10223623,10289159,10682369,10813441,11534337,14811137,15400966,15466502,15597574,28770305,30212097,31588353,31981569,34734081,34865153,38862855,40763396,41418753,41615361,41877505,42532865,42991617,43384833],"ignored":[5832705,40566785,42401794,43188226],"iscomparable":[6029313],"iterates":[1507329,42532865],"interfaces":[13762561,13959169,14221313,14548993,15138817,17104897,17694721,17891329,18022401,18087937,18546689,19136513,19202049,19398657,19464193,19857409,19988481,20905985,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22806529,22872065,22937601,23068673,23199745,23396353,23461889,23527425,23986177,24182785,24903681,25821185,26345473,26804225,28573697,37748737,40239105,40828929],"inherited":[262150,524294,655366,720904,786438,851981,917510,983041,1179654,1376262,1507338,1572872,1638401,1769475,1835011,1966088,2097155,2162694,2228230,2293766,2359302,2424838,2490373,2555910,2686984,2621446,2752518,2818056,2883590,2949128,3014703,3080198,3145734,3211284,3276806,3342342,3407878,4128769,4325381,4653106,4718648,5046277,5505075,5701688,25165825,26279940,26476548,27000835,27131908,27197443,27590657,27918339,28180482,28246024,28704773,28901378,29097986,29949961,30015489,30212114,30408705,31391745,31588367,31981586,34734096,37748745,38797318,39583750,39845894,39911430,40108037,40173574,40239111,40304646,40435729,40632326,40697862,40763412,40828938,40894470,41025542,41091078,41156614,41287689,41353222,41418757,41549830,41615434,41746438,41811978,41877571,41943046,42008585,42139654,42205190,42270725,42336262,42467343,42532879,42729488,42926127,42991681,43057162,43122694,43253766,43384906],"indexing":[3211265,6815745,7208961,9175041,40763393],"increment":[3211265,40763393],"instantiate":[5242881,11665409,11796481,12451841,12779521,12910593,13369345,13697025,14483457],"indexer":[14811137],"ignores":[5832705],"implementation":[3211276,23068675,26345473,29818881,35192833,35454977,38731777,40173569,40763404,41418753,41877505,42336257],"iarraybufferview":[1769475,1835011,1900547,2097155,9830402,10682370,11534338,23986177,27131907,27197443,27918339,30998531,32047106,32833538,33292290,39583754,40239114,42860550,43122698],"imports":[3014664,4325384,4653064,4718600,4784129,4849666,4915202,5111809,5505032,5570562,5701640,6225922,6422530,7274497,8060929,11730945,11927553,11993089,12124161,12582913,12713985,12845057,12976129,22216707,22675458,29884424,40566785,41418760,41615368,41877512,42926088,42991624,43188225,43384840],"identical":[17170433,18284545,18350081,18481153,18546689,19070977,20840449,21168129,21430273,24510465,26804225,28508161],"ienumerable":[1507329,33619974,34275334,40173576,42532873],"interrupts":[4325377,4653057,4718593,5505025,5701633,13565953,21299201,21692417,41418753,41615361,41877505,42991617,43384833],"interrupted":[23068673,42729473],"inference":[14811137],"intvalue":[5963777],"initialize":[3211265,8978433,9568257,9764865,10420225,40763393],"importable":[38731777],"initializing":[25231362,26345473,40566785,42401793,43188225],"instances":[14221313,16384001,16580609,16842753,17104897,17170433,17301505,17367041,17498114,17563649,17956865,18022402,18153473,18284545,18350081,18415617,18481153,18546689,18612226,18874369,19070977,19267585,19464193,19791873,19857409,20185089,20250625,20512769,20840449,21168129,21430273,22609921,22937602,23068673,25755649,33685505,35782657,37552129,38207489,40108033,41287682,42991618],"indicating":[28704769,42532865],"interchangeable":[7012353],"indicates":[262145,720899,1572867,1966083,2686979,2818051,2883585,2949123,28246018,29687810,29949954,32112641,32178177,32964609,33095681,33423361,33947649,34406401,36241409,37748739,39976962,40632321,40828931,40894465,41287683,41811971,42008579,42467330,42663938,42729474,43057155],"inherit":[37748737,40435713,40763393,40828929,41287681,41615361,41811969,41877505,42008577,42336257,42467329,42729473,42926081,42991617,43057153,43384833],"iwindowsscriptobject":[3538947,22347778,26345473,39649286],"information":[3342340,3997697,4259841,4325378,4653061,4718594,5308417,5439489,5505026,5636097,5701634,5898241,6094849,6225921,6422529,6684673,6750209,6946817,7274497,8060929,10485761,10747905,11272193,11337729,11468801,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13631489,13697025,13828097,13893635,14483457,14680065,14745601,14942209,15138817,15794177,15859713,16187394,16384002,16908289,17956866,18481154,19005441,19529730,19660802,20447233,23068674,24444929,24510465,24576001,25231361,25886723,26148866,26279937,26476545,27262977,28049410,28114946,28246017,29818882,29949953,30146561,30932993,32309249,34340865,35454978,37945345,38404097,38797313,39452673,40632321,40960002,41156609,41222147,41418754,41615362,41877506,41943041,42139652,42336257,42467329,42729473,42991621,43384834],"iarraybuffer":[1703939,9961474,10813442,11862018,23986177,30277635,31653890,32047110,42795014],"identifier":[3932167,4063239,4325392,4521991,4653072,4718608,4849666,5177351,5242882,5505040,5701648,11665410,11730946,11796483,11927554,11993091,12124163,12451843,12582915,12713986,12845058,12779522,12910594,12976131,13369347,13697027,14483458,21364739,22020099,22478851,23461891,23527426,24903682,27590657,28180481,28377090,28639240,28901377,29097985,29229058,29884424,30081026,30408705,31391745,36831233,37355521,37748737,40304642,40828929,41287681,41418768,41615378,41811969,41877520,42008577,42991632,43057153,43384850],"implementers":[3211265,9699329,40763393],"items":[1507329,41680897,42532865],"idynamicmetaobjectprovider":[3014666,3407882,6619142,6815750,7208966,8192007,8388614,8650759,8781831,9175046,24117250,25034753,26017794,26673154,41025546,41680897,42926090],"involvement":[41680897],"immediate":[28246017,29949953,42467329,42729473],"implements":[1441793,3014665,3407881,6029313,6356993,6815745,7077889,7208961,7340033,7798785,8192001,8388609,8650753,8781825,9175041,10092545,10616833,10878977,10944513,11403265,12517377,13434881,14155777,14811137,15007745,18808833,18939905,20971521,24117250,26017794,26673154,31916033,32178177,32702465,32768001,33030145,33095681,33488897,33554433,33816577,33947649,34209793,34406401,34537473,40173569,41025546,41418753,41943041,42139649,42467329,42532865,42729473,42926089],"invoking":[3211265,6094849,14221313,14811137,28770305,33226755,40763393,41418753],"inheritance":[37748737,38797313,39518209,39714817,39845889,39911425,40042497,40108033,40173569,40304641,40435713,40697857,40763393,40828929,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"implemented":[27590657,28180481,28901377,29097985,30408705,31391745,37748737,40239105,40828929,41287681,41811969,42008577,43057153],"includes":[6553601,14221315,14811137,34668545,38273025],"int8array":[40239105],"invokes":[3014659,3211266,3407876,4325377,4653057,4718593,5505025,5701633,6094850,6291458,6553602,7995394,9895937,14286850,14352385,15925249,16711681,20709378,23003138,23658498,32571393,40763394,41025540,41418753,41615361,41877505,42926083,42991617,43253761,43384833],"ipropertybag":[1507331,3014662,3407878,6488065,7077895,7340039,7798791,23068674,24117250,26017794,26673154,28704771,40173573,41025542,42532870,42926086],"iconvertible":[6881285,7143429,7405573,7471109,7602181,7536645,7667717,7733253,8585221,9240581,9371653,9633797],"invalidoperationexception":[42467333],"ihostwindow":[3473411,21495810,26345473,29032451,36765698,38928391,43319302],"include":[6160385,14221313],"individual":[3211265,34144257,37748737,40763393,40828929],"internal":[29753345,32636930,42991617],"interrupt":[4325377,4653058,4718593,5505026,5701633,13565957,21299206,21692422,35979265,36044801,36700161,41418753,41615361,41877506,42991618,43384833],"integer":[4784129,5963777,6094849,6291457,6684673,6750209,7995393,15400961,15466497,15597569,18022401,18612225,18743297,19202049,19988481,20054017,21954561,23396353,23789569,25821185,31522817,33619969,35913729,36634625,37486593,38076417,38862849],"interactive":[34668545,38273025],"including":[14221313],"indentation":[34668545,38273025],"initvalue":[7012359],"istransient":[39976961],"inotifypropertychanged":[1441793,40173572],"intptr":[36765702],"inspector":[15728642,16646145],"invoke":[3211267,4325377,4653057,4718593,5505025,5701633,7012353,9895938,14352390,14811137,15925254,16711681,39059457,40763395,41418753,41615361,41877505,42991617,43384833],"inside":[3211265,40763393],"imported":[4784129,4849665,4915201,5111810,6225922,6422530,7274498],"indexers":[14811138],"introduced":[34865153],"interval":[31260674,31588354,35717121,38010881,38141953,38666241,42139650,42991618],"innerexception":[12320773,15073285,28246017,29687809,29949953,32243717,42467329,42663937,42729473],"int64":[1245186,3014657,3407873,7733254,33423362,36241410,37355522,41025537,42926081],"implement":[14811137,41680897,42532865],"initonly":[1114113,1310721],"ireadonlylist":[35127302,35258374,38993926],"isreadonly":[11206661,28704769,42532865],"iscriptableobject":[589827,9699330,23068673,40173572,41025540,42598406],"isdefaultattribute":[720897,1572865,1966081,2686977,2818049,2949121,37748737,40828929,41287681,41811969,42008577,43057153],"ievent":[1441794],"itemname":[11665413,11730949,11796485,11927557,11993093,12058629,12124165,12255237,12386309,12451845,12582917,12648453,12713989,12845061,12779525,12910597,12976133,13041669,13172741,13238277,13369349,13697029,14483461,14811141,15859717,19005445],"ilist":[14811137],"invocations":[9699329],"iserializable":[10878977,14155777],"inherits":[37748737,39583745,40239105,40435713,40763393,40828929,41287681,41615361,41811969,41877505,42008577,42336257,42467329,42532865,42729473,42926081,42991617,43057153,43122689,43384833],"instead":[13762564,14811137,23527428,35913732,36110340,37945345,39452673],"intended":[3211268,14221313,29753345,34668545,38273025,40763396],"immutablevalueattribute":[720899,9502726,23068673,27590659,41287689],"icomparablet":[6029314],"indices":[6815750,7208966,9175046,14811137,29556737,33619969,40763393],"import":[4784130,4849666,4915201,5570561,6160385,6225922,6291457,6422530,6553601,6881281,7012353,7143425,7274497,7405569,7471105,7602177,7536641,7667713,7733249,8585217,9240577,9371649,9633793,9895937,11730946,11927554,11993090,12124162,12582913,12713985,12845057,12976129,23068673,28770305,29818881,30212097,31588353,31981569,34734081,35454977,36175873,41418753,41615361,41877505,42926081,42991617,43384833],"isfatal":[28246017,29687809,29949953,32178183,32964613,33947655,42467329,42663937,42729473],"invocable":[6225921,6422529,7274497,12058625,12189697,12255233,12386305,13041665,13238273,16908289,19005441,36962305,37683201],"info":[10878982,11337733,14155782,14942213,15794181,27262977,30932994,32309253,34340870,38797313,40960005,41222149,42336258],"int32array":[40239105],"idictionary":[1507335,10092545,10616833,10944513,12517377,28704773,31916033,33554433,34209793,40173572,41222149,42532880],"invokemethod":[3211265,16711685,40763393],"immutable":[23068673,41287681],"istype":[3014657,3407873,6029318,41025537,42926081],"int":[4784131,6094851,6291459,6684675,6750211,7995395,15400963,15466499,15597571,18022403,18612227,18743299,19202051,19988483,20054019,21954563,23396355,23789571,25821187,31522820,33619972,35717123,35913733,36634629,37486597,38010883,38076421,38862852,40239105],"initializes":[3604481,3735553,3801089,3866625,4390913,4456449,5373953,5767169,7864321,8912897,8978433,9502721,9568257,9764865,10027009,10354689,10420225,10551297,11075585,11206657,11337729,11599873,12320769,13762561,14090241,14548993,14614529,14942209,15073281,15204353,15269889,15335425,15532033,15663105,15794177,15990785,16121857,16252929,16973825,17432577,17694721,17825793,18087937,18219009,18743297,19136513,19202049,19398657,19595265,19988481,20054017,20316161,20578305,20643841,20774913,20905985,21037057,21102593,21233665,21364737,21626881,21757954,21823489,21889025,21954561,22020097,22151170,22413313,22478849,22544385,22806529,22872065,23199745,23396353,23461889,23527425,23592961,23789569,24313858,24379393,24772616,24903681,25362436,25493506,25821185,26214412,27066370,27459596,27983876,28377094,29229062,30801922,31850501,37748738,38797313,39845889,39911425,40173570,40435717,40632322,40828929,41025537,41287681,41418754,41549825,41615366,41811969,41877506,42008578,42139660,42336257,42467332,42729476,42926081,42991628,43057160,43384838],"invocation":[14352385,15925250,16711682,33226753],"integers":[4915201,5570561,6553601,6684673,6750209],"instantiation":[3014657,3407873,6488065,6619140,6946818,8060929,25034753,37093377,38338561,41025537,41877505,42926081],"infrastructure":[3211265,40763393],"interfere":[42401793],"instance":[131073,262148,524289,655361,720901,786433,851969,917505,1114113,1179649,1310721,1376257,1572869,1966085,2031620,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2686981,2621441,2752513,2818053,2883588,2949125,3014669,3080193,3145729,3211266,3276801,3342343,3407885,3735553,3801089,3997697,4194305,4259841,4325377,4390913,4456449,4653057,4718593,4849666,4915201,5046273,5111809,5242882,5308418,5373953,5439490,5505025,5570561,5636098,5701633,5767169,5898242,5963777,6029313,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6750209,6881282,7012353,7143426,7405570,7471106,7602178,7536642,7667714,7733250,7864321,7995393,8060930,8323073,8585218,9240578,9371650,9437185,9502721,9633794,9895937,10027009,10354689,10485763,10551297,10747907,11272195,11468803,13762562,14090241,14548994,15204353,15269889,15335425,15532033,15663105,15794177,15990785,16121857,16252929,16973825,17432577,17498115,17694722,17825794,18022404,18087939,18219010,18612227,18743298,19136514,19202051,19398659,19464196,19595265,19988482,20054017,20316162,20512771,20578305,20643842,20774914,20905987,21037057,21102593,21233666,21364738,21626883,21757954,21823490,21889025,21954562,22020098,22413315,22478850,22544386,22806530,22872067,22937604,23199746,23396355,23461890,23527426,23592961,23789570,23855105,24313858,24379393,24772616,24903682,25231364,25362433,25493506,25821187,26214412,26345475,27459596,27983873,28246018,28311558,28377094,28770305,29229062,29687809,29949954,30212097,30670849,30801922,31260673,31588354,31981569,32702465,32768001,32899076,34734081,34996225,35192833,37289985,37683204,37748743,38797314,39714820,39845890,39911426,40108034,40173569,40304641,40435713,40566785,40632324,40697857,40763394,40828934,40894468,41025552,41091073,41156609,41287686,41353217,41418756,41549826,41615369,41746433,41811974,41877509,41943041,42008583,42139669,42205185,42270723,42336258,42401794,42467332,42663937,42729476,42926094,42991633,43057165,43188225,43253762,43384841],"idispatchex":[42401793],"icomparable":[6029314],"idisposablet":[6356994],"icollection":[1507338,28704774,31916039,34209799,40173572,42532884],"identify":[6815745,7208961,9175041],"inadvertent":[35913729,36634625,37486593,38076417],"int16array":[40239105],"initial":[7012353],"item":[1507329,6488067,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,14483457,14811138,15859713,16908289,19005441,25296899,27000833,27852801,28704769,29556738,33554437,38862852,39256068,40173569,40435713,40763394,42532866,43188225],"itypedarray":[1769475,2097155,10223618,10289154,11010050,23986178,27131908,27918339,32374786,39583750,40239125],"int32":[3014659,3211267,3342338,3407877,4784129,5963777,6094851,6291459,6422529,6553601,6684675,6750211,7602182,7995394,8060929,14221313,15400962,15466498,15597570,18022402,18612226,18743298,19202050,19988482,20054018,21954562,23396354,23658498,23789570,24641537,24707073,25296897,25559042,25624577,25821186,26214404,27459588,28311554,29556737,31522817,33619969,35913729,36634625,37486593,38076417,38862850,40763396,41025541,42139654,42926083,42991620],"interface":[589825,1507329,1703937,1769473,1835009,1900545,2097153,3473409,3538945,6488065,9699329,9830401,9961473,10223617,10289153,10682369,10813441,11010049,11534337,11862017,12648449,13172737,21495809,22347777,23068673,23986177,26345474,27131905,27197441,27918337,28704769,29032449,29687809,30212097,30277633,30670849,30998529,31195137,31326209,31522817,31653889,31981569,32047105,32112641,32243713,32374785,32833537,32964609,33292289,33751041,34734081,36765697,37748740,38928385,39583750,39649285,40173575,40239112,40828932,41025537,41418753,41615361,41811972,41877505,41943041,42008580,42139649,42467329,42532875,42598405,42663941,42729473,42795013,42860549,43122694,43319302,43384833],"iscriptengineexception":[23068673,29687811,30670850,31195138,31326210,31522818,32112642,32178177,32243714,32702465,32768001,32964610,33030145,33095681,33488897,33751042,33816577,33947649,34406401,34537473,42467332,42663942,42729476],"interprets":[13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329,42270721],"idisposable":[6356994,13434881,18939905,20971521,41418756,41943044,42139652],"istypeobj":[3014658,3407874,5832711,9043975,23724035,41025538,42926082],"invoked":[3014662,3407878,3932161,4063233,4521985,5177345,5832705,6946817,8060929,8323073,9043969,9437185,9895937,14352385,18808833,23724034,25034754,26935298,29818881,35454977,41025542,42926086,42991617],"int16":[3014657,3407873,9240582,41025537,42926081],"indexed":[3211267,15400961,15466497,15597569,24641537,24707073,25296897,25624577,29556737,34865153,38862849,40763396],"int32t":[5963778,6422530,6553602]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_106.json b/docs/Reference/fti/FTI_106.json index 38613da27..797aff545 100644 --- a/docs/Reference/fti/FTI_106.json +++ b/docs/Reference/fti/FTI_106.json @@ -1 +1 @@ -{"json":[2359298,16121859,17039362,39976962],"jscript":[21233665,22085633,22806529,23920641,25100290,26214406,26476546,27394050,39321601,40828935,41222145,42729475],"javascript":[1245185,1310721,1376257,1572865,2228225,2752513,4718593,4849665,5308417,5505025,5570561,5898241,5963777,6029314,6356993,6488065,6750209,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7667713,7995393,8126465,8519681,8585217,8781826,8912897,8978433,9043970,9306113,9437186,9699330,9895938,10092545,10223617,10682370,10944513,11075586,11337730,11730946,11862018,12386305,12648450,12910594,14417922,25427977,26673155,28704770,29818882,30277633,30736386,30998529,31064065,31588353,31653890,31981569,32243713,32702465,33292290,34275330,34537473,35258370,35389441,36175875,37486596,39321604,39583748,40370180,42139649,42270723,42598403,42795010,42991619],"javascrip":[13565953,35717121,41484289],"javascriptextensions":[2752514,8781826,9699330,9895938,11862018,25427969,30998530,39583750],"jscriptengine":[4587523,20447235,21233670,22085638,22806534,23920646,25100294,26214408,26476550,27394049,29884419,35323907,40828941,42532865,42729474],"just":[42729473]} \ No newline at end of file +{"just":[42401793],"javascrip":[14221313,37945345,39452673],"javascript":[1703937,1769473,1835009,1900545,2031617,2097153,4849665,4915201,5242881,5570561,5963777,6029313,6160385,6225922,6291457,6356993,6488065,6422529,6553601,6750209,6881281,7012353,7143425,7405569,7471105,7536641,7602177,7667713,7733249,7995393,8060929,8323073,8585217,9240577,9371649,9437185,9633793,9830402,9895937,9961474,10223618,10289154,10485762,10682370,10747906,10813442,11010050,11272194,11468802,11534338,11862018,23986185,25231363,27131905,27197441,27656193,27918337,29818881,30277633,30998529,31653890,31784962,32047106,32374786,32505858,32833538,32899073,33292290,35454977,39387140,39583747,39714820,40042500,40239108,42795011,42860546,42991617,43122691,43188227],"json":[2424834,15728643,16646146,41091074],"javascriptextensions":[2031618,10485762,10747906,11272194,11468802,23986177,32899074,39714822],"jscript":[20578305,21102593,21364738,21823489,22478850,22806529,26345474,28377094,39387137,41615367,42270721,42401795],"jscriptengine":[4718595,20578310,21102598,21364742,21823494,22478854,22806534,23330819,26345473,28377096,30212099,37552131,41615373,41877505,42401794]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_107.json b/docs/Reference/fti/FTI_107.json index 82a5d0d93..a8b3ece75 100644 --- a/docs/Reference/fti/FTI_107.json +++ b/docs/Reference/fti/FTI_107.json @@ -1 +1 @@ -{"kind":[17104897,17367041,18219009,18743297,18808833,19005441,19070977,19333121,19988481,20054017,20250625,20381697,20578305,20774913,21102593,21495809,21561345,22216705,22347777,22478849,23330817,23789569,24510465,25559041,42270721],"keys":[27590657,28442626,29949953,34996231,38731777,41549825,42074114],"key":[5046276,9633798,9764870,11599878,12845062,28442625,29556737,30408705,33554438,40304641,41091073,42074117],"keyword":[13565953],"keyvaluepair":[5046278,28442626,41549832,42074128]} \ No newline at end of file +{"kind":[17170433,17301505,17367041,17956865,18284545,18350081,18415617,18481153,18546689,19070977,19791873,19857409,20250625,20840449,21168129,21430273,22609921,23265281,24510465,25755649,26148865,26804225,28508161,28573697,43188225],"key":[1507332,10092550,10616838,10944518,12517382,28246017,28704769,29949953,33554438,42467329,42532869,42729473],"keyword":[14221313],"keys":[27000833,27852801,28704770,34209799,40173569,40435713,42532866],"keyvaluepair":[1507334,28704770,40173576,42532880]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_108.json b/docs/Reference/fti/FTI_108.json index bc8053806..054a515ee 100644 --- a/docs/Reference/fti/FTI_108.json +++ b/docs/Reference/fti/FTI_108.json @@ -1 +1 @@ -{"leaf":[4718593,5963777,38731777],"locates":[2162689,9240577,38731777],"loaddocument":[720897,4194310,41156609],"leaks":[35848193,39911425],"loaders":[3932161,4194305,36044801],"languages":[5636097,5767169,6422529,6553601,6619137,6684673,6815745,7274497,7667713,7733249,7798785,7864321,8257537,12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217,38273025,42074113,42663937],"languag":[14942209,42074113],"looks":[2031617,2162689,9764865,38731777,41549825],"lower":[35848193,39911425],"lines":[30867457,34078721,37421057],"locks":[42139649],"loaded":[3670017,3866625,3932163,4194307,4325377,4390913,13107202,13959170,14548994,15269890,15466498,16711681,16777218,17104897,17367041,17760257,17891329,18612225,18743297,18939905,19005441,19070977,19333121,19660801,20381697,20578305,21561345,22347777,22478849,24444929,24510465,28049409,33751041,36044801,36634626,40632321],"larger":[38993921],"local":[4849665],"lengths":[7077894,7929862],"limited":[13434881,20447233,20512769,20709377],"locate":[9240577,9764865,11599873,29097985],"long":[1114116,1179650,9043976,9437192,10682376,11075592,12910600,14417928,28704772,29818884,32440326,34275332,34734084,34799620,35258372,35651588,35782660,36700164,37355524,37945348,38207492,38469638,38797316,39649286,40435720],"loadcallback":[28049409,33751045,36044801],"look":[6750209],"loading":[32178177],"label":[7667713,13565953,13631489,14614529,14680065,15859713,16384001,17629185,17956865,18153473,18219009,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20054017,20250625,20643841,20971521,21692417,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23265281,23920641,24117249,25100289,25493505,25559041,26476545],"like":[14942209],"line":[1048578,1114113,1179650,26673153,29687810,37421057,38469634,41025538,41353219,42270721],"lib":[4718601,4784130,5963783,23068675,41680898],"let":[4521985,4849665,5308417,6750209,9306113],"low":[42729473],"load":[131073,3932161,4194305],"list":[4849665,6881286,7012358,7208966,7405574,7536646,7995398,8126470,8519686,8912902,8978438,10092550,10223622,13631490,14942209,21168129,21626881,22544385,22609921,22675457,23003138,23068673,23199746,23461889,23527425,23592961,23724033,23986177,24051713,24182785,24248321,24313857,24379393,24641537,24838145,24903681,25034753,25231362,25296897,25362433,25624577,25755649,25886721,25952257,26017793,26148865,26214402,26345473,26476546,26542081,26804225,27000834,27066369,27131905,27525121,27787265,27852801,27918337,27983873,28049410,28114945,28246017,28377089,28508161,28573697,28835841,29032450,29294593,29360129,29884417,30343169,30801922,30932993,30998529,31457281,32047105,32374785,32636929,32899073,33488897,34406401,35454977,36044802,38404098,40828930,41811970,42139649,42532866],"loader":[3670017,3866625,4325377,4390913,24444929,27328513,28049410,29753345,34668550,36044802,41156610],"limit":[27787265,31522817,33357825,33947649,34471937,34799617,35848194,36765697,39518209,39780353,39911426,40239105,40697857,42139649,42401793],"lists":[37486593],"listt":[6881282,7012354,7208962,7405570,7536642,7995394,8126466,8519682,8912898,8978434,10092546,10223618],"longer":[29097985],"linq":[4718593,5570561,5898241,5963777,7340035],"link":[1,29556737,30408705,40304641,41091073],"loads":[720898,3801094,3932161,4194305,4456454,4587526,4653062,6094857,7602191,13107201,13959169,14548993,15269889,15466497,16711681,16777217,17104897,17367041,17760257,17891329,18612225,18743297,18939905,19005441,19070977,19333121,19660801,20381697,20578305,21561345,22347777,22478849,24510465,24641539,25886723,29294601,32374793,38404102,40828934,41156610,41811974,42139663,42401801,42532870],"legacy":[32178177,33816577],"location":[36634625],"looking":[29097985],"level":[36634625,42729473],"linenumber":[1048577,1114117,29687809,38469637,41025537,41353217],"listen":[16973825,17498113,19136513,19267585,19529729,19857409,19922945,20119553,21823489,24117249],"language":[2424834,13565953,34209793,41943042,42663937,42729473],"leaves":[11534337,17235969,25165825],"length":[11075589,14417925,29818886,32702466,34537474,36175874,37486594],"loaddocumentasync":[720897,3932165,41156609],"library":[131073,65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784130,4849665,4915203,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565954,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942210,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273026,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321603,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680898,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663938,42729474,42795009,42860545,42926081,42991617,43057153,43122689],"leading":[30867457,34078721]} \ No newline at end of file +{"lower":[35979265,36700161],"listen":[18022401,18612225,18743297,19202049,19988481,20054017,21954561,23396353,23789569,25821185],"loaddocumentasync":[524289,4259845,41549825],"limited":[17235969,23330817,24248321,27394049],"linenumber":[196609,1245189,30081025,36241413,40304641,40894465],"longer":[31064065],"looks":[851969,2228225,10616833,40173569,40435713],"languages":[6488065,6619137,6815745,6946817,7077889,7208961,7340033,7798785,8060929,8192001,8650753,8781825,9175041,13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329,36175873,40108033,42532865,43253761],"loaddocument":[524289,3997702,41549825],"locate":[8257537,10092545,10616833,31064065],"legacy":[29753345,37027841],"long":[393218,1245188,9961480,10223624,10289160,10682376,10813448,11534344,31653892,32374788,32833540,33161220,33292292,33423366,34603012,35586052,35651588,36241414,36438020,36569092,36831238,37224452,37355528,37814276,39780356],"leaves":[13434881,18939905,20971521],"location":[39124993],"loads":[524290,3342345,3997697,4259841,4325382,4653071,4718598,5505030,5701638,13500417,13631489,13828097,14024705,14417921,14680065,16580609,16842753,17301505,17367041,17563649,18153473,18284545,18350081,19070977,19267585,19791873,20185089,20250625,20840449,21168129,21430273,22609921,25427971,25755649,26411011,27525129,29294601,41418758,41549826,41615366,41877510,42139657,42991631,43384838],"loaded":[3932161,3997699,4063233,4259843,4521985,5177345,13500418,13631490,13828098,14024706,14417922,14680066,16580609,16842753,17301505,17367041,17563649,18153473,18284545,18350081,19070977,19267585,19791873,20185089,20250625,20840449,21168129,21430273,22609921,23068673,25755649,27328513,31719425,39124994,39845889,40960001],"look":[7012353],"loadcallback":[27328513,31719429,39845889],"line":[196610,393218,1245185,25231361,30081026,35258369,36241410,40304642,40894467,43188225],"loader":[3932161,4063233,4521985,5177345,23068673,27328514,29163521,29360129,32440326,39845890,41549826],"let":[4784129,4849665,5111809,5242881,7012353,9895937],"leaf":[4915201,5570561,40435713],"looking":[31064065],"locates":[851969,8257537,40435713],"limit":[29491201,31260673,31588353,35913729,35979266,36569089,36634625,36700162,36896769,37421057,37486593,38076417,41156609,42139649,42991617],"load":[65537,3997697,4259841],"link":[1,28246017,29949953,42467329,42729473],"loaders":[3997697,4259841,39845889],"like":[14811137],"leading":[34668545,38273025],"lengths":[6684678,6750214],"loading":[29753345],"linq":[4915201,5570561,6291459,6422529,6553601],"locks":[42991617],"list":[5242881,6881286,7143430,7405574,7471110,7536646,7602182,7667718,7733254,8585222,9240582,9371654,9633798,14548994,14811137,21757953,22085633,22151169,22216705,22478850,22675457,22740993,23461890,23658497,23724033,23920641,24117249,24313858,24444929,24576001,24641537,24707073,24772609,24838145,24903682,24969217,25034753,25165825,25296897,25362433,25427969,25493505,25559041,25624577,25886721,26017793,26083329,26214401,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26935297,27066369,27328514,27459585,27525121,27983873,28049409,28311553,28377090,28639233,28770305,29229058,29294593,29622273,29884417,30015489,30212097,30343169,30801922,30867457,31129601,31588353,31850497,31981569,32899073,34734081,34865154,39845890,41418754,41615362,41877506,42991617,43384834],"library":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014658,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111811,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221314,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811138,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21102593,21037057,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387139,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108034,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401794,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926082,42991617,43057153,43122689,43188225,43253762,43319297,43384833],"label":[6488065,13762561,13959169,14221313,14548993,15138817,17104897,17694721,17891329,18022401,18087937,18546689,19136513,19202049,19398657,19464193,19857409,19988481,20905985,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23461889,23527425,24182785,24903681,25821185,26804225,28573697],"lines":[34668545,35258369,38273025],"language":[3211266,14221313,37158913,40763394,42401793,43253761],"lists":[40239105],"listt":[6881282,7143426,7405570,7471106,7536642,7602178,7667714,7733250,8585218,9240578,9371650,9633794],"larger":[40370177],"local":[5242881],"length":[10223621,10289157,27131906,27918338,32374790,39583746,40239106],"languag":[14811137,42532865],"lib":[3014658,4915207,5570569,22675459,42926082],"leaks":[35979265,36700161],"level":[39124993,42401793],"low":[42401793]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_109.json b/docs/Reference/fti/FTI_109.json index a4fa84734..d95df3ba8 100644 --- a/docs/Reference/fti/FTI_109.json +++ b/docs/Reference/fti/FTI_109.json @@ -1 +1 @@ -{"modify":[9502721,40632321],"meta":[3801090,3932161,4194305,4456450,4587522,4653058,6094851,7602180,12124162,15728642,16056322,18350081,20185090,21102594,21495809,23330818,23592961,23789570,24248321,24444929,24969217,25296897,26148866,26738689,27459585,28835843,31195137,31457281,31588354,32243714,34603009,35913729,38404098,38535169,38666241,40108033,40566785,40632322,40828930,41811970,42139652,42336257,42401795,42532866],"members":[196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,1048577,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3801089,4128769,4456449,4587521,4653057,4784129,5046273,5242881,5570562,6029314,6094849,6160385,6291458,7077889,7274497,7602177,7929857,8060932,8257537,10813441,10878977,11010049,11141121,11206657,11272193,11403266,11468802,11665411,11927553,11993089,12058626,12189697,12255233,12779523,12976129,13041666,13238273,13369345,13697025,14024706,14221313,14286849,14745602,14811137,14942210,15794178,15990786,24444932,24969217,25690113,26083330,26411009,26607617,26738689,26935297,27131906,27328513,27459585,27590657,27787266,27983874,28049409,28311553,28442625,28508162,28770305,28901377,29163521,29425665,29556737,29622274,29687809,29884418,29949953,30015490,30277633,30408705,30474241,30605313,31064065,31391745,31522817,31981569,32505857,32702465,33095681,33357825,34013185,34537473,35389441,35586049,35913729,36044801,36175873,36634625,37093378,37486593,37617665,37748737,38076417,38141953,38273025,38404098,38731777,38928385,38993921,39256065,39387137,39714817,39780353,39976961,40108033,40304641,40370177,40501249,40566785,40763396,40828930,40960004,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484290,41549825,41615361,41680897,41746434,41811970,41943041,42008577,42074115,42139650,42205185,42270721,42336257,42401793,42467329,42532866,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057156,43122689],"microseconds":[27787265,28311554,30474241,31522817,35651585,37945345,38338561,38797313,39059457,39976962,41615361,42139649,42401793],"maxyoungspacesize":[32505857,33947653,38076417],"maxruntimeheapsize":[27787265,35520513,39911429,42139649],"memory":[6094849,7602177,11534337,17235969,18677762,21299202,24444929,25165825,26673153,33357825,35848194,37355521,39780354,39911426,42139649,42336257,42401793],"multidimensional":[14942209],"map":[3670017,3866625,4325377,4390913,26607617,27656193,40108033],"merge":[4718593],"mutable":[1114113,1179649,40632321],"monitoring":[34471937,34865153,35520513,35848195,36765697,39911427],"monitor":[34471937,36765697],"memberwiseclone":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"multiple":[10420225,15532033,16056321,16515073,16580609,16711681,17104897,17367041,17760257,17825793,17891329,18219009,18612225,18743297,18808833,18939905,19005441,19070977,19333121,19660801,19988481,20054017,20185089,20250625,20316161,20381697,20578305,20774913,21102593,21495809,21561345,21692417,22216705,22347777,22478849,23265281,23330817,23789569,24510465,24707073,25559041,26673153,37093377,40566785],"modeless":[2686977,26279938,42860545],"movenext":[4849665],"manner":[8060929],"methods":[327682,458754,720898,786434,851970,917506,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2228226,2162690,2293762,2359298,2424835,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3801090,4128770,4456450,4587522,4653058,4784130,5046274,5177346,5242882,5439490,5570562,6029314,6094850,6160386,6291458,7077889,7274497,7602178,7929857,8257537,8781826,9306113,9699330,9895938,10813441,10878977,11010049,11141121,11206657,11272193,11403266,11468802,11665409,11862018,11927553,11993089,12058626,12189697,12255233,12779521,12976129,13041666,13238273,13369345,13697025,14024706,14221313,14286849,14745602,14811137,14942214,15794178,15990786,24444929,25427971,32833537,35913729,36044801,36175874,36306945,36896771,37486593,37617665,37748737,37879811,38076417,38141953,38273025,38404097,38600705,38731777,39256065,39583746,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287682,41353217,41418754,41549825,41615361,41680897,41811969,41877506,41943042,42008578,42074113,42139649,42205185,42336257,42401793,42532865,42598401,42663937,42795010,42860545,42926081,42991617],"manage":[3932161,4194305],"maxoldspacesize":[32505857,35848193,38076417,39518212,39911425,40697861],"maxheapsize":[31522817,34865153,35848197,42401793],"marshaled":[35717121,41222145,41484289,42532865,42729476],"marshalnullasdispatch":[42729473],"maxexecutablesize":[32505857,38076417,39518213],"misspelled":[29097985],"mib":[32505860,33947651,38076420,39518211,40239107,40697859],"moment":[35651586,37945346,38797314],"memorystream":[32571393],"marshalarraysbyvalue":[42729473],"match":[917505,1441793,1703937,1900545,1966081,3145729,14942209,39714817,40763393,40960001,41287681,41418753,42008577],"maxstackusage":[31522817,36765701,42401793],"make":[9502722],"maps":[38273025],"module":[31588357,32243717,38928385,42270721],"minimum":[27787265,31522817,34865153,35520513,42139649,42401793],"message":[10027015,12582919,13762567,16318471,26017794,29425667,29491201,29556739,30408707,31326214,32899074,34144257,35979265,40304645,41091077,42467331],"method":[2424847,3538945,3670018,3866626,3932161,4063233,4194305,4325378,4390914,4521985,4718593,4849665,4915201,5177349,5242885,5308417,5373953,5439493,5505025,5570561,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6160389,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750211,6815745,6881281,6946818,7012353,7077889,7143425,7208961,7274498,7340033,7405569,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781829,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9437185,9633793,9699333,9764865,9895941,9961473,10092545,10158081,10223617,10289153,10354689,10420227,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468802,11534337,11599873,11665410,11730945,11862021,11927553,11993089,12058626,12124162,12189697,12255233,12320770,12386305,12451841,12648449,12713989,12779522,12845057,12910593,12976129,13041665,13107202,13238273,13303810,13369345,13434883,13500418,13565956,13697025,13828097,13959170,14024705,14090242,14221313,14286849,14417921,14548994,14614530,14680066,14745601,14811137,14942218,15007745,15073281,15138818,15269890,15400961,15466498,15532033,15597569,15728642,15794177,15859714,15925249,15990785,16056321,16121857,16187393,16515073,16580609,16711681,16777218,16842756,16908289,16973826,17039361,17104897,17170433,17235969,17367041,17563649,17760257,17825793,17891329,17956866,18022401,18087940,18219009,18415617,18481153,18612225,18677761,18743297,18808833,18874370,18939905,19005441,19070977,19202049,19333121,19398657,19660801,19726338,19857410,19988481,20054017,20185089,20250625,20316161,20381697,20447236,20512772,20578305,20709380,20774913,20905986,21037057,21102593,21299201,21364741,21495809,21561345,21626881,21692417,21757954,22151170,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22937602,23068673,23265281,23330817,23396353,23461889,23527425,23592961,23724033,23789569,23855105,23986177,24051713,24182785,24248321,24313857,24379393,24444933,24510465,24641537,24707073,24772609,24903681,25034753,25165825,25296897,25559041,25624577,25755649,25821189,25886721,25952257,26148865,26279937,26345473,26542081,26804225,26869763,27131907,27197441,27262978,27525121,27721730,27787269,27918337,27983875,28049409,28114945,28508163,28573697,28835841,29294593,29360129,29556737,29622274,29884419,30343169,30408705,30998529,31457281,31850498,32374785,33030146,33488897,33751041,33816580,35454977,35586049,35717122,36044801,36896769,37879809,38404099,38535169,40042497,40304641,40632321,40828931,40960002,41091073,41287686,41418756,41484290,41746434,41811971,41943055,42008580,42139653,42205185,42532867,42663939,42729476],"marshaling":[42139649,43057153],"modified":[7340033],"maximum":[9043969,9437185,10682369,11075585,12910593,14417921,27787265,31522817,32505860,33947650,34471937,36765697,38076420,39518210,40239106,40697858,42139649,42401793],"maxnewspacesize":[32505857,33947652,38076417,40239109],"mustoverride":[3932161,12451841,12713985,13303809,14090241,15073281,15597569,15925249,16187393,16908289,17170433,18087937,19202049,25165825,28966913,31195137,32833537,33882113,37027841,37683201,38862849],"marshaldatetimeasdate":[42729473],"merged":[14942209],"mscorlib":[4718593,5963777],"marshal":[19726337],"mapping":[5570561,6029313,6291457,7077889,7274497,7929857,8257537,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11927553,11993089,12058625,12189697,12255233,12779521,12976129,13041665,13238273,13369345,13697025,14024705,14221313,14286849,14745601,14811137,14942209,15794177,15990785],"modulecategory":[25427969,30736386,31653890,35389443,40370183],"mustinherit":[35913729,37617665,38404097,40566785,41156609,41943041,42532865],"missing":[38273025],"member":[2424837,3670017,3866625,4063233,4325377,4390913,4521985,4718593,4849665,4915201,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9109505,9175041,9240577,9306113,9699329,9895937,9961473,10092545,10223617,10289153,10354689,10813441,10878977,10944513,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12779521,12976129,13041665,13107201,13238273,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14155778,14221313,14286849,14548993,14614529,14680065,14745601,14811137,14876673,14942211,15204353,15269889,15400961,15466497,15532033,15663106,15728641,15794177,15859713,15990785,16056321,16121857,16252930,16515073,16580609,16646147,16711681,16777217,16973825,17039361,17104897,17367041,17432577,17563649,17760257,17825793,17891329,17956865,18022401,18219009,18415617,18481153,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19333121,19660801,19726337,19857409,19988481,20054017,20185089,20250625,20316161,20381697,20578305,20774913,20905985,21037057,21102593,21299201,21495809,21561345,21692417,21757953,22216705,22347777,22413313,22478849,23265281,23330817,23396353,23789569,23855105,24444931,24510465,24707073,25559041,26411009,26935297,27656193,27852801,28508161,28639233,29163521,29622273,29753345,30146561,30539777,30736385,30801921,30867457,31260673,31391747,31588353,31653889,31719426,31850497,31916033,32112642,32178177,32243713,32440321,32636929,32768001,33030147,33226753,33423361,33685505,33751041,33816577,33947649,34013185,34078721,34209793,34340865,34471937,34668545,34734081,34799617,34865153,35127297,35192833,35520513,35586049,35651585,35717121,35782657,35848193,36241409,36372481,36438017,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37093378,37224449,37355521,37421057,37552129,37814273,37879809,37945345,38207489,38338561,38404097,38469633,38666241,38797313,38928385,38993921,39059457,39190529,39387137,39452673,39518209,39649281,39845889,39911425,40239105,40435713,40501249,40697857,40894465,41287682,41418756,41484289,41746436,41943045,42008578,42074113,42270721,42729473,43057153],"maxruntimestackusage":[27787265,34471941,42139649],"multiplication":[2424833,41943041],"merges":[4718593,4784129,23068673,41680897],"makes":[39321601],"managed":[3801089,4456449,4587521,4653057,7602177,12713986,21364738,24379393,25821186,28114945,30343169,38404097,40828929,41811969,42139649,42532865,42729473],"microsoft":[196611,262147,327683,393219,458755,524291,589827,655364,720899,786435,851971,917507,983044,1048579,1114116,1179652,1245187,1310723,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835011,1900547,1966083,2031619,2097155,2228227,2162691,2293763,2359299,2490371,2424835,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407877,3473412,3538948,3604484,3670021,3735556,3801091,3866630,3932167,3997700,4063236,4128771,4194311,4259844,4325381,4390916,4456451,4521988,4587523,4653059,4718597,4784131,4849668,4915204,4980740,5046275,5111812,5177349,5242885,5308420,5373956,5439492,5505028,5570564,5636101,5701636,5767172,5832708,5898244,5963780,6029316,6094851,6160388,6225924,6291460,6356996,6422532,6488068,6553604,6619140,6684676,6750212,6815749,6881284,6946820,7012356,7077892,7143428,7208964,7274500,7340036,7405572,7471108,7536644,7602179,7667716,7733252,7798789,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781828,8847364,8912900,8978436,9043972,9109508,9175044,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699333,9764868,9830404,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420229,10485764,10551300,10616836,10682372,10747908,10813444,10878981,10944516,11010052,11075588,11141125,11206661,11272196,11337732,11403269,11468804,11534340,11599876,11665412,11730948,11796484,11862021,11927556,11993093,12058629,12124165,12189700,12255237,12320772,12386308,12451844,12517380,12582916,12648452,12713988,12779525,12845060,12910596,12976132,13041668,13107204,13172740,13238277,13303812,13369348,13434884,13500420,13565956,13631492,13697029,13762564,13828100,13893637,13959173,14024709,14090244,14155781,14221317,14286852,14352388,14417924,14483460,14548996,14614532,14680068,14745604,14811140,14876676,14942213,15007748,15073284,15138820,15204357,15269894,15335428,15400964,15466501,15532036,15597572,15663109,15728645,15794180,15859716,15925252,15990789,16056325,16121860,16187396,16252934,16318468,16384004,16449540,16515076,16580613,16646150,16711684,16777222,16842756,16908292,16973829,17039364,17104903,17170436,17235972,17301509,17367045,17432581,17498118,17563652,17629189,17694724,17760260,17825797,17891333,17956868,18022404,18087940,18153477,18219013,18284549,18350085,18415620,18481156,18546694,18612229,18677764,18743303,18808837,18874373,18939910,19005445,19070983,19136517,19202052,19267589,19333125,19398660,19464196,19529734,19595268,19660806,19726341,19791878,19857413,19922949,19988485,20054021,20119557,20185093,20250629,20316164,20381702,20447236,20512772,20578310,20643845,20709380,20774917,20840454,20905988,20971524,21037060,21102598,21168131,21233668,21299204,21364740,21430276,21495814,21561351,21626883,21692420,21757957,21823494,21889029,21954565,22020101,22085637,22151172,22216709,22282245,22347782,22413316,22478854,22544387,22609923,22675459,22740997,22806532,22872070,22937604,23003141,23068675,23134212,23199749,23265284,23330822,23396357,23461891,23527427,23592963,23658500,23724035,23789574,23855108,23920645,23986179,24051715,24117254,24182787,24248323,24313859,24379395,24444932,24510469,24576005,24641539,24707076,24772612,24838147,24903683,24969219,25034755,25100293,25165828,25231363,25296899,25362435,25427972,25493509,25559045,25624579,25690115,25755651,25821188,25886723,25952259,26017795,26083331,26148867,26214403,26279940,26345475,26411011,26476549,26542083,26607619,26673156,26738691,26804227,26869764,26935299,27000835,27066371,27131907,27197444,27262980,27328515,27394052,27459587,27525123,27590659,27656196,27721732,27787267,27852804,27918339,27983875,28049411,28114947,28180484,28246019,28311555,28377091,28442627,28508163,28573699,28639236,28704772,28770307,28835843,28901379,28966916,29032451,29163524,29229060,29294595,29360131,29425667,29491204,29556739,29622276,29687811,29753348,29818884,29884419,29949955,30015491,30081028,30146564,30212100,30277635,30343171,30408707,30539780,30474243,30605315,30670852,30736388,30801924,30867460,30932995,30998531,31064067,31129604,31195140,31260676,31326212,31391747,31457283,31522819,31588356,31653892,31719428,31784964,31850500,31916036,31981571,32047107,32112644,32178180,32243716,32309252,32374787,32440325,32505859,32571396,32636932,32702467,32768004,32833540,32899075,32964612,33030148,33095683,33161220,33226756,33292292,33357827,33423364,33488899,33554436,33619972,33685508,33751044,33816580,33882116,33947652,34013188,34078724,34144260,34209796,34275332,34340868,34406403,34471940,34537475,34603012,34668548,34734084,34799620,34865156,34930692,34996228,35061764,35127300,35192836,35258372,35323908,35389443,35454979,35520516,35586052,35651588,35717124,35782660,35848196,35913734,35979268,36044805,36110340,36175876,36241412,36306948,36372484,36438020,36503556,36569092,36634628,36700164,36765700,36831236,36896772,36962308,37027844,37093380,37158916,37224452,37289988,37355524,37421060,37486596,37552132,37617669,37683204,37748741,37814276,37879812,37945348,38010884,38076421,38141956,38207492,38273029,38338564,38404103,38469637,38535173,38600708,38666244,38731782,38797316,38862852,38928388,38993924,39059460,39124996,39190532,39256069,39321610,39387140,39452676,39518212,39583749,39649284,39714821,39780357,39845892,39911428,39976965,40042500,40108036,40173572,40239108,40304645,40370181,40435716,40501252,40566789,40632325,40697860,40763398,40828935,40894468,40960006,41025541,41091077,41156613,41222149,41287686,41353220,41418758,41484292,41549830,41615365,41680902,41746436,41811975,41877509,41943045,42008583,42074116,42139654,42205188,42270724,42336262,42401797,42467332,42532872,42598404,42663941,42729476,42795012,42860548,42926086,42991620,43057156,43122693],"machine":[4849665],"manipulate":[7667713],"modules":[25427969,30736385,31653889,32243713,35389442,40370179],"marshaldecimalascurrency":[42729473],"mentioned":[13565953],"mechanism":[31588353,32243713,42729473],"management":[42729473]} \ No newline at end of file +{"merged":[14811137],"modeless":[3473409,21495810,43319297],"misspelled":[31064065],"mapping":[6225921,6422529,6684673,6750209,6946817,7274497,8060929,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,14483457,14811137,15859713,16908289,19005441],"manipulate":[6488065],"movenext":[5242881],"match":[720897,1572865,1966081,2686977,2818049,2949121,14811137,37748737,40828929,41287681,41811969,42008577,43057153],"meta":[3342339,3997697,4259841,4325378,4653060,4718594,5505026,5701634,13893634,15794177,16187394,16384002,17956866,18481154,19529730,23068673,24444929,24510465,24576001,25886723,26148866,26279937,26476545,27262977,28049410,29818882,30146561,30932993,32309249,34340865,35454978,38404097,38797313,40632321,40960002,41222145,41418754,41615362,41877506,41943041,42139651,42336257,42991620,43384834],"microseconds":[28835842,30736385,31260673,31588353,33161217,35651585,35717121,38010881,39780353,41091074,41353217,42139649,42991617],"memory":[3342337,4653057,13434881,18939905,19660802,20971521,23068673,25231361,28114946,29491201,35586049,35979266,36700162,41156610,42139649,42336257,42991617],"microsoft":[131075,196611,262147,327683,393220,524291,589827,655363,720899,786435,851971,917507,983043,1048579,1114116,1245188,1179651,1310724,1376259,1441796,1507331,1572867,1638403,1703939,1769475,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407875,3473411,3538947,3604484,3670020,3735557,3801092,3866628,3932165,3997703,4063237,4128771,4194307,4259847,4325379,4390916,4456452,4521990,4587524,4653059,4718595,4784132,4849668,4915204,4980740,5046275,5111813,5177348,5242884,5308421,5373956,5439493,5505027,5570565,5636100,5701635,5767172,5832708,5898244,5963780,6029316,6094852,6160388,6225924,6291460,6356996,6422532,6488068,6553604,6619140,6684676,6750212,6815748,6881284,6946820,7012356,7077893,7143428,7208964,7274500,7340037,7405572,7471108,7602180,7536644,7667716,7733252,7798789,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781828,8847364,8912900,8978436,9043972,9109508,9175044,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699333,9764868,9830404,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485765,10551300,10616836,10682372,10747909,10813444,10878980,10944516,11010052,11075588,11141124,11206660,11272196,11337732,11403268,11468804,11534340,11599876,11665412,11730948,11796484,11862020,11927557,11993092,12058629,12124165,12189700,12255236,12320772,12386309,12451845,12517380,12582916,12648452,12713988,12845061,12779525,12910597,12976133,13041668,13107204,13172741,13238277,13303812,13369348,13434884,13500420,13565956,13631492,13697029,13762564,13828102,13893637,13959172,14024710,14090244,14155780,14221316,14286852,14352388,14417925,14483460,14548996,14614532,14680069,14745604,14811141,14876676,14942212,15007748,15073284,15138820,15204356,15269892,15335429,15400964,15466500,15532038,15597572,15663108,15728644,15794181,15859716,15925252,15990790,16056324,16121861,16187397,16252933,16318468,16384005,16449540,16515076,16580612,16646148,16711684,16777220,16842758,16908293,16973829,17039364,17104900,17170437,17235972,17301510,17367045,17432580,17498117,17563653,17629188,17694724,17760260,17825798,17891332,17956870,18022405,18087942,18153477,18219013,18284551,18350085,18415621,18481158,18546693,18612229,18677764,18743302,18808836,18874372,18939908,19005444,19070982,19136517,19202054,19267590,19333125,19398661,19464196,19529733,19595269,19660804,19726340,19791879,19857413,19922948,19988485,20054021,20119556,20185092,20250630,20316164,20381700,20447237,20512772,20578308,20643845,20709380,20774918,20840455,20905988,20971524,21037060,21102597,21168134,21233669,21299204,21364741,21430277,21495812,21561348,21626885,21692420,21757955,21823492,21889029,21954566,22020101,22085635,22151171,22216707,22282244,22347780,22413317,22478853,22544388,22609925,22675459,22740995,22806533,22872070,22937605,23003140,23068676,23134212,23199749,23265285,23330820,23396357,23461893,23527429,23592964,23658499,23724035,23789573,23855108,23920643,23986180,24051716,24117251,24182788,24248324,24313859,24379397,24444931,24510470,24576003,24641539,24707075,24772611,24838147,24903685,24969219,25034755,25100292,25165827,25231364,25296899,25362435,25427971,25493507,25559043,25624579,25690117,25755655,25821190,25886723,25952261,26017795,26083331,26148870,26214403,26279939,26345476,26411011,26476547,26542083,26607619,26673155,26738691,26804229,26869764,26935299,27000835,27066371,27131907,27197443,27262979,27328515,27394052,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049411,28114948,28180483,28246019,28311555,28377091,28442627,28508165,28573701,28639235,28704771,28770307,28835843,28901379,28966915,29032451,29097987,29163523,29229059,29294595,29360132,29425668,29491203,29622276,29556739,29687811,29753348,29818884,29884419,29949955,30015491,30081027,30146563,30212099,30277635,30343171,30408707,30474244,30539780,30605316,30670852,30736387,30801923,30867460,30932995,30998531,31129603,31195140,31260675,31326212,31391747,31457284,31522820,31588355,31653892,31719428,31784964,31850499,31916036,31981571,32047108,32112644,32178180,32243716,32309252,32374788,32440324,32505860,32571396,32636932,32702468,32768004,32833540,32899075,32964612,33030148,33095684,33161220,33226756,33292292,33357828,33423365,33488900,33554436,33619972,33685508,33751044,33816580,33882116,33947652,34013188,34078724,34144260,34209796,34275332,34340868,34406404,34471940,34537476,34603012,34668548,34734083,34799620,34865156,34930692,34996228,35061764,35127300,35192836,35258372,35323908,35389444,35454980,35520516,35586052,35651588,35717124,35782660,35848196,35913732,35979268,36044804,36110340,36175876,36241413,36306948,36372484,36438020,36503556,36569092,36634628,36700164,36765700,36831236,36896772,36962308,37027844,37093380,37158916,37224452,37289988,37355524,37421060,37486596,37552132,37617668,37683204,37748742,37814276,37879812,37945348,38010884,38076420,38141956,38207492,38273028,38338564,38404100,38469636,38535172,38600708,38666244,38731780,38797318,38862852,38928388,38993924,39059460,39124996,39190532,39256068,39321604,39387146,39452676,39518213,39583748,39649284,39714821,39780356,39845893,39911429,39976964,40042501,40108037,40173574,40239108,40304645,40370180,40435718,40501252,40566788,40632324,40697861,40763397,40828934,40894468,40960005,41025542,41091077,41156613,41222149,41287685,41353221,41418759,41484292,41549829,41615367,41680900,41746437,41811974,41877512,41943045,42008583,42074117,42139653,42205189,42270725,42336262,42401796,42467333,42532868,42598404,42663940,42729477,42795012,42860548,42926086,42991622,43057158,43122692,43188228,43253765,43319300,43384839],"merge":[5111809,5570561],"multiplication":[3211265,40763393],"maxstackusage":[31260673,36896773,42139649],"manner":[8388609],"mustoverride":[4259841,13303809,13565953,14286849,15400961,15466497,15597569,15925249,16318465,16711681,16777217,17039361,19726337,20971521,30605313,32309249,33619969,34078721,34275329,35389441,38469633],"minimum":[31260673,31588353,38141953,38666241,42139649,42991617],"marshalnullasdispatch":[42401793],"module":[29818885,35454981,40566785,43188225],"managed":[4325377,4653057,4718593,5505025,5701633,14286850,20709378,23003138,25165825,26607617,30015489,41418753,41615361,41877505,42401793,42991617,43384833],"management":[42401793],"mscorlib":[4915201,5570561],"maxoldspacesize":[28966913,35979265,36634628,36700161,38076421,39911425],"mentioned":[14221313],"makes":[39387137],"map":[3932161,4063233,4521985,5177345,28442625,37617665,40632321],"methods":[262146,327682,524290,589826,655362,720898,786434,851970,917506,1179650,1376258,1507330,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211267,3276802,3342338,3407874,3473410,3538946,4325378,4653058,4718594,5046274,5308418,5439490,5505026,5636098,5701634,5898242,6225922,6422530,6684673,6750209,6946817,7274498,8060929,9895937,10485762,10747906,11272194,11468802,11665409,11730945,11796481,11927553,11993089,12058626,12124161,12189698,12255234,12386306,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041666,13172737,13238274,13369345,13697025,14483457,14811142,15859713,16908290,19005442,23068673,23986179,35389441,35848193,36962307,37683203,37748737,38797313,39190529,39518210,39583746,39649281,39714818,39845889,39911425,40108033,40173569,40239105,40304641,40435713,40632321,40697857,40763394,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811970,41877505,41943041,42008578,42139649,42205185,42270721,42336257,42467329,42532865,42598401,42729473,42795009,42860546,42926081,42991617,43057154,43122689,43253761,43319297,43384833],"make":[11206658],"machine":[5242881],"moment":[33161218,35651586,39780354],"maxruntimestackusage":[31588353,37421061,42991617],"multidimensional":[14811137],"maxheapsize":[31260673,35979269,38666241,42139649],"missing":[36175873,40108033],"mustinherit":[38797313,40697857,40763393,41418753,41549825,41877505,41943041],"mechanism":[29818881,35454977,42401793],"memberwiseclone":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"marshaldecimalascurrency":[42401793],"maxyoungspacesize":[28966913,35913733,39911425],"monitor":[36896769,37421057],"manage":[3997697,4259841],"maps":[36175873,40108033],"monitoring":[35979267,36700163,36896769,37421057,38141953,38666241],"maxruntimeheapsize":[31588353,36700165,38141953,42991617],"modules":[23986177,27656194,31784961,32505857,35454977,40042499],"members":[131073,196609,262145,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1179649,1376257,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3735553,4128769,4194305,4325377,4653057,4718593,5046273,5439489,5505025,5701633,5898241,6225922,6422530,6684673,6750209,6946817,7274498,8060929,8388612,11665409,11730945,11796481,11927553,11993089,12058626,12124161,12189698,12255234,12386306,12451841,12582913,12648451,12713985,12845057,12779521,12910593,12976129,13041666,13172739,13238274,13369345,13697025,14483457,14811138,15859713,16908290,19005442,23068676,27000833,27131905,27197441,27262977,27328513,27590657,27656193,27721729,27787265,27852801,27918337,28180482,28246017,28442625,28704769,28770307,28835841,28901377,28966913,29032449,29097985,29163521,29425665,29491201,29556737,29687809,29949953,30081025,30146561,30212099,30277633,30408705,30736385,30932993,30998529,31260673,31391746,31588355,31981571,33226754,33357825,34144258,34734083,37748740,38731777,38797313,39059457,39124993,39452674,39583745,39649281,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501250,40566785,40632321,40697857,40763393,40828932,40894465,41025537,41091073,41156609,41287681,41353217,41418755,41484289,41549825,41615363,41680900,41746433,41811969,41877507,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532867,42598401,42663937,42729473,42795009,42860545,42926081,42991619,43057153,43122689,43188225,43253761,43319297,43384835],"marshalarraysbyvalue":[42401793],"marshaling":[41680897,42991617],"maximum":[9961473,10223617,10289153,10682369,10813441,11534337,28966916,31260673,31588353,35913730,36634626,36896769,37421057,37486594,38076418,39911428,42139649,42991617],"maxnewspacesize":[28966913,35913732,37486597,39911425],"modulecategory":[23986177,27656195,31784962,32505858,40042503],"message":[11599879,12320775,14614535,15073287,25362434,27983874,28246019,29687811,29949955,31195137,33488897,33751046,33816577,42467333,42663939,42729477],"mib":[28966916,35913731,36634627,37486595,38076419,39911428],"multiple":[9699329,16384001,16449537,16580609,16842753,17104897,17170433,17301505,17367041,17563649,17956865,18153473,18284545,18350081,18415617,18481153,18546689,18874369,19070977,19267585,19333121,19529729,19791873,19857409,19922945,20185089,20250625,20840449,21168129,21430273,22609921,23265281,24182785,24510465,25231361,25690113,25755649,26148865,26804225,26869761,28508161,28573697,33226753,41943041],"merges":[3014657,5570561,22675457,42926081],"mutable":[393217,1245185,40960001],"modified":[6291457],"marshaled":[36175873,37945345,39452673,41877505,42270721,42401796],"marshal":[25952257],"maxexecutablesize":[28966913,36634629,39911425],"method":[3211279,3670017,3932162,3997697,4063234,4259841,4521986,4587521,4784129,4849665,4915201,4980737,5111809,5177346,5242881,5308421,5439493,5570561,5636101,5832706,5898245,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012355,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7929857,7995393,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,9043969,9109506,9175041,9240577,9306113,9371649,9437185,9633793,9699331,9830401,9895937,9961473,10092545,10158081,10223617,10289153,10485765,10616833,10682369,10747909,10813441,10878977,10944513,11010049,11141121,11272197,11403265,11468805,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189698,12255233,12386305,12451841,12517377,12582913,12648450,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172738,13238273,13303809,13369345,13434881,13500418,13565954,13631490,13697025,13828098,13893634,13959170,14024706,14155777,14221316,14286853,14352385,14417922,14483457,14680066,14745602,14811146,14876674,15007745,15138818,15400961,15466497,15597569,15728641,15859713,15925249,16056321,16187394,16318465,16384001,16449537,16515074,16580609,16646145,16711684,16777217,16842753,16908290,17039361,17104897,17170433,17235971,17301505,17367041,17498114,17563649,17629185,17760257,17891330,17956865,18022402,18153473,18284545,18350081,18415617,18481153,18546689,18612226,18677761,18808836,18874369,18939905,19005441,19070977,19267585,19333121,19464194,19529729,19660801,19726338,19791873,19857409,19922945,20119553,20185089,20250625,20381698,20447233,20512770,20709381,20840449,20971521,21168129,21299202,21430273,21495809,21561345,21692418,22085633,22216705,22282241,22347777,22609921,22675457,22740993,22937602,23003141,23134210,23068677,23265281,23330820,23658497,23724033,23855107,23920641,24051713,24117249,24182785,24248324,24444929,24510465,24576001,24641537,24707073,24838145,24969217,25034753,25100289,25165825,25427969,25559041,25624577,25690113,25755649,25886721,25952258,26017793,26083329,26148865,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27328513,27394052,27525121,28049409,28114945,28246017,28311553,28508161,28573697,28639233,28770307,29294593,29884417,29949953,30015489,30212099,30343169,31129601,31588357,31719425,31981571,32899073,34144258,34734083,35323906,35520514,36044801,36962305,37027844,37683201,37945346,39059457,39452674,39845889,40501250,40763407,40828930,40960001,41222145,41418755,41615363,41811974,41877507,42008580,42401796,42467329,42598401,42729473,42991621,43057156,43253763,43384835],"modify":[11206657,40960001],"marshaldatetimeasdate":[42401793],"member":[3211269,3932161,4063233,4521985,4587521,4784129,4849665,4915201,4980737,5111809,5177345,5242881,5308417,5439489,5570561,5636097,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9633793,9895937,10158081,10485761,10747905,11141121,11272193,11468801,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13369345,13500417,13631489,13697025,13828097,13893633,13959169,14024705,14221313,14352385,14417921,14483457,14680065,14745601,14811139,14876673,15138817,15335425,15532034,15728641,15859713,15990787,16056321,16121857,16187393,16252929,16384001,16449537,16580609,16646145,16842753,16908289,16973826,17104897,17170433,17301505,17367041,17498113,17563649,17629185,17760257,17891329,17956865,18022401,18153473,18284545,18350081,18415617,18481153,18546689,18612225,18874369,19005441,19070977,19267585,19333121,19464193,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20447233,20512769,20840449,21168129,21430273,21561345,22282241,22609921,22937601,23068675,23265281,23592961,24051713,24182785,24379394,24510465,25690113,25755649,25952257,26148865,26804225,26869761,28114945,28508161,28573697,28770305,28901379,29097985,29360129,29425665,29622273,29753345,29818881,30408705,30474241,30539777,30867457,31719425,31784961,32440321,32505857,32571393,32636929,33161217,33226754,33357825,33423361,33882113,34013185,34144257,34471937,34603009,34668545,34799618,34865153,34930689,34996225,35061762,35127297,35258369,35323905,35454977,35520515,35586049,35651585,35717121,35913729,35979265,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37617665,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38338561,38404097,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39256065,39321601,39452673,39780353,39976961,40370177,40501252,40566785,40763397,41418753,41484289,41680897,41811970,42008578,42401793,42532865,43057156,43188225],"memorystream":[35192833]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_110.json b/docs/Reference/fti/FTI_110.json index a49594ae9..f2df88793 100644 --- a/docs/Reference/fti/FTI_110.json +++ b/docs/Reference/fti/FTI_110.json @@ -1 +1 @@ -{"notifies":[1507329,10420225,42205185],"nonexistent":[38273025],"node":[1048578,1114114,1179650,2555907,3014658,9240577,26673155,28311553,29687812,30474242,32440322,33226759,33685506,34734082,36831244,37224450,37421065,38469634,39190538,39649282,39976961,40435714,40894466,41025545,41353218,41615362],"noscriptaccessattribute":[1900547,13172742,24444929,26935299,40763393,40960001,41287689,42008577],"namespaces":[4718593,5963777,38731777,39321601],"num":[5570562],"numeric":[6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,10092545,10223617,13565954,14942209,29687810,39649281,39714817,40435713,41025538,42729473],"named":[2424835,4718596,5963780,14942209,15597569,15925249,16187393,24051713,24444929,27918337,29360129,30932993,33095681,36569089,38731780,41943044,42074113],"number":[1048577,1114113,1179649,4521985,5570561,5832705,7340033,8585217,9043970,9437186,10682370,11075586,12910594,13565953,14417922,14942209,28442625,29687810,32440322,34734081,38469634,41025538,41353217,42074113],"names":[2424833,4718593,5963777,8847361,9371649,14942209,27590657,29949953,33095681,34996225,38731777,38862849,41549825,41943042],"needed":[2293761,3211265,10616833,15007745,19726337,40304641,41091073],"nodeid":[29687809,39649285,41025537],"newvar":[4128769,4784129,6750214,34209793,41680897,42926081],"negation":[2424833,41943041],"notinheritable":[38076417,39583745,39714817,40370177,40960001,41025537,41287681,41418753,41615361,41877505,42139649,42401793,43122689],"new":[2424833,3407875,3473411,3604483,3735555,3997699,4259843,4718593,4849665,4980739,5111811,5832705,5898241,6094856,6619137,6750209,6815745,7077889,7274497,7340033,7471107,7602178,7667713,7733249,7864321,7929857,8192003,8257537,8585217,8847363,9371651,9502723,9568259,9830403,10027011,10485763,10551299,10747907,10813441,10878977,11010049,11141121,11206657,11272193,11337729,11403265,11468801,11665409,11730945,11796483,11927553,11993089,12058625,12189697,12255233,12517379,12582915,12648449,12779521,12976129,13041665,13172739,13238273,13369345,13631491,13697025,13762563,13893635,14024705,14155779,14221313,14286849,14352387,14483459,14745601,14811137,14876675,14942209,15204355,15335427,15532033,15663107,15794177,15925250,15990785,16252931,16318467,16384003,16449539,16580609,16646147,16973827,17301507,17432579,17498115,17629187,17694723,17825793,17956867,18153475,18284547,18350083,18546691,18874371,19136515,19202049,19267587,19464195,19529731,19595267,19791875,19857411,19922948,20119556,20316161,20643843,20840452,20905987,20971524,21168130,21233667,21430275,21757955,21823492,21889028,21954563,22020099,22085635,22282243,22740996,22806531,22872068,23003139,23134211,23199747,23658500,23920643,24117252,24576004,24838146,25100291,25231362,25362444,25493508,25624578,26017796,26214406,26476547,26673154,27000838,27066376,27394049,28246018,28377093,29032450,32047106,32505857,32899076,33488902,34406412,35454978,35848193,35913729,36044801,38076418,38404098,38731781,38928385,39714817,39911425,40108034,40239105,40304644,40763394,40828934,40960001,41091076,41156609,41287681,41418760,41549826,41680897,41811974,41943041,42008578,42139662,42270721,42336257,42401812,42532866,42729473,42926081],"net":[9306113,13565957,32178177,35717121,39321601,41484289,42270721],"nod":[29687818,32440321,33685505,34734082,37224449,37421057,38469633,39190529,39649281,40435713,40894465,41025546],"newer":[36438017],"null":[4128770,4718593,4784130,4849666,5308418,5701635,6488066,6750210,9240577,9306114,9764865,13565954,18022401,22413313,27131905,27787265,27983873,28508161,28639233,29229057,29425667,29491201,29556738,29884417,30081025,30408706,31129601,32309249,32964609,34144257,34340865,35192833,35717123,35979265,37093377,37421057,38273025,38404097,39190529,40304642,40828929,41091074,41484290,41680898,41811969,42139649,42467331,42532865,42729473,42926082],"nullptr":[4849665,5308417,6750209,9306113],"normal":[25690113,30146561,36438017,37617665],"nested":[5570561,6029313,6291457,10027009,11403265,11468801,12058625,13041665,13762561,14024705,14745601,15794177,15990785,26017793,32899073,37093377,40304641,41091073,41287681,42008577],"numerical":[29556737,30408705,40304641,41091073],"natively":[6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,10092545,10223617,34209793],"newcomobj":[4784129,4849670,41680897],"namespace":[196609,262145,327681,393217,458753,524289,589825,655362,720897,786433,851969,917505,983042,1048577,1114114,1179650,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162690,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407874,3473410,3538946,3604482,3670018,3735554,3801089,3866626,3932162,3997698,4063234,4128769,4194306,4259842,4325378,4390914,4456449,4521986,4587521,4653057,4718594,4784129,4849666,4915202,4980738,5046273,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094849,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602177,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240581,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168129,21233666,21299202,21364738,21430274,21495810,21561346,21626881,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544385,22609921,22675457,22740994,22806530,22872066,22937602,23003138,23068673,23134210,23199746,23265282,23330818,23396354,23461889,23527425,23592961,23658498,23724033,23789570,23855106,23920642,23986177,24051713,24117250,24182785,24248321,24313857,24379393,24444930,24510466,24576002,24641537,24707074,24772610,24838145,24903681,24969217,25034753,25100290,25165826,25231361,25296897,25362433,25427970,25493506,25559042,25624577,25690113,25755649,25821186,25886721,25952257,26017793,26083329,26148865,26214401,26279938,26345473,26411009,26476546,26542081,26607617,26673154,26738689,26804225,26869762,26935297,27000833,27066369,27131905,27197442,27262978,27328513,27394050,27459585,27525121,27590657,27656194,27721730,27787265,27852802,27918337,27983873,28049409,28114945,28180482,28246017,28311553,28377089,28442625,28508161,28573697,28639234,28704770,28770305,28835841,28901377,28966914,29032449,29163522,29229058,29294593,29360129,29425665,29491202,29556737,29622274,29687809,29753346,29818882,29884417,29949953,30015489,30081026,30146562,30212098,30277633,30343169,30408705,30539778,30474241,30605313,30670850,30736386,30801922,30867458,30932993,30998529,31064065,31129602,31195138,31260674,31326210,31391745,31457281,31522817,31588355,31653890,31719426,31784962,31850498,31916034,31981569,32047105,32112642,32178178,32243715,32309250,32374785,32440322,32505857,32571394,32636930,32702465,32768002,32833539,32899073,32964610,33030146,33095681,33161218,33226754,33292290,33357825,33423362,33488897,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078722,34144258,34209794,34275330,34340866,34406401,34471938,34537473,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389441,35454977,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36110338,36175874,36241410,36306947,36372482,36438018,36503554,36569090,36634626,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600707,38666242,38731779,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321605,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057155,43122690],"nodes":[4718594,5963778,38731778,39190529],"nodefaultscriptaccessattribute":[1703939,12517382,24444929,26083331,40763393,40960009],"newarr":[4128770,4784129,7077896,7340033,7929863,8585218,23986179,41680897,42926082],"newobj":[4128772,4784132,5308417,6029314,6619142,6750209,6881281,7012353,7143425,7208961,7274504,7405569,7536641,7667719,7995393,8126465,8257543,8519681,8912897,8978433,9306113,10092545,10223617,14942209,25755653,41680900,42926084],"nullable":[3932165,4194310,33423367,42729474],"nextdouble":[7274498],"native":[13565955,14942209,39714817,42074113,42729474]} \ No newline at end of file +{"noscriptaccessattribute":[2949123,10551302,23068673,29097987,37748737,40828929,41811977,42008577],"nod":[30081034,33423361,34013185,34471937,34603010,35127297,35258369,36241409,36831233,37355521,37879809,40304650],"new":[3211265,3342344,3604483,3735555,3801091,3866627,4390915,4456451,4653058,5111809,5242881,5373955,5570561,5767171,6094849,6291457,6488065,6553601,6619137,6684673,6750209,6946817,7012353,7077889,7864323,7995393,8060929,8781825,8912899,8978435,9175041,9502723,9568259,9764867,9830401,10027011,10354691,10420227,10551299,11010049,11075587,11206659,11337731,11599875,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320771,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,13762563,14090243,14483457,14548995,14614531,14811137,14942211,15073283,15204355,15269891,15335427,15532035,15597569,15663107,15794179,15859713,15990787,16121859,16252931,16449537,16777218,16908289,16973827,17432579,17498115,17694723,17825795,18022403,18087939,18219011,18612227,18743299,19005441,19136515,19202051,19333121,19398659,19464195,19595267,19922945,19988483,20054019,20316164,20512771,20578307,20643844,20774916,20905988,21037059,21102595,21233668,21364739,21626884,21757954,21823491,21889027,21954564,22020099,22151170,22413316,22478851,22544387,22806531,22872068,22937603,23199747,23396356,23461891,23527427,23592963,23789572,24313858,24379395,24772616,24838146,24903683,25231362,25362436,25493506,25690113,25821188,26214412,26345473,26738690,27066370,27459596,27983876,28311558,28377094,28966913,29229062,30801922,31850501,35979265,36700161,37486593,37748738,38797313,39845889,39911426,40173570,40435717,40566785,40632322,40763393,40828929,41025537,41287681,41418754,41549825,41615366,41811969,41877506,42008578,42139668,42336257,42401793,42467332,42729476,42926081,42991630,43057160,43188225,43384838],"needed":[3080193,3276801,10878977,14155777,25952257,42467329,42729473],"num":[6422530],"newarr":[3014657,3407874,6291457,6684679,6750216,7995394,25559043,41025538,42926081],"native":[14221315,14811137,41287681,42401794,42532865],"notifies":[589825,9699329,42598401],"nullptr":[4849665,5111809,5242881,7012353,9895937],"net":[9895937,14221317,29753345,37945345,39387137,39452673,43188225],"nodefaultscriptaccessattribute":[1966083,10027014,23068673,28180483,37748737,40828937],"node":[196610,393218,1245186,2293763,2883586,8257537,25231363,28835841,30081028,30736386,33423362,34013186,34471938,34603010,35127306,35258377,36241410,36831234,37355522,37879810,38535175,39321612,40304649,40894466,41091073,41353218],"numerical":[28246017,29949953,42467329,42729473],"negation":[3211265,40763393],"newcomobj":[3014657,5242886,42926081],"names":[3211265,4915201,5570561,9568257,10420225,14811137,27000833,27852801,29556737,34209793,34275329,40173569,40435713,40763394],"named":[3211267,4915204,5570564,14811137,16318465,16777217,17039361,23068673,24641537,24707073,25296897,25624577,29556737,39256065,40435716,40763396,42532865],"nullable":[3997702,4259845,36372487,42401794],"newvar":[3014657,3407873,7012358,37158913,41025537,42926081],"namespace":[131073,196609,262145,327681,393218,524289,589825,655361,720897,786433,851970,917505,983041,1048577,1114114,1245186,1179649,1310722,1376257,1441794,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128769,4194305,4259842,4325377,4390914,4456450,4521986,4587522,4653057,4718593,4784130,4849666,4915202,4980738,5046273,5111810,5177346,5242882,5308418,5373954,5439490,5505025,5570562,5636098,5701633,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7602178,7536642,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257541,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12845058,12779522,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757953,21823490,21889026,21954562,22020098,22085633,22151169,22216705,22282242,22347778,22413314,22478850,22544386,22609922,22675457,22740993,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658497,23724033,23789570,23855106,23920641,23986178,24051714,24117249,24182786,24248322,24313857,24379394,24444929,24510466,24576001,24641537,24707073,24772609,24838145,24903682,24969217,25034753,25100290,25165825,25231362,25296897,25362433,25427969,25493505,25559041,25624577,25690114,25755650,25821186,25886721,25952258,26017793,26083329,26148866,26214401,26279937,26345474,26411009,26476545,26542081,26607617,26673153,26738689,26804226,26869762,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394050,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114946,28180481,28246017,28311553,28377089,28442625,28508162,28573698,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360130,29425666,29491201,29622274,29556737,29687809,29753346,29818883,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474242,30539778,30605314,30670850,30736385,30801921,30867458,30932993,30998529,31129601,31195138,31260673,31326210,31391745,31457282,31522818,31588353,31653890,31719426,31784962,31850497,31916034,31981569,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899073,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33423362,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078722,34144258,34209794,34275330,34340866,34406402,34471938,34537474,34603010,34668546,34734081,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389443,35454979,35520514,35586050,35651586,35717122,35782658,35848195,35913730,35979266,36044802,36110338,36175874,36241410,36306946,36372482,36438018,36503554,36569090,36634626,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190531,39256066,39321602,39387141,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435715,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680899,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057154,43122690,43188226,43253762,43319298,43384834],"notinheritable":[39518209,39714817,39911425,40042497,40304641,40828929,41287681,41353217,41811969,42074113,42139649,42991617,43057153],"normal":[27721729,30474241,32636929,40697857],"natively":[6881281,7143425,7405569,7471105,7536641,7602177,7667713,7733249,8585217,9240577,9371649,9633793,37158913],"newer":[32636929],"number":[196609,393217,1245185,4784129,6094849,6291457,6422529,7995393,9961474,10223618,10289154,10682370,10813442,11534338,14221313,14811137,28704769,30081026,33423362,34603009,36241410,40304642,40894465,42532865],"nonexistent":[36175873,40108033],"numeric":[6881281,7143425,7405569,7471105,7536641,7602177,7667713,7733249,8585217,9240577,9371649,9633793,14221314,14811137,30081026,36831233,37355521,40304642,41287681,42401793],"newobj":[3014660,3407876,4849665,6160385,6225922,6488071,6619142,6881281,6946823,7012353,7143425,7405569,7471105,7602177,7536641,7667713,7733249,8060936,8585217,9240577,9371649,9633793,9895937,14811137,25034757,41025540,42926084],"nextdouble":[8060930],"namespaces":[4915201,5570561,39387137,40435713],"null":[3014658,3407874,4849666,5111811,5242882,5570561,6356994,7012354,8257537,9109507,9895938,10616833,14221314,17629185,21561345,28246018,28770305,29687811,29949954,30212097,31195137,31326209,31457281,31588353,31981569,32243713,33030145,33226753,33488897,33816577,34537473,34734081,35127297,35258369,36175873,37093377,37945347,38338561,38993921,39452674,40108033,41025538,41418753,41615361,41877505,42401793,42467330,42663939,42729474,42926082,42991617,43384833],"nested":[6225921,6422529,7274497,12058625,12189697,12320769,12255233,12386305,13041665,13238273,15073281,16908289,19005441,25362433,27983873,33226753,41811969,42008577,42467329,42729473],"nodes":[4915202,5570562,35127297,40435714],"nodeid":[30081025,36831237,40304641]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_111.json b/docs/Reference/fti/FTI_111.json index 8ed951513..e6db52982 100644 --- a/docs/Reference/fti/FTI_111.json +++ b/docs/Reference/fti/FTI_111.json @@ -1 +1 @@ -{"overloads":[16973825,17956865,18874369,19857409,20905985,21757953],"omit":[5177345,5242881,5439489,6160385,8781825,9699329,9895937,11862017],"option":[38928385,38993921,42270723,42729477,43057154],"one":[2293761,2424833,3211265,4718594,4784130,5767169,5963778,6684673,7077889,7864321,7929857,8847361,9306113,9371649,9830401,10420225,10551297,14942210,15925249,16973825,18874369,19857409,21757953,23068674,28180481,28377092,29229057,29425668,29491201,29556738,30408706,31129601,32309249,32964609,34144257,35979265,37093377,38273025,38731781,40304643,41091075,41680898,41943041,42467332,42926081],"old":[32505857,38076417,39518212,40697857],"ownerhandle":[28770305,40173573,42860545],"objects":[2424833,5570561,6029313,6291457,11403265,11468801,12058625,13041665,13565955,14024705,14745601,14942210,15794177,15990785,27131905,27787265,27983873,28508161,29622273,29884417,32833537,36306945,36896770,37879809,38404097,38600705,39714817,40828929,41811969,41943041,42074113,42139649,42270722,42532865,42729474,43057154],"overload":[3407873,3473409,3670017,3735553,3866625,4325377,4390913,4718593,5111809,5177345,5242881,5439489,5570561,5636097,5832705,5963777,6029313,6160385,6225921,6291457,6422529,6553601,6619137,6815745,6946817,7077889,7274497,7340033,7667713,7733249,7798785,7929857,8192001,8257537,8323073,8388609,8454145,8650753,8716289,8781825,8847361,9109505,9371649,9502721,9699329,9830401,9895937,9961473,10027009,10485761,10551297,10747905,10813441,10878977,10944513,11010049,11141121,11206657,11272193,11403265,11468801,11534337,11665409,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12582913,12713985,12779521,12976129,13041665,13107201,13238273,13369345,13500417,13565953,13631489,13697025,13762561,13893633,13959169,14024705,14155777,14221313,14286849,14352385,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15204353,15269889,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16973825,17104897,17170433,17301505,17367041,17432577,17498113,17629185,17760257,17825793,17891329,17956865,18153473,18219009,18284545,18546689,18612225,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20578305,20643841,20774913,20840449,20905985,20971521,21102593,21168129,21233665,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22282241,22347777,22478849,22544385,22609921,22675457,22740993,22806529,22872065,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24576001,24641537,24707073,24838145,24903681,25034753,25100289,25231361,25296897,25362433,25493505,25559041,25624577,25755649,25821185,25886721,25952257,26017793,26148865,26214401,26345473,26476545,26542081,26804225,27000833,27066369,27525121,27918337,28114945,28246017,28377089,28573697,28835841,29032449,29294593,29360129,29622273,30343169,30932993,30998529,31457281,32047105,32374785,32899073,33030145,33488897,34406401,35127297,35454977,36569089,40960001,41287681,41746433],"occurs":[196609,393217,524289,589825,983041,24444929,38731777,40304642,41091073,41549825],"onexposedtoscriptcode":[1507329,10420229,42205185],"owner":[28770305,40173569,42860545],"objec":[16842753,33095682,37683201,37879809,38862849,41943042],"owns":[33095681,33882113,41943041],"outcome":[9306113],"obsolete":[16384001,22020097,25231361,26738689,29032449,32505858,33947649,38076418,38404097,38993921,39452673,39518209,40566785,42532865],"optional":[3866626,3932163,4194307,4325377,4521986,4849667,5308419,5570561,6029313,6619137,6750211,7274497,8257537,8716289,9306115,9961473,13041665,13959169,14024705,14745601,14942209,15269890,15400961,15466497,15597569,15925249,15990785,16777218,16908289,17104898,17891329,18087937,18612225,18743298,18939906,19070978,19660802,20381697,20578305,21561346,22347777,22478849,24444930,26607619,27656193,28049410,29687809,31588353,32243713,33423361,33751041,36044802,36569089,37224449,40108035,41025537,41680897,42926081],"operationcanceledexception":[30408705,41091078],"obj":[4915205],"occurrence":[5046273,42074113],"optionally":[3801091,4456451,4587523,4653059,7602179,12713985,13565953,14680065,21364737,23592961,24248321,24379393,25296897,25821185,28114945,30343169,31457281,38404099,40828931,41811971,42139651,42532867],"overridden":[917506,1441794,1703938,1900546,1966082,2293761,3145730,3211265,8060929,39714818,40304641,40763394,40960002,41091073,41287682,41418754,42008578],"options":[3801102,4456462,4587534,4653070,6094853,7602191,10878978,11141122,11206658,11403266,11993090,12058626,12255234,12779522,13238274,13697026,13893634,14024706,14155778,14221314,14942210,15990786,16252930,16580610,16646146,16973826,17498114,17825794,18153474,18284546,18546690,18874370,19136514,19267586,19529730,19791874,19857410,19922946,20119554,20643842,20840450,21757954,21823490,21954562,22020097,22085634,22282242,22609924,22740994,22872066,23003138,23199745,23461889,23527428,23920642,24117250,24313857,24444932,25100290,25362440,25493506,25624577,25952260,26214404,26476546,26673156,27000836,27066372,27394049,28049409,30539777,31391745,32112641,33488900,34406408,35454977,36044801,36634626,38404110,38928386,38993921,40501250,40828946,41418758,41484290,41811986,42139671,42270722,42401805,42532878,42729474,43057154],"obsoleteattribute":[16384004,22020100,33947652,39452676,39518212],"object":[327691,393217,458763,524289,720907,786438,851979,917513,1441801,1507329,1638404,1703945,1769483,1835019,1900553,1966089,2031627,2097163,2162699,2293769,2359307,2424861,2490379,2555915,2621451,2818059,2883595,2949131,3014662,3080193,3145737,3211273,3276811,3342347,3801112,4128812,4456471,4521989,4587543,4653079,4718594,4784173,4849672,5046283,5177350,5242892,5308421,5373957,5439494,5505037,5570573,5636103,5701637,5767180,5832717,5898247,5963778,6029324,6094859,6160395,6225929,6291462,6357001,6422535,6488078,6553602,6619149,6684679,6750215,6815757,6881287,6946819,7012359,7077894,7143425,7208967,7274508,7340047,7405575,7536647,7602199,7667716,7733261,7798786,7864337,7929863,7995399,8060937,8126471,8257557,8519687,8585228,8781830,8912903,8978439,9306129,9633798,9699334,9764870,9895942,10092551,10223623,10289157,10420228,10616833,10813444,10878980,10944520,11010058,11141121,11206659,11272193,11403266,11468802,11665412,11796481,11862022,11927555,11993091,12058626,12124165,12189697,12255233,12320773,12386307,12779524,12976132,13041666,13107205,13238276,13369345,13565959,13697025,13959173,14024706,14221313,14286851,14614533,14745602,14811137,14942218,15007745,15073281,15138818,15269893,15335425,15400970,15597580,15794178,15925255,15990786,16187393,16842754,16908301,17170438,18087947,18677761,19202055,21299201,22544388,22609928,22675461,23396357,23461890,23724035,23986177,24051716,24182786,24313860,24444931,25755655,26542084,26804226,27197448,27262978,27394050,27525122,27918338,28442629,28573698,29360131,29556737,30408705,30932995,31129607,32309254,32505859,32833543,32964615,33095684,33554440,33882113,33947649,35127304,35586050,35717124,35913740,36044812,36306952,36438017,36503559,36569103,37617676,37748748,38076431,38141954,38273036,38404121,38535173,38600712,38731790,39256076,39518212,39583745,39714827,39780364,39976972,40108038,40239105,40304653,40370177,40566796,40697857,40763402,40828952,40960010,41025548,41091084,41156620,41222158,41287690,41353222,41418762,41484291,41549848,41615372,41680942,41811992,41877509,41943075,42008586,42074143,42139672,42205186,42270722,42336268,42401804,42532888,42663948,42729475,42926125,43057154,43122689],"overridable":[3538945,4194305,13434881,30081025],"occupies":[39518212],"overriding":[40632321],"older":[30801921,32178177],"occupying":[11534337,17235969,25165825],"observed":[1179649,26673153,34734081,41353217],"occurred":[131073],"overrides":[2293762,2490369,3211266,3342337,3801089,4456452,4587521,4653057,7602181,10158081,10616833,13828097,15007745,15138817,16842754,19398657,20447233,20512769,20709377,21364737,22151169,22937601,24772609,25821185,26869761,27131905,27262977,27459587,27721729,27787266,27983873,28114945,29884417,30343169,32571393,33619969,34603009,35323905,36110337,36306945,38273025,38404097,38600705,39124993,40304642,40828930,41091074,41222145,41811970,42139655,42336259,42532869],"overloaded":[6225922,6946817,7274497,8257537,10944514,12386305,14942209],"output":[5898241,8585217,13434882,20447234,20512770,20709378,34209793],"override":[983041,2424841,3538945,4194305,8060929,9633793,9764865,10158083,10616835,11534337,11599873,12845057,13434882,13828099,15007747,15138819,16842755,17235969,19398659,20447236,20512772,20709380,21364739,22151171,22937603,24772611,25821187,26869763,27262979,27721731,29491201,29622273,30081025,30670849,31129601,31784961,32571395,32964609,33554433,33619971,34603011,34930689,34996225,35323907,35979265,36110339,36306947,36438017,36503553,37158913,37289985,38010881,38600707,39124995,40763393,40960001,41943049],"open":[26673153,39321601],"operators":[39714817],"offset":[9043974,9437190,10682374,12910598,31064066,31981570,32702466,34275334,34537474,35651585,36175874,37486594,37945345,38797313,42795010,42991618],"operations":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424854,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,10420226,16842753,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943062,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"optimized":[13434881,20447233,20512769,20709377,29687809,37224449,41025537],"operator":[6356993,6488065,10944513,12386305],"outattribute":[9764866,17104898,17367042,18219010,18743298,18808834,19005442,19070978,19333122,19988482,20054018,20250626,20381698,20578306,20774914,21102594,21495810,21561346,22216706,22347778,22478850,23330818,23789570,24510466,25559042],"operation":[3932163,4194306,6619138,6815745,7733249,7864321,8781825,9175041,9306113,9699329,9895937,10289153,10354689,10878977,11141121,11206657,11403265,11862017,11993089,12058625,12255233,12779521,13238273,13697025,14024705,14221313,14942209,15990785,16973825,17498113,18153473,18284545,18546689,18874369,19136513,19267585,19529729,19791873,19857409,19922945,20119553,20643841,20840449,21757953,21823489,21954561,22020097,22085633,22282241,22740993,22872065,23003137,23199745,23920641,24117249,25100289,25493505,26476545,30408705,30867457,34078721,41091073]} \ No newline at end of file +{"optimized":[17235969,23330817,24248321,27394049,30081025,34471937,40304641],"overload":[3604481,3735553,3866625,3932161,4063233,4521985,4915201,5177345,5308417,5439489,5570561,5636097,5767169,5832705,5898241,6094849,6225921,6291457,6488065,6422529,6619137,6684673,6750209,6946817,7077889,7274497,7340033,7798785,7929857,8060929,8126465,8192001,8323073,8454145,8519681,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9306113,9437185,9568257,9764865,10354689,10420225,10485761,10747905,11075585,11206657,11272193,11337729,11468801,11599873,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13434881,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14221313,14286849,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15859713,15990785,16121857,16187393,16252929,16318465,16384001,16449537,16580609,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17301505,17367041,17432577,17498113,17563649,17694721,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18743297,18874369,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20316161,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,21037057,21102593,21168129,21233665,21364737,21430273,21626881,21757953,21823489,21889025,21954561,22085633,22151169,22020097,22216705,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745,23265281,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23920641,24117249,24182785,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25165825,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27066369,27459585,27525121,27983873,28049409,28311553,28377089,28508161,28573697,28639233,29229057,29294593,29884417,30015489,30343169,30801921,31129601,31850497,32899073,34144257,35520513,38862849,39256065,40501249,40828929,41811969],"overriding":[40960001],"occurrence":[1507329,42532865],"obsolete":[13762561,23527425,24313857,28966914,30146561,30801921,35913729,36110337,36634625,39911426,40370177,41418753,41877505,41943041],"ownerhandle":[29032449,36765701,43319297],"old":[28966913,36634628,38076417,39911425],"occurred":[65537],"optional":[3997699,4063233,4259843,4521986,4784130,4849667,5111811,5242883,6225921,6422529,6619137,6946817,7012355,8060929,8454145,8519681,9895939,12255233,12386305,13041665,13238273,13828098,14024706,14352385,14417921,14680065,14811137,15925249,16711681,16777217,16842754,17039361,17301505,17563649,18153473,18284546,19070977,19267586,19791874,20250625,20840450,21168129,23068674,25755650,27328514,28442627,29818881,30081025,31719425,34471937,35454977,36372481,37617665,39256065,39845890,40304641,40632323,41025537,42926081],"older":[29753345,34865153],"obj":[5111813],"operators":[41287681],"operations":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211286,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,9699330,18808833,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763414,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"outattribute":[10616834,17170434,17301506,17367042,17956866,18284546,18350082,18415618,18481154,18546690,19070978,19791874,19857410,20250626,20840450,21168130,21430274,22609922,23265282,24510466,25755650,26148866,26804226,28508162,28573698],"objects":[3211265,6225921,6422529,7274497,12058625,12189697,12255233,12386305,13041665,13238273,14221315,14811138,16908289,19005441,28770306,30212098,31588354,31981570,33357825,34144257,34734082,35389441,35848193,36962306,37683201,39190529,40763393,41287681,41418754,41615362,41680898,41877506,42401794,42532865,42991618,43188226,43384834],"override":[1441793,3211273,3670017,3997697,8388609,10092545,10616833,10878979,10944513,11403267,12517377,13434881,14155779,15007747,16515075,17235970,18677763,18808835,18939905,20381699,20709379,21299203,21692419,23003139,23134211,23330820,23855107,24248324,25100291,27394052,31457281,31916033,32178177,32636929,32702465,32768001,33030145,33095681,33488897,33554433,33685507,33816577,33947649,34144257,34209793,34340867,34406401,34537473,35192835,35782659,35848195,37552131,37748737,38207491,39190531,40763401,40828929],"open":[25231361,39387137],"obsoleteattribute":[13762564,23527428,35913732,36110340,36634628],"occurs":[983041,1048577,1441793,1638401,4128769,23068673,40173569,40435713,42467330,42729473],"occupies":[36634628],"output":[6553601,7995393,17235970,23330818,24248322,27394050,37158913],"onexposedtoscriptcode":[589825,9699333,42598401],"one":[3014658,3080193,3211265,3276801,4915202,5570562,6684673,6750209,6815745,7208961,8978433,9175041,9568257,9699329,9764865,9895937,10420225,14811138,16777217,17498113,18022401,18612225,22675458,22937601,28246018,29687812,29949954,31195137,31326209,31522817,31850500,32243713,33030145,33226753,33488897,33816577,34537473,36175873,40108033,40435717,40763393,41025537,42467331,42663940,42729475,42926082],"optionally":[4325379,4653059,4718595,5505027,5701635,13959169,14221313,14286849,20709377,23003137,24444929,24576001,25165825,26279937,26476545,26607617,30015489,41418755,41615363,41877507,42991619,43384835],"overrides":[2490369,3080194,3276802,4325377,4653061,4718593,5046273,5505028,5701633,10878977,11403265,14155777,15007745,16515073,18677761,18808834,20381697,20709377,21299201,21692417,23003137,23134209,23330817,23855105,24248321,25100289,25165825,27394049,30015489,30212097,30932995,31588354,31981569,33685505,34340865,34734081,35192833,35782657,35848193,37552129,38207489,39190529,40108033,41418753,41615362,41877509,42270721,42336259,42467330,42729474,42991623,43384834],"object":[262150,327684,524299,589825,655371,720905,786443,851979,917515,1179659,1376267,1507339,1572873,1638401,1966089,2162699,2228235,2293771,2359307,2424843,2490379,2555915,2621451,2686985,2752523,2818057,2883590,2949129,3014701,3080201,3145739,3211293,3276809,3342347,3407916,3538945,4128769,4325400,4653079,4718615,4784133,4849669,4915202,4980741,5046283,5242888,5308422,5439500,5505047,5570562,5636102,5701655,5832707,5898251,5963789,6029321,6094861,6160385,6225932,6291471,6357006,6422541,6488068,6553607,6619149,6684679,6750214,6815751,6881287,6946837,7012359,7077901,7143431,7208972,7274502,7340034,7405575,7471111,7536647,7602183,7667719,7733255,7798791,7995404,8060940,8192002,8323080,8388617,8585223,8650759,8781837,9043977,9109509,9175057,9240583,9371655,9437187,9633799,9699332,9895953,10485766,10616838,10747910,10878977,11141125,11272198,11337729,11468806,11665412,11730945,11796484,11927553,11993089,12058626,12124161,12189698,12255234,12386306,12451843,12517382,12582913,12648452,12713985,12779524,12845057,12910595,12976129,13041666,13172740,13238274,13369347,13631493,13697028,13828101,13893637,14155777,14221319,14352394,14483459,14680069,14745605,14811146,14942209,15138821,15400966,15466497,15597575,15859722,15925261,16318465,16515074,16711691,16777223,16908290,17039372,18808834,19005442,19660801,20447237,22216706,22347784,23068675,23134210,23658498,23724037,23920644,24117250,24641539,24707076,25034759,25296899,25559041,25624578,26017794,26083330,26345474,26542084,26673156,26935299,28114945,28246017,28639240,28704773,28966915,29556740,29949953,31326214,31916039,32636929,33030151,33554440,34537479,35389447,35848200,35913729,36175879,36634628,37486593,37748746,37945348,38076417,38469633,38797324,38862856,39059458,39190536,39256079,39452675,39518213,39649282,39714817,39845900,39911439,40042497,40108044,40173592,40304652,40435726,40632326,40697868,40763427,40828938,40894470,41025581,41091084,41156620,41222149,41287691,41353228,41418777,41549836,41615384,41746444,41680898,41811978,41877528,41943052,42008586,42074113,42139660,42205196,42270734,42336268,42401795,42467341,42532895,42598402,42729484,42926126,42991640,43057162,43188226,43253772,43384856],"observed":[393217,25231361,34603009,40894465],"objec":[18808833,29556738,33619969,34275329,37683201,40763394],"outcome":[9895937],"operator":[6029313,6356993,8323073,9437185],"omit":[5308417,5439489,5636097,5898241,10485761,10747905,11272193,11468801],"occupying":[13434881,18939905,20971521],"overridden":[720898,1572866,1966082,2686978,2818050,2949122,3080193,3276801,8388609,37748738,40828930,41287682,41811970,42008578,42467329,42729473,43057154],"options":[3342341,4325390,4653071,4718606,5505038,5701646,11927554,12058626,12124162,12386306,12451842,12845058,12779522,12910594,12976130,13172738,13238274,13697026,14811138,15532034,15990786,16121858,16908290,16973826,17498114,17825794,18022402,18087938,18612226,18743298,19136514,19202050,19333122,19595266,19988482,20054018,20643842,20774914,21102594,21364738,21889026,21954562,22020098,22413314,22478850,22806530,22872066,22937602,23068676,23199746,23396354,23461890,23527425,23789570,23920641,24772612,24838145,24903681,24969220,25231364,25690114,25821186,26083329,26214408,26345473,26738689,27328513,27459592,28311556,28377092,28639236,28901377,29229060,29884420,30539777,35061761,39124994,39452674,39845889,40370177,40566786,41418766,41484290,41615378,41680898,41877518,42139661,42401794,42991639,43057158,43188226,43384850],"operation":[3997698,4259843,6619138,7077889,8781825,9175041,9895937,10158081,10485761,10747905,11141121,11272193,11468801,11927553,12058625,12124161,12386305,12451841,12845057,12779521,12910593,12976129,13107201,13172737,13238273,13697025,14811137,16908289,17498113,17825793,18022401,18087937,18612225,18743297,19136513,19202049,19595265,19988481,20054017,20643841,20774913,21102593,21364737,21889025,21954561,22020097,22413313,22478849,22806529,22872065,22937601,23199745,23396353,23461889,23527425,23789569,24903681,25821185,29949953,34668545,38273025,42729473],"owner":[29032449,36765697,43319297],"owns":[29556737,38469633,40763393],"offset":[9961478,10682374,10813446,11534342,27131906,27197442,27918338,30998530,32833542,33161217,35651585,39583746,39780353,40239106,42860546,43122690],"overloads":[17498113,18022401,18612225,19464193,20512769,22937601],"overloaded":[5832705,6946817,8060929,8323074,9043970,9437185,14811137],"overridable":[3670017,3997697,17235969,31457281],"option":[40370177,40566785,41680898,42401797,43188227],"operationcanceledexception":[29949953,42729478]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_112.json b/docs/Reference/fti/FTI_112.json index 9c08a3cc4..5cb55d3f6 100644 --- a/docs/Reference/fti/FTI_112.json +++ b/docs/Reference/fti/FTI_112.json @@ -1 +1 @@ -{"process":[13434881,20447233,20512769,20709377,34471937,35848194,36765697,39911426],"precedence":[3670017,3866625,4325377,4390913],"parameters":[3407873,3473409,3670017,3735553,3866625,3932161,4194305,4325377,4390913,4521986,4718593,4849665,4915202,5177345,5242882,5308417,5373953,5439489,5505026,5570561,5636097,5701633,5767169,5832706,5898243,5963777,6029313,6160386,6225921,6291457,6356994,6422529,6488066,6553601,6619137,6684673,6750210,6815745,6881282,6946817,7012354,7077890,7143426,7208962,7274498,7340035,7405570,7536642,7733249,7798785,7864321,7929857,7995394,8060929,8126466,8257537,8323073,8388609,8454145,8519682,8585218,8650753,8716289,8781825,8847361,8912898,8978434,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9764865,9830401,9895938,9961473,10027009,10092546,10223618,10289153,10420225,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403266,11468802,11599873,11665410,11796481,11862018,11927553,11993089,12058626,12124161,12189697,12255233,12320769,12386305,12451841,12582913,12713985,12779522,12845057,12910593,12976129,13041666,13107201,13238273,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13959169,14024706,14155777,14221313,14286849,14417921,14548993,14614529,14680065,14745602,14811137,14876673,14942209,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794178,15859713,15925249,15990786,16056321,16187393,16252929,16318465,16384001,16515073,16580609,16646145,16711681,16777217,16908289,16973825,17039361,17104897,17170433,17301505,17367041,17432577,17498113,17629185,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18743297,18808833,18874369,18939905,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20971521,21102593,21364737,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22216705,22282241,22347777,22413313,22478849,22740993,22806529,22872065,23003137,23134209,23199745,23265281,23330817,23396353,23789569,23920641,24117249,24510465,24576001,24707073,24772609,25100289,25493505,25559041,25821185,26279937,26476545,33554433,35127297,36569089,37486593,37748737,38535169,39256065,40632321],"propertynames":[33095681,38862853,41943041],"populate":[5308417,5898241,6750209,7340033,8585217,10616833,15007745],"place":[14942209],"propertychangedeventargs":[983042],"progress":[34471937,36765697],"persists":[131073],"protected":[3997699,4259843,11796483,12713988,13631491,15335427,16384003,16842755,21364740,21954563,22020099,23003139,23199747,25100291,25821188,26476547],"patching":[42729475],"public":[655363,983043,1114115,1179651,3407875,3473411,3538947,3604483,3670019,3735555,3866627,3932163,4063235,4194307,4325379,4390915,4521987,4718595,4849667,4915203,4980739,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6160387,6225923,6291459,6356995,6422531,6488067,6553603,6619139,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7667715,7733251,7798787,7864323,7929859,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9109507,9175043,9240579,9306115,9371651,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10485763,10551299,10616835,10747907,10813443,10878979,10944515,11010051,11141123,11206659,11272195,11403267,11468803,11534339,11599875,11665411,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12713985,12779523,12845059,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13434883,13500419,13565955,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16449539,16515075,16580611,16646147,16711683,16777219,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21233667,21299203,21364737,21430275,21495811,21561347,21692419,21757955,21823491,21889027,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22740995,22806531,22872067,22937603,23134211,23265283,23330819,23396355,23658499,23789571,23855107,23920643,24117251,24510467,24576003,24707075,24772611,25165827,25493507,25559043,25821185,26869763,27131905,27262979,27656195,27721731,27787265,27852803,27983873,28508161,28639235,28966915,29163523,29491203,29622275,29753347,29884417,30081027,30146563,30539779,30670851,30736387,30801923,30867459,31129603,31195139,31260675,31588355,31653891,31719427,31784963,31850499,31916035,32112643,32178179,32243715,32440323,32571395,32636931,32768003,32833539,32964611,33030147,33226755,33423363,33554435,33619971,33685507,33751043,33816579,33882115,33947651,34013188,34078723,34209795,34340867,34471939,34603011,34668547,34734083,34799619,34865155,34930691,34996227,35127299,35192835,35323907,35520515,35586051,35651587,35717123,35782659,35848195,35913731,35979267,36044803,36110339,36175875,36241411,36306947,36372483,36438020,36503555,36569091,36634627,36700163,36765699,36831235,36896771,36962307,37027843,37093379,37158915,37224451,37289987,37355523,37421059,37486595,37552131,37617667,37683203,37748739,37814275,37879811,37945347,38010883,38076419,38141955,38207491,38273027,38338563,38404100,38469635,38535171,38600707,38666243,38731780,38797315,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39387139,39452675,39518211,39583747,39649283,39714820,39780355,39845891,39911427,39976963,40042499,40108035,40239107,40304644,40370179,40435715,40501251,40566787,40632323,40697859,40763396,40828933,40894467,40960004,41025539,41091076,41156611,41222147,41287684,41353219,41418756,41484291,41549827,41615363,41680900,41746435,41811973,41877507,41943044,42008580,42074115,42139653,42205187,42270723,42336260,42401795,42467331,42532869,42598403,42663939,42729475,42795011,42860547,42926083,42991619,43057156,43122691],"particularly":[36438017],"path":[4849665,7143426,36634628],"programming":[5177345,5242881,5439489,6160385,8781825,9699329,9895937,11862017],"propertyindices":[33095681,37683205,41943041],"polluting":[31588353,32243713],"periodically":[36241409],"previously":[6094854,7602182,17104897,17367041,18219009,18808833,19988481,20381697,20578305,21102593,21495809,21561345,24510465,25559041,26148867,28835843,29294595,32374787,42139654,42401798],"properties":[2031617,2162689,5570562,5636097,6029314,6291458,6422529,6553601,6750209,6815745,7077889,7274497,7667713,7733249,7798785,7929857,8257537,9306113,10354689,10813441,10878977,11010049,11141121,11206657,11272193,11403266,11468802,11665409,11927553,11993089,12058626,12189697,12255233,12779521,12976129,13041666,13238273,13369345,13697025,14024706,14221313,14286849,14745602,14811137,14942212,15794178,15990786,24444931,24969218,25427970,25690114,26083330,26411010,26607618,26738690,26935298,27131906,27328514,27459586,27590658,27787266,27983874,28049410,28311554,28442626,28508162,28770306,28901378,29425666,29556738,29687810,29884418,29949954,30015490,30277634,30408706,30474242,30605314,31064066,31391746,31522818,31588353,31981570,32243713,32505858,32702466,32833537,33095682,33357826,34537474,35389442,35913729,36044801,36175874,36306945,36438018,36896769,37486593,37617665,37879809,38076417,38404097,38600705,38731778,39714817,39780353,39976961,40108033,40304641,40370177,40566785,40632321,40763393,40828929,40960001,41025537,41091073,41156609,41287682,41418754,41549826,41615361,41746433,41811969,41943041,42008578,42074116,42139649,42336257,42401793,42467330,42532865,42598401,42795010,42860545,42991617,43122690],"profile":[2359298,6094851,7602179,15532035,16121858,16580612,17039362,17825796,18022404,20316163,22413316,25624578,26673155,27787265,31522817,35192833,35454978,35651585,37945345,38338561,38797313,39059457,39649281,39976963,40501249,41615361,42139652,42401796],"procedure":[3801089,4456449,4587521,4653057,7602177,15400962,38404097,40828929,41811969,42139649,42532865],"passed":[5898241,6750210,6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,9306113,10092545,10223617,41222145,42729473],"performs":[3801090,4128769,4456450,4587522,4653058,4784129,6094849,6619137,7602178,9306113,12451841,16842753,18415617,19398657,24772609,25755649,38404098,40828930,41680897,41811970,42139650,42401793,42532866,42926081],"profiles":[6094849,7602177,15532033,16580609,17563649,17825793,18481153,20316161,38338561,39059457,42139649,42401793],"prevent":[35848193,39911425],"port":[6094850,16973828,17498114,18874370,19136514,19267586,19529730,19857412,19922946,20119554,21757954,21823490,24117250,25362436,33488898,34406404,42139652,42401798],"point":[5505025],"progid":[3801096,4456456,4587528,4653064,4849671,5308423,7602184,11927560,11993096,12189704,12255240,12976136,13238280,13369352,13697032,21954567,22020107,22609924,23003143,23199751,23527428,25100295,26476551,38404104,40828936,41811976,42139656,42532872],"particular":[5046273,11665409,12779521,42074113],"paths":[27852801,28049409,36044801],"presentation":[13565953,13631489,14614529,14680065,15859713,16384001,17629185,17956865,18153473,18219009,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20054017,20250625,20643841,20971521,21692417,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23265281,23920641,24117249,25100289,25493505,25559041,26476545],"perform":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,4128769,4784129,6094849,6619137,12451841,18415617,19398657,24772609,35717121,35913729,36044801,37617665,37748737,38076417,38273025,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41943041,42008577,42270721,42336257,42401793,42663937,42926081],"proc":[4128769,4784129,8585222,41680897,42926081],"params":[4718593,5570561,5767169,5963777,6029313,6619137,6684673,7077889,7143425,7274497,7864321,7929857,8257537,8716289,8847361,9371649,9830401,9961473,10551297,13041665,14024705,14745601,15400961,15597569,15925249,15990785,16908289,18087937,36569089],"programmatic":[3801096,4456456,4587528,4653064,4849665,5308417,7602184,11927554,11993090,12189698,12255234,12976130,13238274,13369346,13697026,21954562,22020097,22609924,23003138,23199745,23527428,25100290,26214402,26476546,27000834,38404104,40828938,41811978,42139656,42532872],"physical":[33357825,37355521,39780353],"privateaccess":[43057153],"propert":[36896769,37879809],"propertychanged":[196609,589825,983047,38731777,41549825],"performance":[19726337,26673153,39321601,42270721],"parser":[38993924],"protocol":[16121857,17039361],"packages":[6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,10092545,10223617],"promise":[2752516,8781827,9699332,9895939,11862020,30998532,39583748],"populates":[2293761,3211265,10616833,15007745,40304641,41091073],"propertychangedeventhandler":[983048],"pass":[5832705,7340033,8585217,42729473],"provides":[2424845,3080193,6619137,13565953,14942209,24444934,24969217,27197441,27394049,27459585,28966913,32571393,35913730,38141953,38404097,41549825,41680897,41943053,42336258,42532865,42663937,42926081],"page":[131073,29097988],"processes":[18743297,19005441,19070977,19333121,20054017,20250625,20774913,22216705,22347777,22478849,23330817,23789569],"possible":[13565953,43057153],"parent":[4718593,4915201,5963777,38731777],"propertybag":[196611,589825,983042,2031626,2162702,7667717,9175043,9240581,9502729,9633795,9764867,10289155,10354691,10485767,11599876,12845059,24444929,27590662,29949958,32047110,33554435,34996227,36503555,38731802,41549845],"permitted":[27131905,27787266,27983873,28508161,29884417,31522817,34471937,35586050,36438017,36765697,38404097,40828929,41811969,42139650,42401793,42532865],"platforms":[32178177],"passing":[6750209,6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,10092545,10223617],"present":[12320769,13500417,13565953,14614529,14680065,15859713,39387137],"paramarray":[4718593,5570561,5767169,5963777,6029313,6619137,6684673,7077889,7143425,7274497,7864321,7929857,8257537,8716289,8847361,9371649,9830401,9961473,10551297,13041665,14024705,14745601,15400961,15597569,15925249,15990785,16908289,18087937,36569089],"profiler":[1179649,26673153,34734081,41353217],"past":[35651585,37945345,38797313],"part":[34013185],"platform":[32178177],"property":[196609,589825,983041,2031622,2162694,2424840,4128774,4718595,4784134,5636100,5701633,5898241,5963779,6422532,6553604,6750209,6815749,7667713,7733253,7798788,9175043,9633795,9764869,10289155,10944513,11599875,12386305,12845059,14942212,15073283,15597572,15925252,16187395,17170435,19202051,22544386,24051714,26804226,27131906,27590659,27656196,27787266,27852804,27918338,27983874,28180484,28508162,28573698,28639237,28704772,28966916,29163524,29229060,29360130,29491204,29622279,29753348,29818884,29884418,29949955,30081029,30146564,30212100,30539780,30670852,30736388,30801925,30867461,30932995,31129604,31195140,31260676,31326212,31588357,31653892,31719428,31784964,31850503,31916036,32112644,32178181,32243717,32309252,32440324,32571397,32636932,32768004,32833541,32964612,33030149,33095684,33161220,33226756,33292292,33423364,33554438,33619973,33685508,33751044,33816581,33882116,33947652,34013189,34078725,34144260,34209797,34275332,34340870,34471941,34603012,34668548,34734084,34799620,34865157,34930692,34996229,35061764,35127302,35192837,35258372,35323909,35520517,35586053,35651588,35717127,35782660,35848199,35979268,36110341,36241412,36306949,36372484,36438021,36503557,36569095,36700164,36765701,36831236,36896775,36962308,37027844,37093382,37158916,37224452,37289988,37355524,37421061,37552132,37683205,37814276,37879814,37945348,38010884,38207492,38338565,38404098,38469636,38535169,38600709,38666244,38731789,38797316,38862853,39059461,39124997,39190533,39452676,39518212,39649284,39845892,39911431,40173572,40239108,40435716,40697860,40828930,40894468,41287684,41418756,41484290,41549834,41680902,41811970,41943052,42008580,42139650,42270721,42532866,42729474,42926086],"pairs":[29556737,30408705,40304641,41091073],"provide":[2424833,4718593,5963777,19726337,25427969,26673153,27394049,29556737,30408705,32178177,38731777,39321603,40304641,41091073,41943041],"provided":[5046273,5636097,5767169,6422529,6553601,6619137,6684673,6815745,7274497,7667713,7733249,7798785,7864321,8257537,42074113],"predicate":[2162690,8388614,8650758,9371654,9830406,24903682,28377090,38731780],"profil":[26673153,28311557,30474241,33226753,35192833,35651585,36372481,36831233,38797313,39976965,41025537,41615361],"pause":[42270721],"predate":[33947649,39518209,40239105,40697857],"parameter":[5177345,5242881,5439489,6160385,6750209,6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8781825,8912897,8978433,9699329,9895937,10092545,10223617,11862017,12713985,21364737,25821185]} \ No newline at end of file +{"parameters":[3604481,3735553,3866625,3932161,3997697,4063233,4259841,4521985,4784130,4849665,4915201,4980737,5111810,5177345,5242881,5308417,5439490,5570561,5636097,5832705,5898242,5963778,6029314,6094850,6160386,6225921,6291459,6356994,6422529,6553603,6619137,6684673,6750210,6815745,6881282,6946817,7012354,7077889,7143426,7208961,7274497,7340033,7405570,7471106,7602178,7536642,7667714,7733250,7798785,7929857,7995394,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585218,8650753,8716289,8781825,8847361,8978433,9043969,9109505,9175041,9240578,9306113,9371650,9437185,9568257,9633794,9699329,9764865,9895937,9961473,10092545,10158081,10223617,10289153,10420225,10485761,10616833,10682369,10747906,10813441,10878977,10944513,11141121,11206657,11272193,11337729,11468802,11534337,11599873,11665409,11730945,11796481,11927553,11993089,12058626,12124161,12189698,12255234,12320769,12386306,12451841,12517377,12582913,12648450,12713985,12845057,12779521,12910593,12976129,13041666,13172738,13238274,13303809,13369345,13500417,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15073281,15138817,15335425,15400961,15466497,15532033,15597569,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16580609,16646145,16711681,16777217,16842753,16908290,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17498113,17563649,17629185,17694721,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18874369,19005442,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20447233,20643841,20709377,20774913,20840449,20905985,21102593,21168129,21233665,21364737,21430273,21495809,21561345,21626881,21823489,21889025,21954561,22020097,22413313,22478849,22544385,22609921,22806529,22872065,22937601,23003137,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23789569,24182785,24248321,24379393,24510465,24903681,25100289,25690113,25755649,25821185,25952257,26148865,26804225,26869761,27394049,28508161,28573697,33554433,38862849,39256065,40239105,40960001,41222145,41746433,42205185],"params":[4915201,5570561,6160385,6225921,6422529,6619137,6684673,6750209,6815745,6946817,7208961,8060929,8454145,8519681,8978433,9175041,9568257,9764865,10420225,12255233,12386305,13041665,13238273,14352385,15925249,16711681,16777217,17039361,39256065],"populate":[4849665,6291457,6553601,7012353,7995393,10878977,14155777],"paramarray":[4915201,5570561,6160385,6225921,6422529,6619137,6684673,6750209,6815745,6946817,7208961,8060929,8454145,8519681,8978433,9175041,9568257,9764865,10420225,12255233,12386305,13041665,13238273,14352385,15925249,16711681,16777217,17039361,39256065],"present":[13959169,14221313,14745601,14876673,15138817,17891329,39976961],"platforms":[29753345],"port":[3342338,17498114,18022404,18612228,18743298,19202050,19988482,20054018,21954562,22937602,23396354,23789570,25821186,26214404,27459588,28311554,42139654,42991620],"parser":[40370180],"programming":[5308417,5439489,5636097,5898241,10485761,10747905,11272193,11468801],"parameter":[5308417,5439489,5636097,5898241,6881281,7012353,7143425,7405569,7471105,7602177,7536641,7667713,7733249,8585217,9240577,9371649,9633793,10485761,10747905,11272193,11468801,14286849,20709377,23003137],"profile":[2424834,3342339,4653059,15728642,16449539,16646146,17629188,19333124,19922947,21561348,24838146,25231363,25690116,26738690,31260673,31588353,33161217,35651585,35717121,36831233,38010881,38993921,39780353,41091075,41353217,41484289,42139652,42991620],"promise":[2031620,10485764,10747908,11272195,11468803,32899076,39714820],"polluting":[29818881,35454977],"property":[851974,983041,1048577,1441793,2228230,3014662,3211272,3407878,4915203,5570563,6488065,6553601,7012353,7077893,7340036,7798788,8192004,8323073,8650756,8781829,9109505,9437185,10092547,10158083,10616837,10944515,11141123,12517379,14811140,15400963,15466499,15597571,16318467,16777220,17039364,24117250,24641538,24707074,25296899,25624578,26017794,26673154,27000835,27852803,28770306,29360132,29425668,29622276,29556740,29753349,29818885,30212098,30474244,30539780,30605316,30670852,30867460,31195140,31326212,31457285,31522820,31588354,31653892,31719428,31784964,31916037,31981570,32047108,32112644,32178180,32243716,32309252,32374788,32440324,32505860,32571396,32636933,32702468,32768004,32833540,32964612,33030148,33095684,33161220,33226758,33292292,33357828,33423364,33488900,33554438,33619973,33685509,33751044,33816580,33882116,33947652,34013188,34078724,34144263,34209797,34275333,34340868,34406404,34471940,34537476,34603012,34668549,34734082,34799620,34865157,34930692,34996228,35061764,35127301,35192837,35258373,35323911,35389445,35454981,35520517,35586052,35651588,35717125,35782661,35848197,35913732,35979271,36110340,36175877,36241412,36306948,36372484,36438020,36503556,36569092,36634628,36700167,36765700,36831236,36896773,36962311,37027845,37093382,37158917,37224452,37289988,37355524,37421061,37486596,37552133,37617668,37683206,37814276,37879812,37945351,38010885,38076420,38141957,38207493,38273029,38338565,38404100,38469636,38535172,38600708,38666245,38731781,38862854,38928388,38993925,39059461,39190533,39256071,39321604,39452674,39780356,40173578,40435725,40763404,41025542,41222145,41418754,41615362,41811972,41877506,42008580,42401794,42926086,42991618,43057156,43188225,43384834],"passed":[6553601,6881281,7012354,7143425,7405569,7471105,7536641,7602177,7667713,7733249,8585217,9240577,9371649,9633793,9895937,42270721,42401793],"pairs":[28246017,29949953,42467329,42729473],"particular":[1507329,12648449,13172737,42532865],"protected":[3801091,4390915,11337731,13762563,14286852,14548995,14942211,18808835,20709380,21364739,22020099,22478851,23003140,23461891,23527427,24903683],"previously":[3342342,4653062,17170433,18284545,18350081,18481153,18546689,19070977,20840449,21168129,21430273,24510465,25886723,26804225,27525123,28049411,28508161,29294595,42139654,42991622],"parent":[4915201,5111809,5570561,40435713],"protocol":[15728641,16646145],"provide":[3211265,4915201,5570561,23986177,25231361,25952257,26345473,28246017,28770305,29753345,29949953,30212097,31588353,31981569,33357825,34734081,39387139,40435713,40763393,41418753,41615361,41877505,42467329,42729473,42991617,43384833],"programmatic":[4325384,4653064,4718600,4849665,5242881,5505032,5701640,11796482,11993090,12124162,12451842,12582914,12976130,13369346,13697026,21364738,22020098,22478850,23461890,23527425,24903681,28377090,28639236,29229058,29884420,41418760,41615370,41877512,42991624,43384842],"precedence":[3932161,4063233,4521985,5177345],"profiles":[3342337,4653057,16449537,17760257,19333121,19922945,20119553,25690113,35717121,38010881,42139649,42991617],"propertychangedeventhandler":[1441800],"propertyindices":[29556737,33619973,40763393],"progid":[4325384,4653064,4718600,4849671,5242887,5505032,5701640,11796488,11993096,12124168,12451848,12582920,12976136,13369352,13697032,21364743,22020103,22478855,23461895,23527435,24903687,28639236,29884420,41418760,41615368,41877512,42991624,43384840],"persists":[65537],"procedure":[4325377,4653057,4718593,5505025,5701633,14352386,41418753,41615361,41877505,42991617,43384833],"profil":[25231361,28835845,30736385,33161217,33882113,35651585,38535169,38993921,39321601,40304641,41091077,41353217],"predicate":[851970,8847366,8978438,9306118,9568262,30343170,31850498,40435716],"provides":[3211277,3538945,6619137,14221313,14811137,22347777,23068678,26345473,27262977,30605313,30932993,35192833,38797314,39649281,40173569,40763405,41025537,41418753,41877505,42336258,42926081,43253761],"paths":[27328513,29622273,39845889],"performance":[25231361,25952257,39387137,43188225],"profiler":[393217,25231361,34603009,40894465],"propertychangedeventargs":[1441794],"past":[33161217,35651585,39780353],"populates":[3080193,3276801,10878977,14155777,42467329,42729473],"periodically":[32571393],"public":[393219,1114115,1245187,1310723,1441795,3604483,3670019,3735555,3866627,3932163,3997699,4063235,4259843,4456451,4521987,4587523,4784131,4849667,4915203,4980739,5111811,5177347,5242883,5308419,5373955,5439491,5570563,5636099,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6356995,6422531,6488067,6553603,6619139,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7602179,7667715,7733251,7798787,7864323,7929859,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9764867,9895939,10027011,10092547,10158083,10354691,10420227,10485763,10551299,10616835,10747907,10878979,10944515,11075587,11141123,11206659,11272195,11403267,11468803,11599875,11665411,11730947,11796483,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12845059,12779523,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13434883,13500419,13565955,13631491,13697027,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286849,14352387,14417923,14483459,14614531,14680067,14745603,14811139,14876675,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709377,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21430275,21561347,21626883,21692419,21823491,21889027,21954563,22282243,22413315,22544387,22609923,22806531,22872067,22937603,23003137,23134211,23199747,23265283,23330819,23396355,23592963,23789571,23855107,24051715,24182787,24248323,24379395,24510467,25100291,25690115,25755651,25821187,25952259,26148867,26804227,26869763,27394051,28114947,28508163,28573699,28770305,29360131,29425667,29622275,29753347,29818883,30212097,30474243,30539779,30605315,30867459,31457283,31588353,31719427,31784963,31916035,31981569,32178179,32309251,32440323,32505859,32571395,32636932,32702467,32768003,33030147,33095683,33161219,33226755,33357827,33423363,33488899,33554435,33619971,33685507,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34275331,34340867,34406403,34471939,34537475,34603011,34668547,34734081,34799619,34865155,34930691,34996227,35061763,35127299,35192835,35258371,35323907,35389443,35454979,35520515,35586051,35651587,35717123,35782659,35848195,35913731,35979267,36044803,36110339,36175875,36241411,36306947,36372483,36438019,36503555,36569091,36634627,36700163,36831235,36896771,36962307,37027843,37093379,37158915,37224451,37289987,37355523,37421059,37486595,37552131,37617667,37683203,37748740,37814275,37879811,37945347,38010883,38076419,38141955,38207491,38273027,38338563,38404099,38469635,38535171,38600707,38666243,38731780,38797315,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39321603,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173571,40239107,40304643,40370179,40435716,40501251,40566787,40632323,40697859,40763396,40828932,40894467,40960003,41025539,41091075,41156611,41222147,41287684,41353219,41418756,41484291,41549827,41615365,41680900,41746435,41811972,41877509,41943043,42008580,42074115,42139651,42205187,42270723,42336260,42401795,42467332,42532867,42598403,42663939,42729476,42795011,42860547,42926084,42991621,43057156,43122691,43188227,43253763,43319299,43384837],"propert":[36962305,37683201],"propertybag":[851982,983041,1048579,1441794,2228234,6488069,8257541,10092548,10158083,10616835,10944515,11075591,11141123,11206665,12517379,13107203,23068673,27000838,27066374,27852806,31916035,33554435,34209795,40173589,40435738],"privateaccess":[41680897],"patching":[42401795],"path":[5242881,6160386,39124996],"pass":[6094849,6291457,7995393,42401793],"perform":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,5046273,6619137,13303809,16056321,18677761,25100289,37748737,37945345,38797313,39452673,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41549825,41746433,41811969,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,43057153,43188225,43253761],"prevent":[35979265,36700161],"place":[14811137],"permitted":[28770305,30212097,31260673,31588354,31981569,32636929,34734081,36896769,37421057,39059458,41418753,41615361,41877505,42139649,42991618,43384833],"progress":[36896769,37421057],"passing":[6881281,7012353,7143425,7405569,7471105,7602177,7536641,7667713,7733249,8585217,9240577,9371649,9633793],"presentation":[13762561,13959169,14221313,14548993,15138817,17104897,17694721,17891329,18022401,18087937,18546689,19136513,19202049,19398657,19464193,19857409,19988481,20905985,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23461889,23527425,24182785,24903681,25821185,26804225,28573697],"propertynames":[29556737,34275333,40763393],"platform":[29753345],"proc":[3014657,3407873,7995398,41025537,42926081],"particularly":[32636929],"pause":[43188225],"physical":[29491201,35586049,41156609],"predate":[35913729,36634625,37486593,38076417],"part":[38731777],"provided":[1507329,6488065,6619137,6815745,6946817,7077889,7208961,7340033,7798785,8060929,8192001,8650753,8781825,9175041,42532865],"packages":[6881281,7143425,7405569,7471105,7602177,7536641,7667713,7733249,8585217,9240577,9371649,9633793],"performs":[3014657,3342337,3407873,4325378,4653058,4718594,5505026,5701634,6619137,9895937,13303809,16056321,18677761,18808833,25034753,25100289,41025537,41418754,41615362,41877506,42139649,42926081,42991618,43384834],"page":[65537,31064068],"propertychanged":[983041,1048577,1441799,40173569,40435713],"point":[5963777],"possible":[14221313,41680897],"processes":[17301505,17367041,17956865,18415617,19791873,19857409,20250625,22609921,23265281,25755649,26148865,28573697],"process":[17235969,23330817,24248321,27394049,35979266,36700162,36896769,37421057],"properties":[851969,2228225,6225922,6422530,6488065,6684673,6750209,6946817,7012353,7077889,7274498,7340033,7798785,8060929,8192001,8650753,8781825,9895937,11665409,11730945,11796481,11927553,11993089,12058626,12124161,12189698,12255234,12386306,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041666,13172737,13238274,13369345,13697025,14483457,14811140,15859713,16908290,19005442,23068675,23986178,27000834,27131906,27197442,27262978,27328514,27590658,27656194,27721730,27787266,27852802,27918338,28180482,28246018,28442626,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29491202,29556738,29687810,29818881,29949954,30081026,30146562,30212098,30277634,30408706,30736386,30932994,30998530,31260674,31391746,31588354,31981570,32636930,34734082,35389441,35454977,35848193,36962305,37683201,37748737,38797313,39190529,39583746,39845889,39911425,40042497,40173570,40239105,40304641,40435714,40501249,40632321,40697857,40763393,40828929,40960001,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41811970,41877505,41943041,42008578,42074114,42139649,42336257,42467329,42532868,42663938,42729473,42795009,42860546,42991617,43057154,43122689,43319297,43384833]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_113.json b/docs/Reference/fti/FTI_113.json index 6690a6a37..0692b8dc8 100644 --- a/docs/Reference/fti/FTI_113.json +++ b/docs/Reference/fti/FTI_113.json @@ -1 +1 @@ -{"qux":[6750209],"qualified":[786433,3014657,5570561,6029313,8716289,9961473,10944513,12386305,13041665,14024705,14745601,15990785,40108033,41353217]} \ No newline at end of file +{"qux":[7012353],"qualified":[262145,2883585,6225921,6422529,8323073,8454145,8519681,9437185,12255233,12386305,13041665,13238273,40632321,40894465]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_114.json b/docs/Reference/fti/FTI_114.json index 7724bc278..79c16f4e9 100644 --- a/docs/Reference/fti/FTI_114.json +++ b/docs/Reference/fti/FTI_114.json @@ -1 +1 @@ -{"relies":[32178177],"resource":[17301506,17498114,17629186,18546690,19529730,19791874,20840450,21823490,21889026,22872066,24117250,24576002,25362438,26673153,34406406,35848193,38076417,39911425,42139654,42401798],"receive":[29622273,33030145,40960001,41287681,41746433],"removeelement":[4128769,4784129,6684677,41680897,42926081],"recently":[18022401,22413313],"replacement":[32178177],"randomt":[7274498],"removed":[6553601,6684673,7798785,9175041,12845057,15073281,16187393,38928385,42270721],"reclaim":[11534337,17235969,25165825],"removes":[2031619,2162691,2424834,4128771,4784131,5046275,6553601,6684673,7798785,9175041,10354689,12845057,13565953,14680065,15073281,16187393,26804226,27918338,38731779,41549827,41680899,41943042,42074115,42926083],"requests":[3932161,4194305],"recommended":[27131905,27787265,27983873,28508161,29884417,31850497,35323905,36110337,37027841,38404097,39124993,40828929,41811969,42139649,42532865],"running":[1638404,2752516,5177345,5242881,5439489,6160385,8781825,9699329,9895937,11862017,25034754,26542082,30998532,31850497,33816577,34013185,35586049,39583748,41877508],"relative":[35651586,36634625,37945346,38797314],"registered":[3801104,4456464,4587536,4653072,4849665,5308417,7602192,10813442,10878978,11141122,11206658,11272194,11927554,11993090,12189698,12255234,12976130,13238274,13369346,13697026,14221314,14286850,14811138,22609928,23527432,38404112,40828944,41811984,42139664,42532880],"reserved":[196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"retrieves":[10944513,12386305,24444929,38535169],"rely":[33816577],"recursion":[34471937,36765697],"retrieved":[27131905,27787265,27983873,28508161,29884417,30801921,38404097,40828929,41811969,42139649,42532865],"removeproperty":[4128770,4784130,6553606,7798790,26804227,41680898,42926082],"rethrown":[9306113],"return":[3932162,4194306,4521985,4718593,4849665,4915201,5177345,5242881,5308417,5373953,5439489,5505025,5570562,5636097,5701634,5767169,5832707,5898241,5963777,6029313,6160385,6225921,6291457,6356994,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340035,7405569,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8519681,8585217,8781825,8912897,8978433,9043969,9175041,9240577,9306114,9437185,9699329,9764865,9895937,10092545,10158081,10223617,10682369,10944513,11075585,11337729,11599873,11730945,11862017,12124162,12320770,12386305,12648449,12845057,12910593,13107202,13303809,13434881,13565954,13828097,13959170,14417921,14614530,15073281,15138817,15269890,15400962,15532033,15597569,16056321,16121857,16187393,16515073,16580609,16711681,16908289,16973825,17104897,17170433,17367041,17760257,17825793,17891329,17956865,18022401,18087937,18219009,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19070977,19333121,19660801,19857409,19988481,20054017,20185089,20250625,20316161,20381697,20447234,20512770,20578305,20709378,20774913,20905985,21102593,21299201,21495809,21561345,21692417,21757953,22151169,22216705,22347777,22413313,22478849,23265281,23330817,23396354,23789569,23855105,24510465,24707073,25559041,26869761,27131906,27197441,27262977,27787266,27983874,28508162,29884418,31850497,33554433,33619969,35127297,35323905,35717122,36110337,36569089,38404098,38535169,39124993,40042497,40828930,41484290,41811970,42139650,42532866,42663938,42729473],"readonly":[655362,28180481,28639233,28704769,28966913,29163521,29229057,29491201,29753345,29818881,30081025,30146561,30212097,30670849,30736385,31129601,31195137,31326209,31653889,31719425,31784961,31916033,32309249,32440321,32571393,32833537,32964609,33161217,33226753,33292289,33619969,33685505,33882113,34144257,34275329,34340865,34603009,34734081,34799617,34930689,34996225,35061761,35192833,35258369,35323905,35651585,35782657,35979265,36110337,36306945,36372481,36503553,36700161,36831233,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37552129,37683201,37945345,38010881,38207489,38469633,38600705,38666241,38797313,38862849,39124993,39190529,39452673,40173569,40894465,41746433],"reference":[196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932162,3997697,4063233,4128769,4194306,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898242,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750212,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565954,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26738689,26804225,26869761,26935297,27000833,27066369,27131906,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787266,27852801,27918337,27983874,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508162,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884418,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209795,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404098,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714818,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828930,40894465,40960001,41025537,41091073,41156609,41222147,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811970,41877505,41943041,42008577,42074113,42139650,42205185,42270721,42336257,42401793,42467329,42532866,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"results":[10420225,35586049,35848193,38993921,39911425,42532865],"regardless":[9306113,36896770,37879809],"removepropertynocheck":[2031617,2162689,9175045,9502721,38731777,41549825],"runtime":[2293761,2424833,3211265,6094850,6225921,6946817,7274497,7602178,8257537,10616834,10944513,11796482,12386305,14942209,15007746,15335426,15532033,16580609,16973827,17235973,17301505,17498113,17563649,17629185,17956865,18153473,18284545,18481153,18546689,18874371,19136513,19267585,19464193,19529729,19595265,19791873,19857411,19922945,20119553,20840450,20905985,20971521,21299202,21757955,21823490,21889026,22740993,22872066,23658497,24117250,24576002,25493505,26673156,27787265,31522817,31850497,34078721,34406412,34471939,35848194,36765698,37552129,38076417,38338561,38928385,39059457,39780353,39911426,40304641,41091073,41943041,42139651,42401808],"responsible":[37093377],"runtimeheapsizesampleinterval":[27787265,35520517,42139649],"recompilation":[6094854,7602182,18743298,19005442,19070978,19333122,19988481,20054018,20185089,20250627,20774914,21495809,22216707,22347778,22478850,23265281,23330818,23789571,24707073,25559041,26148867,26673153,28835843,29294595,32374787,38993922,40566785,42139654,42401798],"remarks":[1179649,3670017,3866625,3932161,4194305,4325377,4390913,4718593,4849665,5308417,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8519681,8585217,8912897,8978433,9175041,9306113,9502721,10092545,10223617,10289153,10354689,10420225,10813441,10878977,10944513,11010049,11141121,11206657,11272193,11403265,11468801,11534337,11665409,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12713985,12779521,12976129,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13565954,13697025,13959169,14024705,14090241,14221313,14286849,14548993,14614529,14680065,14745601,14811137,14942210,15138817,15269889,15466497,15532033,15728641,15794177,15859713,15925249,15990785,16121857,16580609,16777217,16842753,16973825,17039361,17104897,17235969,17367041,17825793,17956865,18022401,18219009,18743297,18808833,18874369,19005441,19070977,19333121,19726337,19857409,19922945,19988481,20054017,20119553,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840450,20905985,20971521,21102593,21364737,21495809,21561345,21757953,21823490,21889026,21954561,22020097,22151169,22216705,22347777,22413313,22478849,22740993,22872066,22937601,23003137,23199745,23330817,23396353,23658497,23789569,24117250,24510465,24576002,25100289,25165825,25493505,25559041,25821185,26476545,26869761,27262977,27721729,28639233,29622273,30081025,30801921,30867457,31588353,31850497,32178177,32243713,32440321,32571393,32833537,33030145,33619969,33816577,33947649,34013185,34078721,34209793,34340865,34471937,34734081,34865153,35192833,35323905,35520513,35586049,35651585,35717121,35848193,36044801,36110337,36241409,36306945,36438017,36765697,36896769,37093377,37421057,37486593,37879809,37945345,38273025,38338561,38469633,38600705,38731777,38797313,39059457,39124993,39190529,39518209,39649281,39714817,39911425,40239105,40632321,40697857,40763393,40960001,41222145,41287681,41418753,42008577,42074113,42139649,42532865,42663937,42926081],"requesting":[3932161,4194305],"read":[2031619,2228225,2162691,6750211,9175041,9502722,10289153,10354689,11075589,14942209,24969217,27459585,28442625,28966913,32571393,35913729,37486593,38731779,41549827,41746433,42074113,42336257],"restricted":[31850497,41484289],"resumed":[34471937,36765697],"returning":[4128769,4784129,6488065,41680897,42926081],"removing":[30867457,34078721],"rank":[4521991],"requirement":[31850497],"root":[2293761,3211265,28311553,32833537,33226753,36306945,36634625,38600705,39976961,40304641,41091073,43057153],"returned":[13565955,42729473],"remove":[983041,2031617,2162689,5046274,6553602,6684674,7798786,9175041,12845064,15073281,16187393,38731777,41549825,42074114],"remote":[38928385,42270721],"returns":[327681,458753,720897,786434,851969,917508,1441796,1703940,1769473,1835009,1900548,1966084,2031617,2097153,2162689,2293762,2359298,2424834,2490369,2555905,2621441,2818049,2883585,2949121,3014658,3145732,3211266,3276801,3342337,3801089,4128772,4456449,4587521,4653057,4784131,5046273,5832707,6094851,6946817,7340035,7602179,8585219,9306113,10158081,13303809,13565953,13828097,15138818,16121857,18022401,18677761,21299201,22151169,22413313,24444929,26869762,27262978,27525122,28639233,30081025,31588353,32243713,32571393,34340866,34471937,35192833,35913729,36044801,36241409,36765697,37093377,37421057,37617665,37748737,38076417,38273025,38404097,38731777,39190529,39256065,39714820,39780353,39976962,40108034,40304642,40566785,40763396,40828929,40960004,41025537,41091074,41156609,41222145,41287684,41353218,41418756,41549825,41615361,41680899,41811969,41943042,42008580,42074113,42139651,42336257,42401795,42532865,42663939,42926084],"release":[11534337,12713986,17235969,21364738,25165825,25821186,38928385,42270721],"required":[3932161,4194305,5898241,14942209],"releases":[2818049,3801092,4456452,4587524,4653060,6094849,7602180,11534337,12713986,16842753,17235969,21364738,24379395,25165825,25821186,28114947,30343171,32178177,38404100,40566785,40828932,41811972,42139652,42401793,42532868],"random":[7274501],"restore":[30801921],"reason":[29687809,37224449,41025537],"references":[11534337,17235969,25165825],"reduces":[33816577],"restrictions":[27131905,27787265,27983873,28508161,29884417,36438018,38404097,40828929,41811969,42139649,42532865],"retain":[6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,10092545,10223617],"represent":[4718594,5963778,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11927553,11993089,12058625,12189697,12255233,12779521,12976129,13041665,13238273,13369345,13697025,14024705,14221313,14286849,14745601,14811137,14942209,15794177,15990785,38273025,38731778],"result":[3932161,4128769,5505025,5701633,5832708,6488065,6619137,6750210,6815745,6881281,7012353,7143425,7208961,7405569,7536641,7733249,7864321,7995393,8126465,8519681,8912897,8978433,9895937,10092545,10223617,11862017,12124162,12320770,13107202,13434881,13565955,13959170,14614530,15269890,16908289,18087937,19726338,20447233,20512769,20709378,23396354,24444929,27525121,42663937,42926081],"runtimes":[18743297,19005441,19070977,19333121,20054017,20774913,22347777,22478849,23330817],"readbytes":[1245185,1310721,1376257,1572865,2228225,9043973,12910597,36175873,37486593,42598401,42795009,42991617],"rejected":[29622273,33030145,40960001,41287681,41746433],"reflection":[8323073,8388609,9830401,10551297,27131906,27787266,27983874,28508162,29884418,33816579,35586050,38404098,40828930,41811970,42139650,42532866],"retrieve":[31588353,32243713],"reclaimed":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,16842753,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"redirected":[1],"rights":[196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"ref":[4915201,6488065,6750210,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39583745,39714817,39780353,39976961,40304641,40370177,40566785,40632321,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41418753,41549825,41615361,41680897,41811969,41877505,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081,43122689],"resourc":[43057155],"removal":[7667713],"runtim":[27787265,31522818,35848193,39845889,39911425,42139649,42401794],"representation":[2359298,3801089,4456449,4587521,4653057,7602177,13303809,13565953,16121858,17039361,22151169,24444929,26869761,29556737,30408705,35913729,38404097,39976962,40304641,40828929,41091073,41811969,42139649,42532865],"remainder":[20709377],"requested":[3932162,4194306,13959169,15269890,15466497,16777218,17104898,17891329,18612225,18743298,18939906,19070978,19660802,20381697,20578305,21561346,22347777,22478849,29097985],"range":[4718593,5570561,5898241,5963777],"represents":[327681,458753,720897,851969,917505,1179649,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2818049,2883585,2949121,3145729,3211265,3276801,3342337,3801089,3932162,4128769,4194305,4456449,4587521,4653057,4718593,4784129,5373953,5963777,6094849,7602177,8781825,9240577,9699329,9895937,10158082,11862017,13565953,13828098,15138818,24444941,25427971,26673159,27197441,27262978,27394052,29425665,29556737,30212097,30408705,31784961,34734081,35913729,36044802,37486593,37617666,37748738,38010881,38076417,38141953,38273026,38404097,38535169,38731779,39256066,39714817,39780353,39976962,40042497,40304642,40566786,40632321,40763393,40828930,40960001,41025538,41091074,41156610,41222146,41287681,41353217,41418753,41549825,41615362,41680897,41811970,41943042,42008577,42074113,42139650,42270721,42336257,42401794,42467329,42532865,42598401,42663938,42926081,42991617],"replaces":[34209793],"require":[14942210],"representing":[7077889,7929857],"rootnode":[28311553,33226757,39976961],"retrieval":[10420225,15597569],"refers":[5570561,6029313,6291457],"restrict":[11665409,12779521],"resources":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818050,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801092,4128769,4456452,4587524,4653060,4784129,6094850,7602180,11534337,12713988,16842753,17235969,21364740,24379395,24444929,25165825,25821188,27131906,27787266,27983874,28114947,28508162,29884418,30343171,31588353,31850497,32243713,32833537,34013188,35913729,36044801,36306945,37617665,37748737,38076417,38273025,38404102,38600705,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566786,40763393,40828934,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811974,41943041,42008577,42139654,42336257,42401794,42532870,42663937,42926081,43057153],"representative":[4915201],"retrievable":[36896769,37879809],"remain":[36896769,37879809],"replaced":[196609,589825,983041,38731777,41549825],"restriction":[1638402,3801090,4456450,4587522,4653058,5242882,6160386,7602178,11665409,12779521,23461890,26542082,27131906,27787266,27983874,28508162,29884418,30801922,31850497,38404100,40828932,41811972,41877506,42139652,42532868],"resolve":[3932161,4194305]} \ No newline at end of file +{"rights":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"runtimeheapsizesampleinterval":[31588353,38141957,42991617],"removeproperty":[3014658,3407874,7340038,8192006,26017795,41025538,42926082],"readbytes":[1703937,1769473,1835009,1900545,2097153,10682373,10813445,39583745,40239105,42795009,42860545,43122689],"root":[3080193,3276801,28835841,35389441,35848193,38535169,39124993,39190529,41091073,41680897,42467329,42729473],"reflection":[7929857,8847361,8978433,9764865,28770306,30212098,31588354,31981570,34734082,37027843,39059458,41418754,41615362,41877506,42991618,43384834],"remove":[851969,1441793,1507330,2228225,6815746,7340034,8192002,10158081,10944520,15466497,16318465,40173569,40435713,42532866],"remote":[40566785,43188225],"returned":[14221315,42401793],"registered":[4325392,4653072,4718608,4849665,5242881,5505040,5701648,11665410,11730946,11796482,11927554,11993090,12124162,12451842,12582914,12713986,12845058,12779522,12910594,12976130,13369346,13697026,14483458,28639240,29884424,41418768,41615376,41877520,42991632,43384848],"rethrown":[9895937],"runtim":[31260674,31588353,35979265,36503553,36700161,42139650,42991617],"releases":[2621441,3342337,4325380,4653060,4718596,5505028,5701636,13434881,14286850,18808833,18939905,20709378,20971521,23003138,25165827,26607619,29753345,30015491,41418756,41615364,41877508,41943041,42139649,42991620,43384836],"reduces":[37027841],"requesting":[3997697,4259841],"redirected":[1],"reserved":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"retain":[6881281,7143425,7405569,7471105,7536641,7602177,7667713,7733249,8585217,9240577,9371649,9633793],"required":[3997697,4259841,6553601,14811137],"resources":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621442,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342338,3407873,4325380,4653060,4718596,5046273,5505028,5701636,13434881,14286852,18808833,18939905,20709380,20971521,23003140,23068673,25165827,26607619,28770306,29818881,30015491,30212098,31588354,31981570,34734082,35323905,35389441,35454977,35848193,37748737,38731780,38797313,39190529,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418758,41549825,41615366,41680897,41746433,41811969,41877510,41943042,42008577,42139650,42205185,42270721,42336257,42467329,42729473,42926081,42991622,43057153,43253761,43384838],"recompilation":[3342342,4653062,17301506,17367042,17956866,18415618,19529729,19791874,19857410,20250626,22609922,23265283,24182785,24510465,25231361,25755650,25886723,26148867,26804225,26869761,27525123,28049411,28508161,28573699,29294595,40370178,41943041,42139654,42991622],"recommended":[28770305,30212097,31588353,31981569,34078721,34734081,35323905,35782657,37552129,38207489,41418753,41615361,41877505,42991617,43384833],"reclaimed":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,18808833,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"replaces":[37158913],"removepropertynocheck":[851969,2228225,10158085,11206657,40173569,40435713],"representative":[5111809],"returns":[262146,524289,655361,720900,786433,851969,917505,1179649,1376257,1507329,1572868,1966084,2162689,2228225,2293761,2359297,2424834,2490369,2555905,2686980,2621441,2752513,2818052,2883586,2949124,3014659,3080194,3145729,3211266,3276802,3342339,3407876,4325377,4653059,4718593,5046273,5505025,5701633,5832705,6094851,6291459,7995395,9895937,11403265,14221313,15007745,15728641,16515074,17629185,19660801,19726337,20381697,21561345,23134210,23068673,23658498,23855106,28114945,29818881,31457281,32571393,33226753,35127297,35192833,35258369,35454977,36896769,37093378,37421057,37748740,38338561,38797313,38993921,39845889,39911425,40108033,40173569,40304641,40435713,40632322,40697857,40763394,40828932,40894466,41025540,41091074,41156609,41287684,41353217,41418753,41549825,41615361,41746433,41811972,41877505,41943041,42008580,42139651,42205185,42270721,42336257,42467330,42532865,42729474,42926083,42991619,43057156,43253763,43384833],"restriction":[327682,4325378,4653058,4718594,5439490,5505026,5701634,5898242,12648449,13172737,26083330,26542082,28770306,30212098,31588354,31981570,34734082,34865154,35323905,39518210,41418756,41615364,41877508,42991620,43384836],"results":[9699329,35979265,36700161,39059457,40370177,41877505],"removed":[6815745,7340033,8192001,10158081,10944513,15466497,16318465,40566785,43188225],"requirement":[35323905],"restrict":[12648449,13172737],"removeelement":[3014657,3407873,6815749,41025537,42926081],"random":[8060933],"rank":[4784135],"resource":[17825794,18087938,18219010,18743298,19202050,19398658,20774914,21233666,21626882,21954562,22872066,25231361,25821186,26214406,27459590,35979265,36700161,39911425,42139654,42991622],"retrieved":[28770305,30212097,31588353,31981569,34734081,34865153,41418753,41615361,41877505,42991617,43384833],"retrieves":[8323073,9437185,23068673,41222145],"resolve":[3997697,4259841],"readonly":[1114114,1310722,29360129,29425665,30474241,30605313,30670849,31195137,31326209,31457281,31522817,31653889,31784961,31916033,32047105,32112641,32178177,32243713,32309249,32374785,32505857,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226753,33292289,33423361,33488897,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34799617,34996225,35127297,35192833,35258369,35389441,35586049,35651585,35782657,35848193,36110337,36241409,36438017,36569089,36765697,37093377,37224449,37289985,37552129,37814273,37879809,38207489,38338561,38404097,38469633,38535169,38600705,38993921,39190529,39321601,39780353,40501249],"responsible":[33226753],"ref":[5111809,6356993,7012354,37748737,38797313,39518209,39714817,39845889,39911425,40042497,40108033,40173569,40304641,40435713,40697857,40763393,40828929,40960001,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"result":[3407873,4259841,5963777,6094852,6160385,6356993,6619137,6881281,7012354,7077889,7143425,7405569,7471105,7602177,7536641,7667713,7733249,8585217,8781825,9109505,9175041,9240577,9371649,9633793,10747905,11468801,13631490,13828098,13893634,14221315,14680066,14745602,15138818,15925249,16711681,17235969,20447234,23068673,23330817,23658497,24248322,25952258,27394049,41025537,43253761],"retrieve":[29818881,35454977],"represent":[4915202,5570562,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,14483457,14811137,15859713,16908289,19005441,36175873,40108033,40435714],"runtimes":[17301505,17367041,17956865,18415617,19791873,19857409,20250625,22609921,25755649],"receive":[34144257,35520513,40501249,40828929,41811969],"replacement":[29753345],"return":[3997698,4259842,4784129,4849665,4915201,4980737,5111809,5242881,5308417,5439489,5570561,5636097,5832705,5898241,5963777,6029314,6094851,6160385,6225921,6291459,6356993,6488065,6422530,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7995393,8060929,8192001,8257537,8323073,8388609,8585217,8650753,8781825,9043969,9109506,9175041,9240577,9371649,9437185,9633793,9830401,9895938,9961473,10092545,10158081,10223617,10289153,10485761,10616833,10682369,10747905,10813441,10944513,11010049,11272193,11403265,11468801,11534337,11862017,13631490,13828098,13893634,14221314,14352386,14680066,14745602,15007745,15138818,15400961,15466497,15728641,15925249,16318465,16384001,16449537,16515073,16580609,16711681,16842753,17039361,17104897,17235969,17170433,17301505,17367041,17498113,17563649,17629185,17956865,18022401,18153473,18284545,18350081,18415617,18481153,18546689,18612225,18874369,19070977,19267585,19333121,19464193,19529729,19660801,19726337,19791873,19857409,19922945,20185089,20250625,20381697,20447234,20512769,20840449,21168129,21430273,21561345,22347777,22609921,22937601,23134209,23265281,23330818,23855105,24051713,24182785,24248322,24510465,25690113,25755649,26148865,26804225,26869761,27394050,28114945,28508161,28573697,28770306,30212098,31588354,31981570,33554433,33685505,34734082,35323905,35782657,36044801,37552129,37945346,38207489,38862849,39256065,39452674,41222145,41418754,41615362,41877506,42401793,42991618,43253762,43384834],"runtime":[3080193,3211265,3276801,3342338,4653058,5832705,6946817,8060929,8323073,9043969,9437185,10878978,11337730,14155778,14811137,14942210,16449537,17432577,17498115,17694721,17760257,17825793,18087937,18022403,18219009,18612227,18743297,18939909,19136513,19202049,19333121,19398657,19464193,19595265,19988481,20054017,20119553,20316161,20512769,20643841,20774914,20905985,21233666,21626882,21954562,22413313,22872066,22937603,23396353,23789569,25231364,25821186,26214412,28114946,31260673,31588353,35323905,35717121,35979266,36700162,36896770,37289985,37421059,38010881,38273025,39911425,40566785,40763393,41156609,42139664,42467329,42729473,42991619],"restrictions":[28770305,30212097,31588353,31981569,32636930,34734081,41418753,41615361,41877505,42991617,43384833],"requested":[3997698,4259842,13828098,14024706,14417921,14680065,16842754,17301505,17563649,18153473,18284546,19070977,19267586,19791874,20250625,20840450,21168129,25755650,31064065],"reclaim":[13434881,18939905,20971521],"running":[327684,2031620,5308417,5439489,5636097,5898241,10485761,10747905,11272193,11468801,22740994,26542082,32899076,35323905,37027841,38731777,39059457,39518212,39714820],"read":[851971,2097153,2228227,7012355,10158081,10289157,11141121,11206658,13107201,14811137,27262977,28704769,30605313,30932993,35192833,38797313,40173571,40239105,40435715,40501249,42336257,42532865],"represents":[393217,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3997697,4259842,4325377,4653057,4718593,4915201,4980737,5046273,5505025,5570561,5701633,8257537,10485761,10747905,11272193,11403266,11468801,14221313,15007746,16515074,22347777,23068685,23134210,23986179,25231367,26345476,28246017,29687809,29949953,32178177,32964609,33947649,34603009,36044801,37748737,38797313,39649281,39845890,39911425,40108034,40173569,40239105,40304642,40435715,40697858,40763394,40828929,40894465,40960001,41025537,41091074,41156609,41222145,41287681,41353218,41418753,41549826,41615362,41746434,41811969,41877505,41943042,42008577,42139650,42205186,42270722,42336257,42467330,42532865,42663937,42729474,42795009,42926081,42991618,43057153,43122689,43188225,43253762,43384834],"resumed":[36896769,37421057],"restricted":[35323905,39452673],"refers":[6225921,6422529,7274497],"relevant":[5111809],"returning":[3014657,3407873,6356993,41025537,42926081],"rely":[37027841],"rejected":[34144257,35520513,40501249,40828929,41811969],"release":[13434881,14286850,18939905,20709378,20971521,23003138,40566785,43188225],"relies":[29753345],"representation":[2424834,4325377,4653057,4718593,5505025,5701633,14221313,15728642,16646145,19726337,20381697,23068673,23855105,28246017,29949953,38797313,41091074,41418753,41615361,41877505,42467329,42729473,42991617,43384833],"resourc":[41680899],"relative":[33161218,35651586,39124993,39780354],"removal":[6488065],"recursion":[36896769,37421057],"reason":[30081025,34471937,40304641],"rootnode":[28835841,38535173,41091073],"randomt":[8060930],"requests":[3997697,4259841],"remainder":[24248321],"referenced":[3014657,5111809,42926081],"references":[13434881,18939905,20971521],"representing":[6684673,6750209],"remain":[36962305,37683201],"removing":[34668545,38273025],"restore":[34865153],"retrieval":[9699329,17039361],"range":[4915201,5570561,6422529,6553601],"reference":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997698,4063233,4128769,4194305,4259842,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553602,6619137,6684673,6750209,6815745,6881281,6946817,7012356,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221314,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770306,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212098,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588354,31653889,31719425,31784961,31850497,31916033,31981570,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734082,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158915,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287682,41353217,41418754,41484289,41549825,41615362,41680897,41746433,41811969,41877506,41943041,42008577,42074113,42139649,42205185,42270723,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991618,43057153,43122689,43188225,43253761,43319297,43384834],"require":[14811138],"replaced":[983041,1048577,1441793,40173569,40435713],"regardless":[9895937,36962306,37683201],"removes":[851971,1507331,2228227,3014659,3211266,3407875,6815745,7340033,8192001,10158081,10944513,13107201,13959169,14221313,15466497,16318465,25624578,26017794,40173571,40435715,40763394,41025539,42532867,42926083],"retrievable":[36962305,37683201],"recently":[17629185,21561345],"remarks":[393217,3932161,3997697,4063233,4259841,4521985,4849665,4915201,5177345,5242881,5570561,5832705,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7995393,8060929,8192001,8323073,8388609,8585217,8650753,8781825,9043969,9109505,9175041,9240577,9371649,9437185,9633793,9699329,9895937,10158081,11141121,11206657,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13369345,13434881,13500417,13565953,13631489,13697025,13828097,13893633,13959169,14024705,14221314,14286849,14417921,14483457,14680065,14745601,14811138,14876673,15138817,15728641,15859713,16187393,16449537,16515073,16646145,16777217,16908289,17235969,17170433,17301505,17367041,17498113,17629185,17891329,17956865,18022401,18284545,18350081,18415617,18481153,18546689,18612225,18808833,18939905,19005441,19070977,19333121,19464193,19726337,19791873,19857409,19922945,20250625,20316161,20381697,20447233,20512769,20643841,20709377,20774914,20840449,20905985,20971521,21168129,21233666,21299201,21364737,21430273,21561345,21626882,21692417,21954562,22020097,22413313,22478849,22609921,22872066,22937601,23003137,23134209,23265281,23330817,23396353,23461889,23527425,23789569,23855105,24248321,24510465,24903681,25690113,25755649,25821186,25952257,26148865,26804225,27394049,28508161,28573697,29753345,29818881,31457281,32571393,32636929,33161217,33226753,33423361,33685505,34144257,34603009,34668545,34865153,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35651585,35717121,35782657,35848193,35913729,35979265,36175873,36241409,36634625,36700161,36831233,36896769,36962305,37027841,37093377,37158913,37421057,37486593,37552129,37683201,37748737,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38666241,38731777,38993921,39059457,39190529,39780353,39845889,40108033,40239105,40435713,40828929,40960001,41025537,41287681,41811969,41877505,42008577,42270721,42532865,42991617,43057153,43253761]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_115.json b/docs/Reference/fti/FTI_115.json index 60f68ea63..ad6298f91 100644 --- a/docs/Reference/fti/FTI_115.json +++ b/docs/Reference/fti/FTI_115.json @@ -1 +1 @@ -{"smart":[42729473],"standards":[42729473],"scenarios":[35848193,39911425],"system":[851972,983041,3473409,3670020,3735553,3866628,3932162,4194306,4325380,4390916,4521985,4718596,4849667,5177345,5308418,5373953,5439489,5505026,5570568,5636097,5701633,5767170,5832706,5898246,5963780,6029318,6225921,6291457,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881283,7012355,7077890,7143430,7208963,7274498,7340037,7405571,7536643,7733251,7798785,7864323,7929857,7995395,8060929,8126467,8257538,8323073,8388610,8454145,8519683,8585221,8650754,8716291,8781825,8847361,8912899,8978435,9043972,9109505,9175041,9240577,9306118,9371650,9437188,9502721,9633794,9699329,9764866,9830402,9895937,9961474,10027010,10092547,10223619,10289154,10551297,10616834,10682372,10813443,10878979,10944514,11010050,11075587,11141123,11206658,11272195,11403266,11468801,11599873,11665409,11796482,11862017,11927554,11993090,12058625,12124161,12189698,12255234,12320769,12386305,12451841,12582913,12713985,12779521,12845057,12910596,12976131,13041668,13107201,13238275,13369347,13434881,13500417,13565959,13631490,13697027,13762562,13959169,14024708,14155777,14221314,14286850,14417923,14548993,14614530,14680067,14745603,14811138,14876673,14942210,15007746,15073281,15269889,15335426,15400962,15466497,15532033,15597570,15663105,15728641,15794178,15859714,15925250,15990787,16056321,16187393,16318465,16384001,16515073,16580609,16646145,16711681,16777217,16908290,16973825,17039361,17104899,17170433,17367043,17498113,17629185,17760257,17825793,17891329,17956865,18022401,18087938,18153473,18219012,18350081,18415617,18546689,18612225,18743298,18808835,18874369,18939905,19005442,19136513,19070978,19202050,19267586,19333122,19398657,19529730,19595265,19660801,19857410,19922946,19988483,20054019,20119553,20185089,20250627,20316161,20381699,20447233,20512769,20578307,20643841,20709377,20774914,20971521,21102595,21364737,21495811,21561347,21626884,21692418,21823489,21889025,21954562,22020098,22216706,22347778,22413313,22478850,22806529,22872065,23003139,23134209,23199747,23265282,23330818,23789570,23920641,24117250,24510467,24707073,24772609,25100290,25493505,25559044,25821185,26279937,26476547,33554433,35127297,35913729,36044805,36569090,36634625,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39583745,39714818,39780353,39976961,40304644,40370177,40566785,40763394,40828929,40960002,41025537,41091076,41156609,41222145,41287682,41418754,41549825,41615361,41680897,41811969,41877505,41943042,42008578,42139649,42336257,42401793,42532865,42663937,42926081,43122689],"speed":[12451841,18415617,19398657,24772609],"scriptexception":[29425665,29556737,30408705,31129607,32309253,32964615,40304641,41091073,42467329],"sbyte":[4128769,4784129,10092550,37486593,41680897,42926081],"state":[393217,524289,11534337,17235969,25165825,40304641,41091073],"scriptengine":[1638402,2752514,3801091,4456498,4587566,4653102,5177350,5242886,5701633,7602226,9699334,10420229,10813442,10878978,11010050,11141122,11206658,11272194,11403266,11468802,11534338,11665410,11862022,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12451842,12713986,12779522,12976130,13041666,13107202,13238274,13303810,13369346,13434882,13500418,13565954,13631494,13697026,13959170,14024706,14090242,14221314,14286850,14548994,14614530,14680066,14745602,14811138,14942210,15269890,15400962,15466498,15728642,15794178,15859714,15990786,16384010,16777218,16842754,22609922,23461890,23527426,23592962,24248324,24313858,24379394,24444929,24641538,25034753,25231364,25296898,25886722,25952258,26542081,27131918,27787279,27983887,28114946,28508163,29622274,29884430,30343170,30801923,30867458,30998530,31457284,31850498,31916034,32768002,32833538,33816578,33882118,34013186,34209794,35586050,35717122,36241410,36438018,37027842,37093384,38404105,39583746,40042497,40828989,41812029,41877506,41943041,42139718,42532934],"shared":[655361,5177345,5242881,5439489,6160385,8781825,9699329,9895937,11862017,29753345,30146561,30736385,31653889,32178177,37093377],"scheme":[7143425],"serializeobjectstate":[393217,524289,40304641,41091073],"similar":[6356993,6488065,10944513,12386305,13434881,19726337,20447233,20512769,20709377,35717121,41484289],"starttimestamp":[28311553,38797317,39976961],"summarizes":[13565953],"statement":[9306113,13434881,13500417,14548993,14680065,15466497,15728641,15859713,16777217,20447233,20512769,20709378],"setproperty":[2424834,4128770,4784130,6815750,7733254,15925254,19202054,22544387,24051715,41680898,41943042,42926082],"simpler":[32178177],"segment":[36634625],"searched":[4915201],"successfully":[3932161,4194305,9306113,12845057,15073281,15532033,16187393,16580609,17825793,18022401,20316161,22413313],"statements":[12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217,20709377],"shallow":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"strictly":[36438017,41222145],"schedule":[42270721],"server":[3801096,4456456,4587528,4653064,4849665,5308417,7602184,10813442,10878978,11141122,11272194,12976130,13238274,13369346,13697026,22609924,23527428,38404104,40828936,41811976,42139656,42532872],"sourceinfo":[3932165,4194310],"search":[65537,27852801,28049409,29097985,36044801],"source":[1769473,1835009,4063233,5373953,9437190,10682374,11796481,14417926,15335425,24444930,26607617,26673153,27656193,29556737,30408705,37748738,39256066,39321601,40108033,40304641,41091073,42729473],"specifies":[4849665,5308417,6291457,24444935,26673153,35651585,36634629,37945345,38076417,38797313,38928388,38993921,39714817,40042497,40501250,40763393,40960001,41287681,41418753,41484291,41746435,42008577,42270727,42729482,43057157],"specifier":[3932165,4194310,13107205,13959173,14548997,15269893,15466501,16711685,16777221,17104901,17367045,17760261,17891333,18612229,18743301,18939909,19005445,19070981,19333125,19660805,20381701,20578309,21561349,22347781,22478853,24510469],"setpropertynocheck":[2031617,2162689,9502721,10289157,38731777,41549825],"specified":[327681,458753,720897,786433,851972,917506,1245186,1310722,1376258,1441794,1572866,1638404,1703938,1769473,1835010,1900546,1966082,2031618,2097153,2228228,2162694,2293761,2359297,2424834,2490369,2555905,2621441,2752514,2818049,2883585,2949121,3014657,3145730,3211265,3276801,3342337,3407873,3473409,3670019,3735553,3801138,3866626,4128798,4325378,4390913,4456498,4521985,4587570,4653106,4718593,4784162,4849666,5046275,5177345,5242883,5373953,5505026,5570561,5636097,5701633,5767169,5832705,5898241,6094864,6160386,6225921,6291457,6356995,6422529,6488066,6750211,6815746,6881281,6946817,7012353,7077890,7143425,7208961,7274499,7340036,7405569,7536641,7602235,7733250,7864321,7995393,8060929,8126465,8257539,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9306113,9371649,9437185,9699329,9961473,10027009,10092545,10223617,10682369,10813442,10878979,10944515,11075585,11141123,11206658,11272194,11403265,11599874,11665409,11862017,11927553,11993090,12058625,12124162,12189697,12255234,12320770,12386307,12582913,12779521,12910593,12976130,13041665,13107201,13238275,13369346,13434881,13500418,13565955,13631489,13697027,13762561,13893633,13959170,14024706,14155777,14221314,14286849,14417921,14548993,14614531,14680067,14745601,14811137,14876673,14942209,15204353,15269890,15466498,15597569,15663105,15728642,15859715,15990786,16056321,16252929,16318465,16580609,16646145,16777218,16973825,17104897,17170433,17301505,17432577,17498113,17629185,17825793,17891329,17956865,18153473,18284545,18546689,18612225,18743297,18939905,18874369,19070977,19136513,19267585,19529729,19595265,19660801,19791873,19857409,19922945,20119553,20185089,20381697,20447233,20512769,20578305,20643841,20709378,20840449,20971521,21102593,21168130,21561345,21626883,21757953,21823489,21889025,21954561,22085633,22282241,22347777,22478849,22609936,22675458,22740993,22806529,22872065,23003137,23134209,23199745,23330817,23461890,23527440,23592961,23724036,23789569,23920641,23986177,24117249,24182786,24248321,24313857,24576001,24641538,24838145,24903682,25034753,25100289,25231361,25296897,25362443,25493505,25624577,25755652,25886722,25952264,26017794,26148866,26214405,26345474,26476545,26542083,27000837,27066375,27525121,28246017,28377090,28442625,28639233,28835843,29032449,29229057,29294598,29425666,29556737,30408705,30998530,31129601,31457281,31588353,32243713,32309249,32374790,32899074,32964609,33488901,34340865,34406411,34471937,35127297,35454977,35848193,35913729,36044804,36175874,36569089,36765697,37486596,37617665,37748737,38076417,38273025,38404147,38731784,38928385,39256066,39583746,39714818,39780353,39911425,39976961,40108035,40304644,40566785,40763395,40828983,40960002,41025537,41091076,41156609,41222145,41287682,41353217,41418761,41549826,41615361,41680930,41812023,41877508,41943042,42008579,42074116,42139718,42270722,42336257,42401819,42467330,42532915,42598402,42663937,42729475,42795010,42926110,42991618],"samples":[27787266,28311553,31522818,34865153,35192838,35520513,38338561,39059457,39976961,42139650,42401794],"securely":[31588353,32243713],"stringdictt":[6029314,6750210],"scriptengineexception":[524291,2293763,10027015,10158082,10616834,10747911,11796487,12582919,24444929,29491202,29556739,30670850,31784962,32899082,32964610,37289986,40304655],"simultaneously":[15532033,16580609,17825793,20316161],"selector":[5570562,7340034],"scriptmemberflags":[5701633,13893638,14155782,16252934,16646150,24444929,27066372,31850497,32112647,35717121,41418756,41484293],"scriptinterruptedexception":[393219,3211267,13762567,13828098,14483463,15007746,15335431,16318471,24444929,26017802,30408707,31129602,34930690,35979266,37158914,38010882,41091087],"standard":[4849665,5308417,11927553,11993089,12189697,12255233,12976129,13238273,13369345,13697025,21954561,22020097,23003137,23199745,25100289,26476545,31588353,31653894,32243713,35389442,40370178],"synchronously":[42532865],"script":[1048577,1179650,1507329,1638406,1769473,1835009,2424840,2752518,2818049,3407874,3801133,4063233,4128773,4390913,4456495,4587567,4653103,4784132,5177348,5242885,5373954,5439490,5570561,5636097,5767169,5832709,5898246,6029313,6094866,6160387,6291457,6422529,6553601,6619137,6684673,6815745,6881282,7012354,7077889,7208962,7274498,7340037,7405570,7536642,7602235,7667713,7733249,7798785,7864321,7929857,7995394,8126466,8257538,8519682,8585221,8781825,8912898,8978434,9175041,9306117,9699331,9895937,10092546,10223618,10289153,10354689,10420228,10813443,10878979,10944513,11010051,11141123,11206659,11272195,11403268,11468804,11534341,11665413,11862019,11927555,11993091,12058628,12124166,12189699,12255235,12320774,12386305,12713985,12779525,12976131,13041668,13107204,13238275,13303813,13369347,13434883,13500421,13565968,13631489,13697027,13893634,13959171,14024708,14090242,14155779,14221315,14286851,14548995,14614535,14680072,14745604,14811139,14876673,14942217,15073281,15204354,15269891,15466498,15597569,15663107,15728645,15794180,15859718,15925249,15990788,16056325,16187393,16252932,16384001,16515076,16646149,16711683,16777218,16842753,16908289,16973831,17104899,17170433,17367044,17432578,17760259,17825793,17891330,17956867,18087937,18219014,18612226,18743298,18808837,18874375,18939906,19005443,19070978,19202049,19333123,19660802,19726343,19857415,19922946,19988484,20054021,20119554,20185092,20250629,20316161,20381699,20447235,20512771,20578307,20709379,20774916,20840450,20905987,20971522,21037057,21102598,21364737,21495813,21561347,21692421,21757959,21823490,21889026,22020098,22151173,22216708,22347778,22478850,22609928,22740994,22872066,22937602,23199746,23265284,23330821,23396360,23461890,23527432,23592964,23658498,23789573,23855106,24051714,24117250,24248325,24313858,24379394,24444951,24510468,24576002,24641537,24707075,24838145,25034755,25165829,25231362,25296900,25362444,25493506,25559045,25690113,25821185,25886721,25952264,26083329,26148873,26411009,26542083,26673155,26738690,26869766,26935297,27066376,27131918,27394053,27525122,27721730,27787278,27918338,27983887,28114946,28246017,28508173,28770305,28835849,29032450,29163521,29294595,29360130,29425667,29556739,29622274,29687814,29884430,30015489,30146565,30343170,30408707,30670849,30801921,30867459,30932994,30998534,31129601,31391747,31457285,31522818,31588353,31719425,31916033,31850498,32112641,32243713,32309249,32374787,32440321,32768001,32833544,32964609,33030146,33095685,33161217,33488902,33685505,33816577,33882113,34013188,34078722,34209797,34471937,34734081,34930689,35061761,35127297,35323906,35586052,35848195,36110338,36241413,36306953,36569089,36765697,36896769,36962305,37027842,37093379,37158913,37224449,37289985,37617665,37683201,37748738,37814273,37879809,38141953,38273025,38404157,38469633,38600713,38666241,38731777,38862849,38928386,38993923,39124994,39256065,39321602,39387137,39452673,39583750,39714817,39911427,40042499,40173569,40304645,40435713,40566788,40763395,40828989,40894465,40960003,41025542,41091076,41222145,41287683,41353218,41418764,41484289,41680902,41746437,41812029,41877511,41943054,42008579,42074116,42139736,42205186,42270725,42401812,42467332,42532932,42663938,42729478,42860546,42926088,43057157],"scriptobject":[2424835,13565953,15073282,15597570,15925250,16187394,16908290,17170434,18087938,19202050,24051714,24444929,27918338,29360130,30932994,33095683,33882114,35127298,36569090,37683202,38862850,41943047],"sole":[262145,655361,41222145],"scriptfunc":[5373957,5832710,5898245,7340037,8585221],"strongly":[4128781,4784141,5832705,6750209,6881282,7012354,7143427,7208962,7340033,7405570,7536642,7995394,8126466,8519682,8585217,8912898,8978434,10092546,10223618,41680909,42926093],"setelement":[4128769,4784129,7864325,41680897,42926081],"safety":[33816577],"specific":[5046274,5570561,6029314,6291457,11403265,11468801,12058625,13041665,13565954,14024705,14745601,15794177,15990785,25427969,29556737,30408705,33816577,37486593,39321601,40304641,41091073,42074114,42729473],"safely":[14090241,22937601,27721729],"setting":[2424833,3407874,15204354,15663106,16252930,16646146,17432578,24838145,26083329,26411009,26935297,27066372,27131905,27787265,27983873,28246017,28508161,29163521,29622273,29884417,30015489,31391745,31719425,31850497,34013185,36896769,37879809,38404097,40763394,40828929,40960001,41287681,41418757,41746436,41811969,41943041,42008578,42139649,42532865],"selecting":[8388609,8650753,9371649,9830401],"selects":[10878977,11141121,11206657,11403265,11993089,12058625,12255233,12779521,13238273,13697025,14024705,14221313,14942209,15990785,16973825,17498113,18022401,18153473,18284545,18546689,18874369,19136513,19267585,19529729,19791873,19857409,19922945,20119553,20643841,20840449,21757953,21823489,21954561,22020097,22085633,22282241,22413313,22740993,22872065,23003137,23199745,23920641,24117249,25100289,25493505,26476545,38993922],"start":[29687810,32440321,38469633,41025538],"sub":[3407873,3473409,3538945,3604481,3670017,3735553,3866625,3997697,4063233,4259841,4325377,4390913,4980737,5111809,7471105,8192001,8323073,8388609,8454145,8650753,8716289,8847361,9109505,9371649,9502721,9568257,9633793,9830401,9961473,10027009,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11534337,11665409,11796481,11927553,11993089,12058625,12189697,12255233,12451841,12517377,12582913,12713985,12779521,12976129,13041665,13172737,13238273,13369345,13500417,13631489,13697025,13762561,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14483457,14548993,14680065,14745601,14811137,14876673,14942209,15007745,15204353,15335425,15466497,15663105,15728641,15794177,15859713,15925249,15990785,16252929,16318465,16384001,16449537,16646145,16777217,16842753,17039361,17235969,17301505,17432577,17498113,17563649,17629185,17694721,18153473,18284545,18350081,18415617,18481153,18546689,19136513,19202049,19267585,19398657,19464193,19529729,19595265,19726337,19791873,19922945,20119553,20643841,20840449,20971521,21037057,21233665,21364737,21430273,21823489,21889025,21954561,22020097,22085633,22282241,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23658497,23920641,24117249,24576001,24772609,25100289,25165825,25493505,25821185,26279937,26476545,27721729,40632321],"sum":[5898243],"second":[7340033,8585217],"stripped":[8060929],"stripping":[30867457,34078721],"scripts":[25690113,30146561,33816577,34471937,35848193,36765697,37617665,39911425],"scriptid":[29687809,40435717,41025537],"sampl":[30474242,36831233,37945345,41615362],"sealedattribute":[38076417,39583745,39714817,40108033,40370177,40960001,41025537,41287681,41353217,41418753,41615361,41877505,42139649,42401793,43122689],"special":[38273025,41222145],"send":[196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"suppressextensionmethodenumeration":[27787265,36896773,42139649],"schema":[16121857,17039361],"semicolon":[13631489,23003137,23199745,26476545,27852801,28049410,32636929,36044802],"sensitive":[20709377],"store":[9043969,9437185,10682369,11075585,12910593,14417921],"sourcemapuri":[26607617,27656197,40108033],"sort":[65537],"soft":[27787265,31522817,35848193,39911425,42139649,42401793],"selectively":[31588353,32243713],"suppressinstancemethodenumeration":[27787265,36896769,37879813,42139649],"scripting":[4849666,5308418,36438017,39321601],"scriptmemberattribute":[1966083,13893639,14155783,14352391,14876679,15204359,15663111,16252935,16646151,24444929,27066386,31391747,32112642,33030146,40763393,40960001,41418775,42008577],"structures":[24444929,26673153],"serialization":[10616835,11796482,15007747,15335426],"short":[37486593],"serialized":[393218,524290,11796482,15335426,26017793,32899073,40304643,41091075],"stack":[1179649,3801089,4456449,4587521,4653057,7602177,13303811,22151171,26869763,27787265,29556737,30408705,31522817,34471940,34734081,36765700,38404097,40304641,40828929,41091073,41811969,42139650,42401793,42532865],"suppresses":[43057153],"structs":[13565953,40763393,40960001],"suppressfinalize":[16842753],"starting":[5046273,28311553,38797313,39976961,42074113],"sorry":[131073,29097985],"stacktrace":[29556737,30408705,40304641,41091073],"sets":[2031617,2162689,2424834,4128771,4784131,6815745,7733249,7864321,10289153,15925249,19202049,22544386,24051714,26607620,27131908,27590657,27656193,27787271,27852801,27983876,28049413,28442625,28508163,29556739,29622273,29884420,29949953,30408707,30539777,30932994,31260673,31391746,31522821,31588353,32112641,32243713,32505860,32636929,32768001,33030145,33095682,33423361,33554433,33947649,34471937,34668545,34865153,35127297,35520513,35848193,36044805,36241409,36569089,36765697,37814273,38076420,38338561,38404099,38731778,39059457,39518209,39845889,39911425,40108036,40239105,40304643,40697857,40828932,41091075,41418754,41549826,41680899,41811972,41943044,42074113,42139655,42401797,42532868,42926083],"single":[4128769,4784129,7208966,13434881,14942209,20447233,20512769,20709377,41680897,42926081],"specify":[2424841,33947649,39518209,40239105,40697857,41943049],"subclasses":[29622273],"stringdocument":[2097155,18350086,24444929,27459587,32571395,33619971,34603010,35913729,42336265],"servername":[4849671,5308423,10813445,10878981,11141125,11272197,12976133,13238277,13369349,13697029],"sealed":[9633793,9764865,11534337,11599873,12845057,17235969,29491201,30670849,31129601,31784961,32964609,33554434,34930689,34996225,35979265,36503553,37158913,37289985,38010881,38076418,39583745,39714818,40370177,40960002,41025538,41287682,41418754,41615362,41877505,42139650,42401794,43122689],"selected":[2162690,6225921,6946817,7274497,8257537,8388609,8650753,9371649,9830401,10944513,12320769,12386305,13500417,14942209,24903682,28377090,36634625,38731780,38928385,40501249,41484289,42270721,42729473,43057153],"serializableattribute":[40304644,41091076],"select":[5570561,7340033],"significant":[12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217,42270721],"settings":[3932166,4194311,24444929,27131905,27787265,27983873,28508161,29884417,31522817,32768001,38404097,39845889,40828929,41746433,41811969,42139649,42401793,42532865],"step":[9306113],"signature":[5898241],"sample":[2883587,6094849,7143425,7602177,17563649,18481153,26673154,28311553,30474243,35192839,36831234,37945346,39976961,40501249,41615368,42139649,42401793],"sourceindex":[9437189,10682373,14417925],"slower":[35848193,39911425],"systemexception":[40304641,41091073],"serves":[327681,458753,720897,851969,1769473,1835009,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39780353,39976961,40304641,40566785,40828929,41025537,41091073,41156609,41222145,41549825,41615361,41680897,41811969,41943041,42139649,42336257,42401793,42532865,42663937,42926081],"scriptusageattribute":[3145731,16449543,17432583,24444929,24838150,26411011,26935297,29622273,31391745,31719426,40763393,40960001,41287686,41418758,42008587],"syntactic":[12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217],"streamingcontext":[2293761,3211265,10616841,11796486,15007753,15335430,26017793,32899073,40304642,41091074],"site":[131073],"size":[3932161,4194305,27787266,28704774,30277634,31064066,31522818,31981570,32505860,32702466,33357829,33947649,34537474,34799617,34865154,35258374,35520514,35782657,35848196,36175874,36700161,37355521,37486594,38076420,38207489,39518209,39780357,39911428,40239105,40697857,42139650,42401794,42598402,42795010,42991618],"scriptable":[4718593,5963777,24444930,38731778,42074113],"struct":[4915201,6488065,24444929,39714823,40108034,40763396,40960004,41287684,41353218,42008580],"separate":[19922945,20119553,20840449,20971521,21823489,21889025,22740993,22872065,23658497,24117249,24576001,25493505],"strings":[5570561,7077889,7340034,8585217],"searchpath":[27852805,28049409,36044801],"stringt":[5570563,6029318,6750212,7077890,7340035,8585218,12386306],"syntax":[655361,983041,1114113,1179649,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4194305,4259841,4325377,4390913,4521985,4718593,4849665,4915201,4980737,5111809,5177346,5242882,5308417,5373953,5439490,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6160386,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781826,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699330,9764865,9830401,9895938,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862018,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942210,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23658497,23789569,23855105,23920641,24117249,24510465,24576001,24707073,24772609,25100289,25165825,25493505,25559041,25821185,26279937,26476545,26869761,27197441,27262977,27656193,27721729,27852801,28180481,28639233,28704769,28966913,29163521,29229057,29491201,29622273,29753345,29818881,30081025,30146561,30212097,30539777,30670849,30736385,30801921,30867457,31129601,31195137,31260673,31326209,31588353,31653889,31719425,31784961,31850497,31916033,32112641,32178177,32243713,32309249,32440321,32571393,32636929,32768001,32833537,32964609,33030145,33161217,33226753,33292289,33423361,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074114,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"set":[2424834,4128769,4784129,5898241,6815746,7143430,7733250,7864322,10289153,10944513,12386305,12713986,15925249,19202049,21364738,25821186,27656196,27852804,28049409,29622276,30539780,30801925,30867461,31260676,31588356,31850501,32112644,32178180,32243716,32636932,32768004,33030148,33423364,33554438,33751045,33816581,33947652,34013188,34078725,34209797,34471941,34668548,34865156,35127301,35520516,35586053,35717125,35848199,36044801,36241412,36438021,36569093,36765701,36896773,37814276,37879812,38338564,39059460,39518212,39649284,39845892,39911431,40239108,40435716,40697860,41680897,41943042,42270721,42926081],"stored":[6750209,18743297,19005441,19070977,19333121,20054017,20250625,20774913,22216705,22347777,22478849,23330817,23789569,42074113],"scriptaccess":[3407878,15204358,15663110,16252934,16646150,17432582,24444929,24838145,27066372,28246017,29163526,29622279,31719430,40763393,41418756,41746437,42008577],"smaller":[38993921],"specifying":[3932161,4194305,13107201,13959169,14548993,15269889,15466497,16711681,16777217,17104897,17367041,17760257,17891329,18612225,18743297,18939905,19005441,19070977,19333121,19660801,20381697,20578305,21561345,22347777,22478849,24510465,40632321],"subsequent":[2293761,3211265,3932161,4194305,10420225,40304641,41091073],"satisfy":[39714817],"structure":[786433,1048577,1114113,1179649,3014657,3473410,3735554,3932161,4194305,12124161,15728641,16056321,18350081,20185089,21102593,21168131,21495809,23330817,23789569,24444929,24969217,26607617,26673153,27459585,27656193,28639233,31195137,31260673,32243713,33423361,34340865,34603009,35913729,38535169,40108036,40632321,41353218,42336257],"serializationinfo":[2293762,3211266,10616842,11796486,15007754,15335430,26017793,32899073,40304643,41091075],"selectort":[5570562],"significantly":[35848193,39911425],"setvalue":[7340035,8585219,14942209],"safe":[42139649],"simulate":[34209793],"supports":[2424833,7667713,14942209,16973825,18874369,19857409,20709377,21757953,24444929,27131905,27983873,29884417,32833537,36306945,37814273,38600705,40828929,41418753,41811969,41943041,42532865],"subroutine":[42663937],"string":[327681,458753,720897,851976,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162694,2293761,2359297,2424836,2490369,2555905,2621441,2818049,2883585,2949121,3145729,3211265,3276801,3342337,3670022,3735558,3801156,3866637,3932166,4128775,4194311,4325389,4390925,4456516,4587589,4653125,4718598,4784140,4849674,5046282,5308426,5505025,5570574,5636102,5832706,5898243,5963782,6029322,6094875,6356993,6422534,6488065,6553606,6750210,6815750,6881281,7012353,7077890,7143426,7208961,7274497,7340036,7405569,7536641,7602268,7733254,7798790,7995393,8126465,8519681,8585218,8650758,8716300,8847366,8912897,8978433,9109510,9175045,9240581,9306115,9371654,9633798,9764870,9961478,10027014,10092545,10158088,10223617,10289157,10813453,10878989,10944513,11010055,11141133,11206663,11272205,11403271,11468801,11599878,11665415,11927565,11993101,12058625,12124168,12189709,12255245,12320776,12386306,12582918,12779527,12845062,12976147,13041683,13107209,13238291,13303816,13369363,13434894,13500422,13565966,13631500,13697043,13762566,13828104,13959177,14024723,14155782,14221319,14286855,14548999,14614542,14680076,14745613,14811143,14876678,14942214,15138824,15269897,15400965,15466503,15532038,15597574,15663110,15728646,15794183,15859724,15925254,15990797,16056326,16121861,16187398,16318470,16384014,16515078,16580614,16646150,16711687,16777223,17104903,17367047,17629190,17760263,17825798,17891335,17956870,18022405,18087941,18153478,18219022,18350086,18546694,18612231,18743303,18808839,18874374,18939911,19005447,19070983,19267590,19333127,19529734,19595270,19660807,19857414,19922950,19988487,20054030,20185094,20250638,20316166,20381703,20447246,20512782,20578311,20643846,20709390,20774919,20971526,21102599,21168129,21495815,21561351,21626887,21692428,21889030,21954572,22020120,22151177,22216711,22347783,22413317,22478855,22544386,22609936,22806534,22872070,23003154,23068674,23134214,23199762,23265292,23330823,23396354,23461890,23527440,23592966,23789575,23920646,24051713,24117254,24182787,24248326,24313858,24510471,24641539,24707078,24903682,25100300,25231363,25296902,25362438,25493510,25559054,25624578,25886723,25952268,26017794,26148876,26214407,26345475,26476562,26804226,26869770,27000839,27066372,27262984,27852807,27918337,28377090,28442629,28573698,28835852,29032453,29294601,29360129,29491207,29556737,29687809,30408705,30932993,31326214,31457286,31916038,32374793,32636935,32899074,33030151,33095681,33161222,33488899,33554438,33685510,34144262,34340871,34406406,34930695,34996231,35323911,35454978,35913729,35979271,36044808,36110343,36372486,36569095,37027846,37224455,37289991,37552134,37617665,37748737,38076417,38273025,38404167,38535173,38731784,38862854,39124999,39256065,39452678,39714817,39780353,39976961,40108033,40304644,40566785,40763393,40829004,40894470,40960001,41025538,41091076,41156609,41222145,41287681,41418757,41549837,41615361,41680908,41812044,41943047,42008577,42074139,42139746,42336257,42401825,42532937,42663937,42729473,42926087],"successful":[6488065],"started":[29425665,29556737,30408705,30670849,35061761,37158913,40304641,41091073,42467329],"support":[5636097,5767169,6422529,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7208961,7274497,7405569,7536641,7667713,7733249,7798785,7864321,7995393,8126465,8257538,8519681,8912897,8978433,10092545,10223617,13565953,24444929,34209793,38273025,39321601,42074113,42270721,42729473],"serialize":[2293761,3211265,10616833,15007745,40304641,41091073,42139649],"scriptname":[29687809,40894469,41025537],"stream":[24969217,27459585,28966919,32571400,35913729,42336257],"shares":[16973825,17956865,18874369,19857409,20905985,21757953],"supported":[13631490,23003138,23199746,25231361,26214401,26476546,27000833,28049409,29032449,32636929,36044801,38404097,40828929,41811969,42532865,43057154],"static":[655363,4128769,4784129,5177347,5242883,5439491,5570561,6029313,6160387,6225921,6291457,8060932,8781827,9699331,9895939,10944513,11403265,11468801,11862019,12058625,13041665,14024705,14745601,15794177,15990785,29753347,30146563,30736387,31653891,32178179,37093379,39583745,40370177,41680897,41877505,42926081,43122689]} \ No newline at end of file +{"selects":[11927553,12058625,12124161,12386305,12451841,12845057,12779521,12910593,12976129,13172737,13238273,13697025,14811137,16908289,17498113,17629185,17825793,18022401,18087937,18612225,18743297,19136513,19202049,19595265,19988481,20054017,20643841,20774913,21102593,21364737,21561345,21889025,21954561,22020097,22413313,22478849,22806529,22872065,22937601,23199745,23396353,23461889,23527425,23789569,24903681,25821185,40370178],"serves":[524289,655361,786433,851969,917505,1179649,1376257,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2752513,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40697857,40763393,41025537,41091073,41156609,41353217,41418753,41549825,41615361,41746433,41877505,41943041,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43253761,43384833],"sorry":[65537,31064065],"simulate":[37158913],"stored":[7012353,17301505,17367041,17956865,18415617,19791873,19857409,20250625,22609921,23265281,25755649,26148865,28573697,42532865],"start":[30081026,33423361,36241409,40304642],"subclasses":[34144257],"sample":[2359299,3342337,4653057,6160385,17760257,20119553,25231362,28835841,30736387,38993927,39321602,39780354,41091073,41353224,41484289,42139649,42991617],"statements":[13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329,24248321],"selector":[6291458,6422530],"starting":[1507329,28835841,35651585,41091073,42532865],"smaller":[40370177],"strictly":[32636929,42270721],"stringdocument":[2162691,15794182,23068673,30932995,33685507,34340866,35192835,38797313,42336265],"search":[458753,27328513,29622273,31064065,39845889],"stacktrace":[28246017,29949953,42467329,42729473],"signature":[6553601],"sbyte":[3014657,3407873,7471110,40239105,41025537,42926081],"size":[3997697,4259841,27131906,27197442,27918338,28966916,29491205,30277634,30998530,31260674,31588354,31653894,33292294,35586049,35913729,35979268,36438017,36569089,36634625,36700164,37224449,37486593,37814273,38076417,38141954,38666242,39583746,39911428,40239106,41156613,42139650,42795010,42860546,42991618,43122690],"suppressinstancemethodenumeration":[31588353,36962305,37683205,42991617],"sort":[458753],"standards":[42401793],"serialized":[1638402,4128770,11337730,14942210,25362433,27983873,42467331,42729475],"scriptmemberattribute":[2686979,15204359,15335431,15532039,15990791,16121863,16973831,23068673,23592967,24379399,24772626,28901379,35061762,35520514,37748737,40828929,42008577,43057175],"serialize":[3080193,3276801,10878977,14155777,42467329,42729473,42991617],"significant":[13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329,43188225],"selected":[851970,5832705,6946817,8060929,8323073,8847361,8978433,9043969,9306113,9437185,9568257,14745601,14811137,14876673,30343170,31850498,39124993,39452673,40435716,40566785,41484289,41680897,42401793,43188225],"serialization":[10878979,11337730,14155779,14942210],"schema":[15728641,16646145],"stack":[393217,4325377,4653057,4718593,5505025,5701633,19726339,20381699,23855107,28246017,29949953,31260673,31588353,34603009,36896772,37421060,41418753,41615361,41877505,42139649,42467329,42729473,42991618,43384833],"sealedattribute":[39518209,39714817,39911425,40042497,40304641,40632321,40828929,40894465,41287681,41353217,41811969,42074113,42139649,42991617,43057153],"streamingcontext":[3080193,3276801,10878985,11337734,14155785,14942214,25362433,27983873,42467330,42729474],"subroutine":[43253761],"slower":[35979265,36700161],"scriptengine":[327682,2031618,4325379,4653106,4718638,5308422,5439494,5505074,5701678,9109505,9699333,10485766,10747910,11665410,11730946,11796482,11927554,11993090,12058626,12124162,12189698,12255234,12386306,12451842,12582914,12648450,12713986,12845058,12779522,12910594,12976130,13041666,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762570,13828098,13893634,13959170,14024706,14221314,14286850,14352386,14417922,14483458,14548998,14680066,14745602,14811138,14876674,15138818,15859714,16187394,16908290,17235970,17891330,18808834,19005442,19726338,22740993,23068673,23920642,24313860,24444930,24576002,24969218,25165826,25427970,26083330,26279940,26411010,26476548,26542081,26607618,28639234,28770307,29884418,30015490,30212112,31588369,31981584,32571394,32636930,32899074,33226760,33357826,34078722,34144258,34668546,34734097,34865155,34996226,35323906,35389442,36044801,36175874,36306946,37027842,37158914,37945346,38469638,38731778,39059458,39518210,39714818,40763393,41418761,41615423,41877576,42991688,43384895],"starttimestamp":[28835841,35651589,41091073],"system":[917508,1441793,3604481,3866625,3932164,3997698,4063236,4259842,4521988,4784129,4849666,4915204,4980737,5177348,5242883,5308417,5570564,5636097,5963778,6029314,6094850,6160390,6225926,6291461,6356994,6422536,6553606,6619138,6684673,6750210,6815746,6881283,6946818,7012354,7077890,7143427,7208962,7274497,7340033,7405571,7471107,7536643,7602179,7667715,7733251,7798785,7929857,7995397,8060930,8126465,8192002,8257537,8323074,8388609,8454147,8519682,8585219,8650754,8716289,8781827,8847362,8978434,9043969,9109505,9175043,9240579,9306114,9371651,9437185,9568258,9633795,9764865,9895942,9961476,10092545,10158081,10223619,10289155,10420225,10485761,10616834,10682372,10747905,10813444,10878978,10944513,11141122,11206657,11272193,11337730,11468801,11534340,11599873,11665411,11730947,11796483,11927555,11993091,12058626,12124163,12189697,12255235,12320770,12386308,12451842,12517378,12582914,12648449,12713986,12845058,12779523,12910594,12976130,13041668,13172737,13238275,13303809,13369346,13500417,13631489,13697027,13762561,13828097,13893633,13959171,14024705,14155778,14221319,14286849,14352386,14417921,14483458,14548994,14614529,14680065,14745601,14811138,14876673,14942210,15073282,15138818,15400961,15466497,15597570,15794177,15859714,15925250,15990785,16056321,16187393,16318465,16384001,16449537,16580609,16646145,16711682,16777218,16842753,16908289,16973825,17039362,17104898,17170435,17235969,17301506,17367042,17563649,17629185,17694721,17891330,17956866,18022402,18087937,18153473,18284547,18350083,18415618,18481155,18546692,18612225,18677761,18743297,18874369,19005442,19070979,19136513,19202050,19267585,19333121,19398657,19464193,19529729,19791874,19857411,19922945,19988482,20054017,20185089,20250626,20709377,20840451,20905985,21168131,21364738,21430275,21495809,21561345,21626881,21823489,21954561,22085636,22020098,22413313,22478851,22544385,22609922,22806529,22872065,22937601,23003137,23199745,23265282,23330817,23396354,23461891,23527426,23592961,23789569,24182786,24248321,24379393,24510467,24903683,25100289,25690113,25755650,25821186,26148866,26804228,26869761,27394049,28508163,28573699,33554433,37748738,38797313,38862849,39124993,39256066,39518209,39714817,39845893,39911425,40042497,40108033,40173569,40304641,40435713,40697857,40763394,40828930,41025537,41091073,41156609,41287682,41353217,41418753,41549825,41615361,41746433,41811970,41877505,41943041,42008578,42074113,42139649,42205185,42270721,42336257,42467332,42729476,42926081,42991617,43057154,43253761,43384833],"strongly":[3014669,3407885,6094849,6160387,6291457,6881282,7012353,7143426,7405570,7471106,7536642,7602178,7667714,7733250,7995393,8585218,9240578,9371650,9633794,41025549,42926093],"strings":[6291458,6422529,6750209,7995393],"select":[6291457,6422529],"safe":[42991617],"site":[65537],"sum":[6553603],"step":[9895937],"sourceindex":[9961477,10223621,11534341],"stream":[27262977,30605319,30932993,35192840,38797313,42336257],"scriptinterruptedexception":[1638403,3080195,14090247,14155778,14614535,14942215,15007746,15073287,23068673,25362442,29949955,32768002,33095682,33488898,33947650,34537474,42729487],"subsequent":[3080193,3276801,3997697,4259841,9699329,42467329,42729473],"searched":[5111809],"setting":[3211265,3735554,15335426,15532034,15990786,16252930,21757953,24379394,24772612,25493505,28180481,28770305,28901377,29097985,29425665,30212097,30408705,31391745,31588353,31981569,34144257,34734081,34799617,35323905,36962305,37683201,37748738,38731777,40501252,40763393,40828929,41418753,41615361,41811969,41877505,42008578,42991617,43057157,43384833],"significantly":[35979265,36700161],"structure":[196609,262145,393217,1245185,2883585,3604482,3866626,3997697,4259841,13893633,15794177,16187393,16384001,17956865,18481153,19529729,22151171,23068673,24510465,25231361,26148865,27262977,28442625,30932993,32309249,34340865,34930689,35454977,36372481,37093377,37617665,38338561,38797313,40632324,40894466,40960001,41222145,42336257],"segment":[39124993],"syntactic":[13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329],"systemexception":[42467329,42729473],"statement":[9895937,13500417,13959169,14024705,14417921,14876673,16187393,17235969,17891329,23330817,24248322,27394049],"set":[3014657,3211266,3407873,6160390,6553601,7077890,8323073,8781826,9175042,9437185,11141121,14286850,15597569,16777217,20709378,23003138,27328513,29622276,29753348,29818884,30539780,30867460,31719429,32440324,32571396,32636933,33357828,33554438,34144260,34668549,34865157,34930692,35061764,35323909,35454980,35520516,35717124,35913732,35979271,36175876,36306948,36372484,36503556,36634628,36700167,36831236,36896773,36962309,37027845,37158917,37355524,37421061,37486596,37617668,37683204,37945349,38010884,38076420,38141956,38273029,38666244,38731780,38862853,38928388,39059461,39256069,39845889,40763394,41025537,42926081,43188225],"scripting":[4849666,5242882,32636929,39387137],"sourceinfo":[3997702,4259845],"shallow":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"synchronously":[41877505],"serializationinfo":[3080194,3276802,10878986,11337734,14155786,14942214,25362433,27983873,42467331,42729475],"sole":[131073,1114113,1310721,4194305,40108033,42270721],"scriptengineexception":[3276803,4128771,10354695,10878978,11337735,11403266,11599879,12320775,23068673,27983882,28246019,32178178,32702466,33030146,33816578,34406402,42467343],"sub":[3604481,3670017,3735553,3801089,3866625,3932161,4063233,4390913,4456449,4521985,4587521,5177345,5373953,5767169,7864321,7929857,8126465,8454145,8519681,8716289,8847361,8912897,8978433,9306113,9502721,9568257,9699329,9764865,10027009,10354689,10420225,10551297,10878977,11075585,11141121,11206657,11337729,11599873,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13697025,13762561,13959169,14024705,14090241,14155777,14286849,14417921,14483457,14548993,14614529,14811137,14876673,14942209,15073281,15204353,15269889,15335425,15532033,15597569,15663105,15794177,15859713,15990785,16056321,16121857,16187393,16252929,16646145,16777217,16908289,16973825,17432577,17694721,17760257,17825793,17891329,18087937,18219009,18677761,18743297,18808833,18939905,19005441,19136513,19202049,19398657,19595265,19988481,20054017,20119553,20316161,20578305,20643841,20709377,20774913,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21495809,21626881,21692417,21823489,21889025,21954561,22020097,22282241,22413313,22478849,22544385,22806529,22872065,23003137,23199745,23396353,23461889,23527425,23592961,23789569,24379393,24903681,25100289,25821185,25952257,40960001],"samples":[28835841,31260674,31588354,35717121,38010881,38141953,38666241,38993926,41091073,42139650,42991618],"special":[36175873,40108033,42270721],"source":[655361,786433,4587521,4980737,9961478,10223622,11337729,11534342,14942209,23068674,25231361,28246017,28442625,29949953,37617665,39387137,40632321,41746434,42205186,42401793,42467329,42729473],"specifying":[3997697,4259841,13500417,13631489,13828097,14024705,14417921,14680065,16580609,16842753,17301505,17367041,17563649,18153473,18284545,18350081,19070977,19267585,19791873,20185089,20250625,20840449,21168129,21430273,22609921,25755649,40960001],"smart":[42401793],"satisfy":[41287681],"settings":[3997703,4259846,23068673,28770305,30212097,31260673,31588353,31981569,34734081,36306945,36503553,40501249,41418753,41615361,41877505,42139649,42991617,43384833],"scriptobject":[3211267,14221313,15400962,15466498,15597570,15925250,16318466,16711682,16777218,17039362,23068673,24641538,24707074,25296898,25624578,29556739,33619970,34275330,38469634,38862850,39256066,40763399],"simultaneously":[16449537,19333121,19922945,25690113],"semicolon":[14548993,22478849,23461889,24903681,27328514,29622273,30867457,39845890],"standard":[4849665,5242881,11796481,11993089,12124161,12451841,12582913,12976129,13369345,13697025,21364737,22020097,22478849,23461889,23527425,24903681,27656194,29818881,32505862,35454977,40042498],"successful":[6356993],"setvalue":[6291459,7995395,14811137],"serializableattribute":[42467332,42729476],"string":[524289,655361,720897,786433,851974,917512,1179649,1376257,1507338,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2949121,3014668,3080193,3145729,3211268,3276801,3342363,3407879,3604486,3932166,3997703,4063245,4259846,4325444,4521997,4653148,4718661,4849674,4915206,5046273,5177357,5242890,5505092,5570566,5701701,5963777,6029313,6094850,6160386,6225930,6291460,6356993,6422542,6553603,6750210,6881281,7012354,7077894,7143425,7340038,7405569,7471105,7536641,7602177,7667713,7733249,7798790,7995394,8060929,8192006,8257541,8323073,8454156,8519686,8585217,8650758,8716294,8781830,9240577,9306118,9371649,9437186,9568262,9633793,9895939,10092550,10158085,10420230,10616838,10944518,11141125,11403272,11599878,11665421,11730957,11796499,11927565,11993107,12058631,12124179,12189697,12255245,12320774,12386323,12451853,12517382,12582925,12648455,12713991,12845063,12779533,12910599,12976141,13041683,13172743,13238285,13369357,13500423,13631497,13697043,13762574,13828105,13893640,13959180,14024711,14221326,14352389,14417927,14483463,14549004,14614534,14680073,14745608,14811142,14876678,15007752,15073286,15138830,15728645,15794182,15859719,15990790,16187398,16318470,16384006,16449542,16515080,16580615,16711685,16777222,16842759,16908289,16973830,17039366,17104908,17170439,17235982,17301511,17367047,17563655,17629189,17694726,17891340,17956871,18022406,18087942,18153479,18284551,18350087,18415623,18481159,18546702,18874374,19005447,19070983,19136518,19202054,19267591,19333126,19398662,19464198,19529734,19726344,19791879,19857422,19922950,19988486,20185095,20250631,20381705,20447234,20840455,20905990,21168135,21364748,21430279,21561349,21626886,21823494,22020108,22085639,22151169,22216707,22413318,22478866,22544390,22609927,22675458,22806534,22872070,22937606,23134216,23199750,23265287,23330830,23396358,23461906,23527448,23592966,23855114,23920642,24117250,24182796,24248334,24313859,24379398,24444934,24510471,24576006,24641537,24707073,24772612,24838146,24903698,24969228,25296897,25362434,25427971,25624577,25690118,25755655,25821190,25886732,26017794,26083330,26148871,26214406,26279942,26411011,26476550,26673154,26738690,26804238,26869766,27394062,27459590,27525129,27983874,28049420,28246017,28311555,28377095,28508167,28573710,28639248,28704773,29229063,29294601,29556737,29622279,29884432,29949953,30081025,30343170,30670854,30801925,30867463,31129603,31195142,31850498,32702471,32768007,33488903,33554438,33751046,33816583,33882118,34013190,34078726,34209799,34275334,34471943,34996230,35520519,35782663,36110342,37093383,37289990,37552135,37748737,37879814,38207495,38797313,39256071,39845896,39911425,40108033,40173581,40304642,40435720,40632321,40697857,40763399,40828929,41025543,41091073,41156609,41222149,41287681,41353217,41418823,41549825,41615436,41746433,41811969,41877577,41943041,42008577,42139681,42205185,42270721,42336257,42401793,42467332,42532891,42729476,42926092,42991714,43057157,43253761,43384908],"scriptmemberflags":[9109505,15532038,15990790,16121862,16973830,23068673,24772612,35061767,35323905,37945345,39452677,43057156],"structs":[14221313,37748737,40828929],"scriptexception":[28246017,29687809,29949953,31326213,33030151,34537479,42467329,42663937,42729473],"schedule":[43188225],"safely":[13565953,21299201,21692417],"safety":[37027841],"sets":[851969,2228225,3014659,3211266,3407875,7077889,8781825,9175041,11141121,15597569,16777217,24707074,25296898,26673154,27000833,27328517,27852801,28246019,28442628,28704769,28770308,28901378,28966916,29622273,29556738,29818881,29949955,30212101,30539777,30867457,31260677,31588360,31981573,32440321,32571393,33554433,34144257,34734085,34930689,35061761,35454977,35520513,35717121,35913729,35979265,36175873,36306945,36372481,36503553,36634625,36700161,36896769,37421057,37486593,37617665,38010881,38076417,38141953,38666241,38862849,38928385,39256065,39845893,39911428,40173570,40435714,40632324,40763396,41025539,41418756,41615365,41877509,42139653,42467331,42532865,42729475,42926083,42991624,43057154,43384837],"suppressfinalize":[18808833],"second":[6291457,7995393],"suppresses":[41680897],"setelement":[3014657,3407873,9175045,41025537,42926081],"soft":[31260673,31588353,35979265,36700161,42139649,42991617],"support":[6488065,6619137,6815745,6881281,6946818,7012353,7077889,7143425,7208961,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,8060929,8192001,8585217,8650753,8781825,9175041,9240577,9371649,9633793,14221313,23068673,36175873,37158913,39387137,40108033,42401793,42532865,43188225],"scenarios":[35979265,36700161],"stringdictt":[6225922,7012354],"scriptid":[30081025,37355525,40304641],"sealed":[10092545,10616833,10944513,12517377,13434881,18939905,31916033,32178177,32702465,32768001,33030145,33095681,33488897,33554434,33816577,33947649,34209793,34406401,34537473,39518209,39714817,39911426,40042497,40304642,40828930,41287682,41353218,41811970,42074113,42139650,42991618,43057154],"specifies":[4849665,5242881,7274497,23068679,25231361,33161217,35651585,36044801,37748737,39124997,39452675,39780353,39911425,40370177,40501251,40566788,40828929,41287681,41484290,41680901,41811969,42008577,42401802,43057153,43188231],"specifier":[3997702,4259845,13500421,13631493,13828101,14024709,14417925,14680069,16580613,16842757,17301509,17367045,17563653,18153477,18284549,18350085,19070981,19267589,19791877,20185093,20250629,20840453,21168133,21430277,22609925,25755653],"scriptusageattribute":[2818051,15269895,16252935,23068673,25493510,28901377,29097985,30408707,34144257,34799618,37748737,40828929,41811974,42008587,43057158],"specified":[262145,327684,524289,655361,720898,786434,851974,917508,1179649,1376257,1507331,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097156,2162689,2228226,2293761,2359297,2424833,2490369,2555905,2621441,2686978,2752513,2818050,2883585,2949122,3014690,3080193,3145729,3211266,3276801,3342352,3407902,3604481,3735553,3866625,3932163,4063234,4325426,4521986,4653115,4718642,4784129,4980737,5046273,5177345,5242882,5308417,5439491,5505074,5570561,5701682,5832705,5898242,5963778,6029315,6094849,6160385,6291460,6356994,6422529,6553601,6750210,6881281,6946819,7012355,7077890,7143425,7208961,7274497,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7995393,8060931,8323075,8388609,8454145,8519681,8585217,8650753,8716289,8781826,9043969,9109505,9175041,9240577,9306113,9371649,9437187,9568257,9633793,9895937,9961473,10092546,10223617,10289153,10420225,10485761,10682369,10747905,10813441,11534337,11599873,11665410,11730946,11796482,11927555,11993090,12058625,12124163,12255233,12320769,12386306,12451842,12582913,12648449,12713985,12845058,12779523,12910594,12976130,13041665,13172737,13238274,13369345,13500417,13631489,13697027,13828098,13893634,13959171,14024706,14221315,14417922,14483457,14548993,14614529,14680066,14745602,14811137,14876674,15073281,15138819,15335425,15400961,15532033,15990785,16121857,16187394,16252929,16384001,16842753,16908289,16973825,17039361,17235969,17301505,17498113,17563649,17694721,17825793,17891331,17956865,18022401,18087937,18153473,18219009,18284545,18481153,18612225,18743297,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19791873,19988481,20054017,20250625,20643841,20774913,20840449,20905985,21102593,21168129,21233665,21364737,21626881,21757953,21823489,21889025,21954561,22020097,22085635,22151170,22216706,22413313,22478849,22544385,22740993,22806529,22872065,22937601,23199745,23330817,23396353,23461889,23592961,23658497,23724034,23789569,23920641,24248322,24313857,24379393,24444929,24576001,24772615,24838145,24903681,24969224,25034756,25362434,25427970,25493505,25559041,25690113,25755649,25821185,25886723,26083330,26148865,26214411,26279937,26411010,26476545,26542083,26738689,26935300,27394049,27459595,27525126,27983874,28049410,28246017,28311557,28377093,28639248,28704769,29229061,29294598,29687810,29818881,29884432,29949953,30343170,30801921,31129602,31326209,31850498,32243713,32899074,33030145,34537473,35454977,35979265,36700161,36896769,37093377,37421057,37748739,38338561,38797313,38862849,39256065,39518212,39583746,39714818,39845892,39911425,40108033,40173570,40239108,40304641,40435720,40566785,40632323,40697857,40763394,40828930,40894465,41025566,41091073,41156609,41287682,41353217,41418803,41549825,41615415,41746433,41811970,41877555,41943041,42008579,42139675,42205186,42270721,42336257,42401795,42467332,42532868,42663938,42729476,42795010,42860546,42926114,42991686,43057161,43122690,43188226,43253761,43384887],"short":[40239105],"serializeobjectstate":[1638401,4128769,42467329,42729473],"server":[4325384,4653064,4718600,4849665,5242881,5505032,5701640,11665410,11730946,11796482,11927554,11993090,12124162,12779522,13697026,28639236,29884420,41418760,41615368,41877512,42991624,43384840],"scripts":[27721729,30474241,35979265,36700161,36896769,37027841,37421057,40697857],"supported":[14548994,22478850,23461890,24313857,24903682,27328513,28377089,29229057,30801921,30867457,39845889,41418753,41615361,41680898,41877505,43384833],"speed":[13303809,16056321,18677761,25100289],"scriptname":[30081025,37879813,40304641],"setproperty":[3014658,3211266,3407874,7077894,8781830,15597574,16777222,24707075,26673155,40763394,41025538,42926082],"static":[1114115,1310723,3014657,3407873,5308419,5439491,5636099,5898243,6225921,6422529,7274497,8323073,8388612,9043969,10485763,10747907,11272195,11468803,12058625,12189697,12255233,12386305,13041665,13238273,16908289,19005441,28770305,29360131,29753347,30212097,30474243,31588353,31784963,31981569,32505859,33226755,33357825,34734081,39518209,39714817,40042497,41025537,41418753,41615361,41877505,42074113,42926081,42991617,43384833],"structures":[23068673,25231361],"single":[3014657,3407873,7536646,14811137,17235969,23330817,24248321,27394049,41025537,42926081],"scheme":[6160385],"supports":[3211265,6488065,14811137,17498113,18022401,18612225,22937601,23068673,24248321,30212097,31981569,34734081,35389441,35848193,38928385,39190529,40763393,41615361,41877505,43057153,43384833],"specify":[3211273,35913729,36634625,37486593,38076417,40763401],"state":[1638401,4128769,13434881,18939905,20971521,42467329,42729473],"searchpath":[27328513,29622277,39845889],"simpler":[29753345],"sourcemapuri":[28442625,37617669,40632321],"shared":[1114113,1310721,5308417,5439489,5636097,5898241,10485761,10747905,11272193,11468801,29360129,29753345,30474241,31784961,32505857,33226753],"suppressextensionmethodenumeration":[31588353,36962309,42991617],"selectort":[6422530],"stripping":[34668545,38273025],"selectively":[29818881,35454977],"send":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"selecting":[8847361,8978433,9306113,9568257],"similar":[6029313,6356993,8323073,9437185,17235969,23330817,24248321,25952257,27394049,37945345,39452673],"summarizes":[14221313],"scriptaccess":[3735558,15335430,15532038,15990790,16252934,21757953,23068673,24379398,24772612,25493505,29425670,34144263,34799622,37748737,40501253,42008577,43057156],"successfully":[3997697,4259841,9895937,10944513,15466497,16318465,16449537,17629185,19333121,19922945,21561345,25690113],"struct":[5111809,6356993,23068673,37748740,40632322,40828932,40894466,41287687,41811972,42008580],"store":[9961473,10223617,10289153,10682369,10813441,11534337],"scriptable":[4915201,5570561,23068674,40435714,42532865],"shares":[17498113,18022401,18612225,19464193,20512769,22937601],"stringt":[6225926,6291459,6422531,6750210,7012356,7995394,9437186],"scriptfunc":[4980741,6094854,6291461,6553605,7995397],"specific":[1507330,6225922,6422529,7274497,12058625,12189697,12255233,12386305,13041665,13238273,14221314,16908289,19005441,23986177,28246017,29949953,37027841,39387137,40239105,42401793,42467329,42532866,42729473],"separate":[20316161,20643841,20774913,20905985,21233665,21626881,21954561,22413313,22872065,23396353,23789569,25821185],"script":[196609,327686,393218,589825,655361,786433,2031622,2621441,3014660,3211272,3342354,3407877,3735554,4325421,4587521,4653115,4718639,4980738,5177345,5308420,5439493,5505071,5636098,5701679,5898243,6094853,6225921,6291461,6488065,6422529,6553606,6619137,6684673,6750209,6815745,6881282,6946818,7077889,7143426,7208961,7274497,7340033,7405570,7471106,7602178,7536642,7667714,7733250,7798785,7995397,8060930,8192001,8323073,8585218,8650753,8781825,9175041,9240578,9371650,9437185,9633794,9699332,9895941,10158081,10485763,10747907,11141121,11272193,11468801,11665411,11730947,11796483,11927555,11993091,12058628,12124163,12189700,12255236,12386308,12451843,12582915,12648453,12713987,12845059,12779523,12910595,12976131,13041668,13107201,13172741,13238276,13369347,13434885,13500419,13565954,13631492,13697027,13762561,13828099,13893638,13959177,14024706,14221329,14286849,14417922,14483459,14548993,14680067,14745606,14811145,14876677,15138823,15335426,15400961,15466497,15532036,15597569,15859715,15925249,15990789,16121858,16187397,16252930,16318465,16384005,16580611,16711681,16777217,16842754,16908292,16973827,17039361,17104901,17170437,17235971,17301506,17367043,17498119,17563650,17891334,17956869,18022407,18153474,18284547,18350084,18415620,18481158,18546694,18612231,18808833,18874372,19005444,19070979,19267586,19464195,19529732,19726341,19791874,19857413,19922945,20185091,20250626,20316162,20381701,20447240,20512771,20643842,20709377,20774914,20840451,20905986,20971525,21168131,21233666,21299202,21430276,21626882,21692418,21757953,21954562,22282241,22413314,22609923,22740995,22872066,22937607,23003137,23068695,23265284,23330819,23396354,23527426,23592961,23658498,23789570,23855110,23920642,24051714,24182788,24248323,24313858,24379395,24444932,24510469,24576004,24641538,24707074,24772616,24903682,24969224,25165826,25231363,25296898,25427969,25493505,25624578,25690113,25755650,25821186,25886729,25952263,26083330,26148869,26279941,26345477,26411009,26476549,26542083,26607618,26804229,26869763,27394051,27459596,27525123,27721729,28049417,28180481,28246019,28311558,28508164,28573701,28639240,28770318,28901379,29032449,29097985,29294595,29425665,29556741,29687811,29818881,29884424,29949955,30015490,30081030,30146562,30212111,30408705,30474245,30670849,30801922,31260674,31326209,31391745,31588367,31981583,32112641,32571397,32702465,32768001,32899078,33030145,33095681,33226755,33357825,33423361,33619969,34013185,34078722,34144258,34275329,34406401,34471937,34537473,34603009,34668547,34734096,34799617,34865153,34996225,35061761,35323906,35389448,35454977,35520514,35782658,35848201,35979267,36044803,36110337,36175874,36241409,36306945,36700163,36765697,36896769,36962305,37027841,37158917,37355521,37421057,37552130,37683201,37748739,37879809,38207490,38273026,38404097,38469633,38600705,38731780,38862849,38928385,39059460,39190537,39256065,39387138,39452673,39518215,39649281,39714822,39976961,40108033,40304646,40370179,40501253,40435713,40566786,40697857,40763406,40828931,40894466,41025544,41287681,41418814,41615422,41680901,41746434,41811971,41877573,41943044,42008579,42139668,42205185,42270721,42401798,42467333,42532868,42598402,42663940,42729476,42926086,42991705,43057164,43188229,43253762,43319298,43384894],"setpropertynocheck":[851969,2228225,11141125,11206657,40173569,40435713],"sampl":[30736386,39321601,39780353,41353218],"sensitive":[24248321],"servername":[4849671,5242887,11665413,11730949,11796485,11927557,11993093,12124165,12779525,13697029],"securely":[29818881,35454977],"syntax":[393217,1114113,1245185,1310721,1441793,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4259841,4390913,4456449,4521985,4587521,4784129,4849665,4915201,4980737,5111809,5177345,5242881,5308418,5373953,5439490,5570561,5636098,5767169,5832705,5898242,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485762,10551297,10616833,10682369,10747906,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272194,11337729,11403265,11468802,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811138,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21823489,21889025,21954561,22020097,22282241,22347777,22413313,22478849,22544385,22609921,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23789569,23855105,24051713,24182785,24248321,24379393,24510465,24903681,25100289,25690113,25755649,25821185,25952257,26148865,26804225,26869761,27394049,28114945,28508161,28573697,29360129,29425665,29622273,29753345,29818881,30474241,30539777,30605313,30670849,30867457,31195137,31326209,31457281,31522817,31653889,31719425,31784961,31916033,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532866,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"stripped":[8388609],"started":[28246017,29687809,29949953,32112641,33095681,34406401,42467329,42663937,42729473]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_116.json b/docs/Reference/fti/FTI_116.json index 73133c517..df518a0a1 100644 --- a/docs/Reference/fti/FTI_116.json +++ b/docs/Reference/fti/FTI_116.json @@ -1 +1 @@ -{"total":[33357827,35782657,36700161,37355521,39780355],"toint32":[4128769,4784129,7995398,41680897,42926081],"typed":[2228227,4128781,4784141,5832705,6750209,6881282,7012354,7143427,7208962,7340033,7405570,7536642,7995394,8126466,8519682,8585217,8912898,8978434,10092546,10223618,11075586,12648450,14417922,25427970,29818881,32702465,34537473,36175874,37486600,41680909,42926093],"types":[2162692,4718598,4784130,5570562,5832705,5963781,6029314,6225922,6291458,6881281,6946817,7012353,7143425,7208961,7405569,7536641,7995393,8126465,8257538,8323074,8388611,8519681,8650755,8847362,8912897,8978433,9109506,9306113,9371651,9830403,10092545,10223617,10551298,10944514,11403266,11468802,12058626,12124161,12320769,13041666,13107201,13565958,13959169,14024706,14614529,14745602,14942209,15269889,15794178,15990786,23068674,23396353,24444931,24903684,25427969,26673153,27131905,27394049,27787265,27983873,28377092,28508161,29622273,29884417,31850498,36438020,38404097,38731787,39321604,39714817,40828929,41287681,41680899,41811969,42008577,42139649,42532865,42729473],"throws":[5505025,7143425,9306113,10944513,12386305,29556737,30408705,36241409,40304641,41091073],"try":[131073,327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,4128769,4784129,6094849,9306113,29097985,35913729,36044801,37617665,37748737,38076417,38273025,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41943041,42008577,42336257,42401793,42663937,42926081],"target":[2293761,3211265,5242885,5636101,5767173,6160389,6422533,6553605,6619141,6684677,6815749,7733253,7798789,7864325,10616833,11010053,11665413,12779525,13893633,14155778,14876673,14942213,15007745,15204353,15663106,16252930,16646147,17432577,24444932,26411009,26935297,31391747,31719425,32112641,33030146,39714817,40304641,41091073,41287682,41418756,42008578],"tostatictype":[4128769,4784129,8060933,41680897,42926081],"toint16":[4128769,4784129,7012358,41680897,42926081],"termination":[34471937,35848194,36765697,39911426],"throw":[3801089,4456449,4587521,4653057,7602177,14090241,22937601,27721729,35848193,38404097,39911425,40828929,41811969,42139649,42532865],"trace":[13303809,22151169,26869761],"tvalue":[5046276,9633794,9764866,11599873,12845057,28442626,33554433,34996225,36503553,42074118],"tobyte":[4128769,4784129,8912902,41680897,42926081],"typeid":[26083329,26411009,26935297,30015489,30605313,31391745,39714817,40763393,40960001,41287681,41418753,42008577],"table":[13565953,14942209,28901377,32178179,37486593,42729475,43122689],"tresult":[2752518,9895949,11862029,30998534,39583750],"trygetvalue":[2031617,2162689,5046273,6750209,9764871,38731777,41549825,42074113],"tosbyte":[4128769,4784129,10092550,41680897,42926081],"targetsite":[29556737,30408705,40304641,41091073],"typo":[29097985],"tas":[3932161,8781825,9699329,9895938,11862018],"trysetmember":[2424833,41943041],"todecimal":[4128769,4784129,6881286,41680897,42926081],"todouble":[4128769,4784129,8126470,41680897,42926081],"timespan":[34865159,35520519,39714817],"task":[2752520,3932166,8781838,9699342,9895950,11862030,30998536,39583752],"third":[7340033,8585217],"temporary":[39387137],"tochar":[4128769,4784129,10223622,41680897,42926081],"times":[1179649,10420225,19988481,20185089,20250625,21495809,22216705,23265281,23789569,24707073,25559041,26673153,34734081,40566785],"typelibenums":[4784129,4915205,41680897],"timestamp":[28311554,30474242,35651586,37945351,38797314,39976962,41615362,42270721,42729473],"trydeleteindex":[2424833,41943041],"touppercase":[7340033],"threw":[9306113],"tryfunc":[9306120],"true":[5701633,6225921,6356993,6553601,6684673,6946818,7798785,9175041,9306114,9502721,9764865,11599873,12451841,12713986,12845057,13565953,14680065,15073281,15532033,16187393,16580609,16908289,17104897,17367041,17825793,18219009,18415617,18808833,19398657,19988481,20316161,20381697,20578305,21102593,21364738,21495809,21561345,23855105,24510465,24772609,25559041,25821186,26279937,30801921,30867457,31850498,33816577,34078721,34209793,35586049,35717121,36438017,36896770,37879809,40042497],"threading":[8781825,9699329,9895937,11862017],"tree":[26673153,28311553,30474241,33226753,36831233,39976961,41025537,41615361],"title":[65537],"tosingle":[4128769,4784129,7208966,41680897,42926081],"toarray":[2228225,4718593,5570561,5898241,5963777,7340033,12648453,37486593],"tryunaryoperation":[2424833,41943041],"tryconvert":[2424833,41943041],"time":[27787266,28639233,31522818,31588353,32243713,34340865,34865153,35520513,38338561,39059457,42139650,42401794,42729473],"tib":[33947649,39518209,40239105,40697857],"tojson":[2359297,16121861,39976961],"type":[196609,262145,327682,393217,458754,524289,589825,655361,720898,786435,851970,917506,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441794,1507329,1572865,1638408,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2228225,2162709,2293762,2359298,2424836,2490370,2555906,2621442,2686977,2818050,2883586,2949122,3014659,3080193,3145730,3211266,3276802,3342338,3407874,3473409,3670018,3735553,3801122,3866628,3932166,4128794,4194310,4325379,4390914,4456482,4521993,4587554,4653090,4718602,4784167,4849670,4915206,5046273,5177366,5242888,5308422,5373954,5439508,5505032,5570583,5636099,5701634,5767171,5832708,5898251,5963782,6029334,6094850,6160391,6225927,6291484,6357001,6422531,6488072,6553603,6619139,6684675,6750219,6815748,6881289,6946824,7012361,7077896,7143433,7208969,7274507,7340045,7405577,7536649,7602210,7667713,7733252,7798787,7864324,7929860,7995401,8060935,8126473,8192001,8257551,8323074,8388617,8454159,8519689,8585224,8650761,8716304,8781827,8847362,8912905,8978441,9043973,9109506,9175042,9240579,9306120,9371657,9437189,9502721,9633794,9699332,9764867,9830409,9895941,9961485,10027010,10092553,10158081,10223625,10289154,10420225,10551298,10616834,10682373,10813443,10878980,10944531,11010050,11075589,11141127,11206659,11272198,11337729,11403284,11468818,11599874,11665413,11730945,11796482,11862022,11927554,11993091,12058643,12124163,12189700,12255237,12320770,12386322,12451841,12582913,12648449,12713985,12779526,12845058,12910597,12976131,13041684,13107202,13238276,13303809,13369350,13434882,13500417,13565958,13631490,13697031,13762562,13828097,13893634,13959171,14024725,14155780,14221317,14286850,14417925,14548993,14614531,14680067,14745617,14811140,14876674,14942218,15007746,15073282,15138817,15204354,15269892,15335426,15400963,15466498,15532034,15597571,15663108,15728642,15794195,15859714,15925250,15990802,16056323,16121857,16187394,16252932,16318465,16384001,16515074,16580611,16646150,16711682,16777219,16908291,16973827,17039361,17104903,17170434,17301505,17367045,17432578,17498115,17629186,17760258,17825795,17891331,17956866,18022402,18087939,18153474,18219014,18284545,18350082,18415617,18546691,18612227,18677761,18743302,18808837,18874371,18939908,19005444,19136514,19070982,19202050,19267587,19333124,19398657,19529732,19595265,19660804,19726337,19791874,19857412,19922947,19988485,20054021,20119554,20185091,20250629,20316162,20381702,20447234,20512770,20578310,20643842,20709378,20774916,20840450,20905985,20971521,21102598,21299201,21364737,21495814,21561351,21692419,21757954,21823491,21889026,21954563,22020099,22085633,22151169,22216708,22282241,22347781,22413314,22478853,22675460,22740993,22806529,22872067,23003140,23068673,23134209,23199748,23265283,23330821,23396354,23461890,23527432,23724038,23789573,23855105,23920642,23986178,24117252,24182793,24444935,24510469,24576001,24707074,24772609,24903686,24969217,25034758,25100291,25493506,25559046,25690113,25755654,25821185,25952278,26083330,26279937,26345484,26411010,26476548,26542082,26607617,26738689,26869761,26935298,27131907,27197441,27262977,27328513,27459585,27525121,27590657,27656193,27787267,27852801,27983875,28049409,28180481,28311553,28377095,28442625,28508163,28639233,28704769,28770305,28901377,28966913,29163522,29229057,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884419,29949953,30015490,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30605313,30670849,30736385,30801923,30867457,31064065,31129601,31195137,31260673,31326209,31391748,31522817,31588353,31653889,31719426,31784961,31850498,31916033,31981569,32112642,32178177,32243713,32309249,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32964609,33030147,33095681,33161217,33226753,33292289,33357825,33423361,33554434,33619969,33685505,33751041,33816578,33882113,33947649,34013193,34078721,34144257,34209793,34275329,34340865,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127298,35192833,35258369,35323905,35389441,35520513,35586049,35651585,35717122,35782657,35848193,35913731,35979265,36044803,36110337,36175874,36241409,36306945,36372481,36438018,36503553,36569091,36634625,36700161,36765697,36831233,36896770,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486596,37552129,37617667,37683201,37748741,37814273,37879809,37945345,38010881,38076419,38141954,38207489,38273027,38338561,38404133,38469633,38535171,38600705,38666241,38731809,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256069,39387137,39452673,39518209,39583745,39649281,39714819,39780355,39845889,39911425,39976963,40042498,40108036,40173569,40239105,40304643,40370178,40435713,40501249,40566787,40632322,40697857,40763398,40828965,40894465,40960006,41025539,41091075,41156611,41222148,41287685,41353220,41418759,41484292,41549827,41615363,41680936,41746437,41812005,41877513,41943045,42008581,42074114,42139685,42205186,42270721,42336259,42401795,42467330,42532901,42598402,42663939,42729479,42795010,42860546,42926107,42991618,43057153,43122690],"top":[196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,5046273,6094849,7602177,21168129,21626881,22544385,22609921,22675457,23068673,23461889,23527425,23592961,23724033,23986177,24051713,24182785,24248321,24313857,24379393,24641537,24838145,24903681,24969217,25034753,25231361,25296897,25362433,25624577,25690113,25755649,25886721,25952257,26017793,26083329,26148865,26214401,26345473,26411009,26542081,26607617,26738689,26804225,26935297,27000833,27066369,27131905,27328513,27459585,27525121,27590657,27787265,27918337,27983873,28049409,28114945,28246017,28311553,28377089,28442625,28508161,28573697,28770305,28835841,28901377,29032449,29097985,29294593,29360129,29425665,29556737,29687809,29884417,29949953,30015489,30277633,30343169,30408705,30474241,30605313,30932993,30998529,31064065,31391745,31457281,31522817,31981569,32047105,32374785,32505857,32702465,32899073,33095681,33357825,33488897,34406401,34537473,34734081,35389441,35454977,35913731,36044803,36175874,36634625,37486594,37617666,37748737,38076419,38141953,38273025,38404099,38731780,39256065,39583745,39714819,39780354,39976962,40108035,40304644,40370177,40566786,40763395,40828931,40960003,41025538,41091076,41156611,41222146,41287683,41353218,41418755,41549828,41615362,41680898,41811971,41877505,41943042,42008579,42074114,42139651,42205185,42336259,42401795,42467329,42532867,42598402,42663937,42795010,42860546,42926082,42991618,43122689],"typeargs":[8716293,9961477,13041669,14024709,14745605,15990789],"trygetmember":[2424833,41943041],"torestrictedhostobject":[1638402,5242886,6160390,26542083,41877506],"trybinaryoperation":[2424833,41943041],"topic":[1,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"touint32":[4128769,4784129,8519686,41680897,42926081],"trycreateinstance":[2424833,41943041],"trailing":[30867457,34078721],"tohosttype":[1638402,5177350,5439494,25034755,41877506],"trygetindex":[2424833,41943041],"totalphysicalsize":[33357825,37355525,39780353],"tryinvokemember":[2424833,41943041],"trydeletemember":[2424833,41943041],"topromise":[2752516,8781830,9699334,9895942,11862022,30998533,39583748],"timestamps":[35651585,37945345,38797313],"tasks":[8781825,9699329,9895937,11862017],"totalheapsizeexecutable":[33357825,36700165,39780353],"treated":[34013185],"thread":[1638402,2752514,4456450,4587522,4653058,5439489,6160385,8781825,9895937,14090241,21037057,22937601,23855106,25034753,26542081,27721729,28508161,30998530,37093379,38404097,39583746,40828930,41811970,41877506,42139651,42532869],"tkey":[5046277,9633794,9764866,11599874,12845058,28442626,33554434,34996225,36503553,42074119],"typeof":[4128770,4784130,10944521,12386313,23724035,35586050,41680898,42926082],"typename":[4521985,4915201,5242881,5505025,5898241,6160385,6356993,6488065,6750209,6946817,7077889,7143425,7274497,7340033,8716293,9895937,9961477,11665409,11862017,12386305,12779521,13041669,14024709,14745605,15990789,37486593,37748737,39256065],"trycatch":[4128769,4784129,9306118,41680897,42926081],"tostring":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293762,2359297,2490370,2424833,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211266,3276801,3342338,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,9306113,10158087,13828103,15138822,20447233,20512769,27262982,35913729,36044801,37617665,37748737,38076417,38273026,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304642,40566785,40763393,40828929,40960001,41025537,41091074,41156609,41222146,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"trysetindex":[2424833,41943041],"toint64":[4128769,4784129,8978438,41680897,42926081],"test":[5701634,6225921,6356994],"text":[2359297,13303809,17039362,22151169,24444929,26869761,39976961,42336257],"textwriter":[17039365],"thrown":[9306113,10027009,13762561,24444930,29229057,29425667,29556738,30408706,30670849,31129601,32309249,32964609,35061761,37158913,40304643,41091075,42467331],"tunneling":[27131905,27787265,27983873,28508161,29884417,34209793,38404097,40828929,41811969,42139649,42532865],"touint64":[4128769,4784129,7536646,41680897,42926081],"typ":[5570561,6029313,6291457,11403265,11468801,12058625,13041665,14024705,14745601,15794177,15990785,34013185],"tcp":[16973826,17498113,18874369,19136513,19267585,19529729,19857410,19922945,20119553,21757953,21823489,24117249],"token":[30408705,41091073],"totalheapsize":[33357825,35782661,39780353],"terminates":[35848193,36241409,39911425],"touint16":[4128769,4784129,7405574,41680897,42926081],"tryinvoke":[2424833,41943041]} \ No newline at end of file +{"target":[3080193,3276801,5439493,5898245,6619141,6815749,7077893,7208965,7340037,7798789,8192005,8650757,8781829,9175045,10878977,12648453,13172741,14155777,14811141,15335425,15532034,15859717,15990787,16121857,16252929,16973826,23068676,23592961,24379394,28901379,29097985,30408705,34799617,35061761,35520514,41287681,41811970,42008578,42467329,42729473,43057156],"typename":[4784129,5111809,5439489,5832705,5898241,5963777,6029313,6160385,6291457,6356993,6553601,6750209,7012353,8060929,8454149,8519685,9437185,10747905,11468801,12255237,12386309,12648449,13041669,13172737,13238277,40239105,41746433,42205185],"timestamp":[28835842,30736386,33161218,35651586,39780359,41091074,41353218,42401793,43188225],"toint32":[3014657,3407873,7602182,41025537,42926081],"tryunaryoperation":[3211265,40763393],"throws":[5963777,6160385,8323073,9437185,9895937,28246017,29949953,32571393,42467329,42729473],"times":[393217,9699329,19529729,23265281,24182785,24510465,25231361,26148865,26804225,26869761,28508161,28573697,34603009,41943041],"typeid":[27590657,28180481,28901377,29097985,30408705,31391745,37748737,40828929,41287681,41811969,42008577,43057153],"tree":[25231361,28835841,30736385,38535169,39321601,40304641,41091073,41353217],"totalphysicalsize":[29491201,35586053,41156609],"tcp":[17498113,18022402,18612226,18743297,19202049,19988481,20054017,21954561,22937601,23396353,23789569,25821185],"totalheapsizeexecutable":[29491201,37814277,41156609],"text":[2424833,16646146,19726337,20381697,23068673,23855105,41091073,42336257],"tunneling":[28770305,30212097,31588353,31981569,34734081,37158913,41418753,41615361,41877505,42991617,43384833],"typed":[2097155,3014669,3407885,6094849,6160387,6291457,6881282,7012353,7143426,7405570,7471106,7536642,7602178,7667714,7733250,7995393,8585218,9240578,9371650,9633794,10223618,10289154,11010050,23986178,27131905,27918337,32374785,39583746,40239112,41025549,42926093],"types":[851972,3014658,4915205,5570566,5832705,6094849,6160385,6225922,6422530,6881281,6946818,7143425,7274498,7405569,7471105,7602177,7536641,7667713,7733249,7929858,8323074,8585217,8716290,8847363,8978435,9043970,9240577,9306115,9371649,9568259,9633793,9764866,9895937,10420226,12058626,12189698,12255234,12386306,13041666,13238274,13631489,13828097,13893633,14221318,14680065,14745601,14811137,15138817,16908290,19005442,20447233,22675458,23068675,23986177,25231361,26345473,28770306,30212098,30343172,31588354,31850500,31981570,32636932,33357825,34144257,34734082,35323906,39387140,40435723,41287681,41418754,41615362,41811969,41877506,42008577,42401793,42926083,42991618,43384834],"tohosttype":[327682,5308422,5636102,22740995,39518210],"toarray":[2097153,4915201,5570561,6291457,6422529,6553601,11010053,40239105],"tvalue":[1507332,10092545,10616834,10944513,12517378,28704770,31916033,33554433,34209793,42532870],"textwriter":[16646149],"tosbyte":[3014657,3407873,7471110,41025537,42926081],"treated":[38731777],"trace":[19726337,20381697,23855105],"todecimal":[3014657,3407873,6881286,41025537,42926081],"trydeletemember":[3211265,40763393],"tostring":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490370,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080194,3145729,3211265,3276802,3342337,3407873,4325377,4653057,4718593,5046274,5505025,5701633,9895937,11403271,15007751,16515078,23134214,23330817,27394049,37748737,38797313,39845889,39911425,40108034,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270722,42336257,42467330,42729474,42926081,42991617,43057153,43253761,43384833],"threw":[9895937],"tobyte":[3014657,3407873,9633798,41025537,42926081],"typeof":[3014658,3407874,8323081,9437193,26935299,39059458,41025538,42926082],"thread":[327682,2031618,4718594,5505026,5636097,5701634,5898241,11272193,11468801,13565953,21299201,21692417,22282241,22740993,24051714,26542081,28770305,32899074,33226755,39518210,39714818,41418753,41615362,41877509,42991619,43384834],"true":[5832706,6029313,6815745,7340033,8192001,9043969,9109505,9895938,10092545,10158081,10616833,10944513,11206657,13303809,13959169,14221313,14286850,15466497,15925249,16056321,16318465,16449537,17170433,18284545,18350081,18481153,18546689,18677761,19070977,19333121,19922945,20709378,20840449,21168129,21430273,21495809,23003138,24051713,24510465,25100289,25690113,26804225,28508161,32636929,34668545,34865153,35323906,36044801,36962306,37027841,37158913,37683201,37945345,38273025,39059457],"targetsite":[28246017,29949953,42467329,42729473],"tostatictype":[3014657,3407873,8388613,41025537,42926081],"threading":[10485761,10747905,11272193,11468801],"totalheapsize":[29491201,37224453,41156609],"touint16":[3014657,3407873,7667718,41025537,42926081],"tas":[4259841,10485761,10747906,11272193,11468802],"todouble":[3014657,3407873,7405574,41025537,42926081],"tryinvoke":[3211265,40763393],"topromise":[2031620,10485766,10747910,11272198,11468806,32899077,39714820],"timespan":[38141959,38666247,41287681],"tojson":[2424833,15728645,41091073],"typo":[31064065],"trygetmember":[3211265,40763393],"token":[29949953,42729473],"total":[29491203,35586049,37224449,37814273,41156611],"task":[2031624,4259846,10485774,10747918,11272206,11468814,32899080,39714824],"trybinaryoperation":[3211265,40763393],"tasks":[10485761,10747905,11272193,11468801],"toint16":[3014657,3407873,9240582,41025537,42926081],"termination":[35979266,36700162,36896769,37421057],"timestamps":[33161217,35651585,39780353],"typeargs":[8454149,8519685,12255237,12386309,13041669,13238277],"trysetindex":[3211265,40763393],"torestrictedhostobject":[327682,5439494,5898246,26542083,39518210],"touint32":[3014657,3407873,9371654,41025537,42926081],"trydeleteindex":[3211265,40763393],"title":[458753],"time":[29818881,31260674,31588354,35454977,35717121,37093377,38010881,38141953,38338561,38666241,42139650,42401793,42991618],"temporary":[39976961],"try":[65537,262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,5046273,9895937,31064065,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41549825,41746433,41811969,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,43057153,43253761],"top":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1179649,1376257,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,4128769,4194305,4325377,4653057,4718593,5046273,5505025,5701633,21757953,22085633,22151169,22216705,22675457,22740993,23658497,23724033,23920641,24117249,24313857,24444929,24576001,24641537,24707073,24772609,24838145,24969217,25034753,25165825,25296897,25362433,25427969,25493505,25559041,25624577,25886721,26017793,26083329,26214401,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28180481,28246017,28311553,28377089,28442625,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29491201,29556737,29687809,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30736385,30801921,30932993,30998529,31064065,31129601,31260673,31391745,31588353,31850497,31981569,32899073,34603009,34734081,37748739,38797315,39124993,39518209,39583746,39649281,39714817,39845891,39911427,40042497,40108034,40173572,40239106,40304642,40435716,40632323,40697858,40763394,40828931,40894466,41025538,41091074,41156610,41287683,41353218,41418755,41549827,41615363,41746433,41811971,41877507,41943042,42008579,42074113,42139651,42205185,42270722,42336259,42467332,42532866,42598401,42663937,42729476,42795010,42860546,42926082,42991619,43057155,43122690,43253761,43319298,43384835],"trailing":[34668545,38273025],"tosingle":[3014657,3407873,7536646,41025537,42926081],"tkey":[1507333,10092546,10616834,10944514,12517378,28704770,31916033,33554434,34209793,42532871],"table":[14221313,14811137,27787265,29753347,40239105,42074113,42401795],"typ":[6225921,6422529,7274497,12058625,12189697,12255233,12386305,13041665,13238273,16908289,19005441,38731777],"trycreateinstance":[3211265,40763393],"typelibenums":[3014657,5111813,42926081],"toint64":[3014657,3407873,7733254,41025537,42926081],"tresult":[2031622,10747917,11468813,32899078,39714822],"third":[6291457,7995393],"thrown":[9895937,12320769,15073281,23068674,28246018,29687811,29949954,31326209,32112641,32243713,33030145,33095681,34406401,34537473,42467331,42663939,42729475],"trycatch":[3014657,3407873,9895942,41025537,42926081],"touppercase":[6291457],"tib":[35913729,36634625,37486593,38076417],"trysetmember":[3211265,40763393],"tryfunc":[9895944],"trygetvalue":[851969,1507329,2228225,7012353,10616839,40173569,40435713,42532865],"tryconvert":[3211265,40763393],"trygetindex":[3211265,40763393],"topic":[1,131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"tochar":[3014657,3407873,7143430,41025537,42926081],"throw":[4325377,4653057,4718593,5505025,5701633,13565953,21299201,21692417,35979265,36700161,41418753,41615361,41877505,42991617,43384833],"type":[131073,196609,262147,327688,393217,524290,589825,655362,720898,786434,851989,917506,983041,1048577,1114113,1179650,1245185,1310721,1376258,1441793,1507329,1572866,1638401,1703937,1769473,1835009,1900545,1966082,2097153,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883587,2949122,3014695,3080194,3145730,3211268,3276802,3342338,3407898,3473409,3538945,3604481,3735554,3866625,3932162,3997702,4063235,4128769,4194305,4259846,4325410,4521988,4653090,4718626,4784137,4849670,4915206,4980738,5046274,5111818,5177346,5242886,5308438,5439496,5505058,5570570,5636116,5701666,5832712,5898247,5963784,6029321,6094852,6160393,6225942,6291469,6357000,6422551,6488065,6553611,6619139,6684676,6750216,6815747,6881289,6946831,7012363,7077892,7143433,7208963,7274524,7340035,7405577,7471113,7602185,7536649,7667721,7733257,7798787,7929858,7995400,8060939,8126479,8192003,8257539,8323091,8388615,8454160,8519693,8585225,8650755,8716290,8781828,8847369,8912897,8978441,9043975,9109506,9175044,9240585,9306121,9371657,9437202,9568265,9633801,9699329,9764866,9830401,9895944,9961477,10092546,10158082,10223621,10289157,10420226,10485764,10616835,10682373,10747910,10813445,10878978,10944514,11010049,11141122,11206657,11272195,11337730,11403265,11468805,11534341,11599873,11665411,11730950,11796483,11862017,11927559,11993094,12058644,12124167,12189714,12255249,12320770,12386325,12451843,12517378,12582916,12648453,12713988,12845061,12779524,12910595,12976133,13041684,13172742,13238290,13303809,13369346,13500417,13631490,13697028,13762561,13828100,13893635,13959171,14024707,14155778,14221318,14286849,14352387,14417922,14483458,14548994,14614529,14680067,14745602,14811146,14876673,14942210,15007745,15073282,15138819,15335426,15400962,15466498,15532036,15597570,15728641,15794178,15859714,15925251,15990790,16056321,16121858,16187394,16252930,16318466,16384003,16449538,16515073,16580610,16646145,16711683,16777218,16842756,16908307,16973828,17039363,17104899,17170437,17235970,17301509,17367044,17498114,17563651,17629186,17694721,17825794,17891330,17956869,18022404,18087939,18153475,18219009,18284551,18350085,18415620,18481158,18546694,18612227,18677761,18743299,18874370,19005459,19070982,19136514,19202052,19267588,19333123,19398658,19464194,19529731,19595265,19660801,19726337,19791878,19857413,19922946,19988483,20054018,20185090,20250629,20381697,20447234,20512769,20643841,20709377,20774914,20840455,20905985,21102593,21168134,21233665,21364739,21430277,21495809,21561346,21626882,21823489,21889025,21954563,22020099,22216713,22347777,22413314,22478852,22544385,22609924,22740998,22675457,22806530,22872067,22937603,23003137,23068679,23134209,23199746,23265284,23330818,23396355,23461892,23527427,23592962,23658497,23724036,23789570,23855105,24051713,24182787,24248322,24379396,24510470,24903684,24969238,25034758,25100289,25559042,25690115,25755654,25821188,25952257,26083330,26148869,26542082,26804230,26869762,26935302,27000833,27131905,27197441,27262977,27328513,27394050,27590657,27656193,27721729,27787265,27852801,27918337,28114945,28180482,28246017,28442625,28508165,28573701,28704769,28770307,28835841,28901380,28966913,29032449,29097986,29163521,29360129,29425666,29491201,29556737,29622273,29687809,29753345,29818881,29884424,29949953,30081025,30146561,30212099,30277633,30343174,30408706,30474241,30539777,30605313,30670849,30736385,30867457,30932993,30998529,31129612,31195137,31260673,31326209,31391746,31457281,31522817,31588355,31653889,31719425,31784961,31850503,31916033,31981571,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636930,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554434,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734083,34799618,34865155,34930689,34996225,35061762,35127297,35192833,35258369,35323906,35389441,35454977,35520515,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044802,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962306,37027842,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748742,37814273,37879809,37945346,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731785,38797315,38862850,38928385,38993921,39059457,39124993,39190529,39256067,39321601,39452676,39518217,39583746,39649282,39714817,39780353,39845891,39911427,39976961,40042498,40108035,40173571,40239108,40304643,40370177,40435745,40501253,40566785,40632324,40697859,40763397,40828934,40894468,40960002,41025563,41091075,41156611,41222147,41287683,41353219,41418789,41484289,41549827,41615397,41680897,41746437,41811973,41877541,41943043,42008581,42074114,42139651,42205189,42270724,42336259,42401799,42467331,42532866,42598402,42663938,42729475,42795010,42860546,42926120,42991653,43057159,43122690,43188225,43253763,43319298,43384869],"terminates":[32571393,35979265,36700161],"test":[6029314,9043969,9109506],"tryinvokemember":[3211265,40763393],"touint64":[3014657,3407873,8585222,41025537,42926081]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_117.json b/docs/Reference/fti/FTI_117.json index 481fff5b5..a9ad508d4 100644 --- a/docs/Reference/fti/FTI_117.json +++ b/docs/Reference/fti/FTI_117.json @@ -1 +1 @@ -{"usedheapsize":[33357825,38207493,39780353],"underlying":[3080193,27197442,31064066,31981570,32702466,33292289,34275329,34537474,36175874,37486594,38141953,42139649,42795010,42991618],"useful":[5832705,6750209,6881281,7012353,7208961,7340033,7405569,7536641,7995393,8126465,8519681,8585217,8912897,8978433,10092545,10223617,33816577,36438017],"usable":[18743297,19005441,19070977,19333121,20054017,20250625,20774913,22216705,22347777,22478849,23330817,23789569],"uri":[3473421,3932162,4194306,7143430,21168130,26607619,27656200,28639245,40108037],"url":[29097985,29687809,40894465,41025537],"utf8":[33619969],"uint64":[1179650,4128769,4784129,7536646,9043976,9437192,10682376,11075592,12910600,14417928,28704770,29818882,34275330,34734082,34799618,35258370,35651586,35782658,36700162,37355522,37945346,38207490,38797314,39649282,41680897,42926081],"unchecked":[34471937,36765697],"uint8clampedarray":[37486593],"uint32":[4128769,4784129,8519686,38338562,39059458,41680897,42926081],"utility":[24444930,41680897,42926081],"unary":[2424833,41943041],"uses":[4718593,4849665,5308417,5570561,5963777,6029313,9306113,11468801,12058625,42139649,42729473],"using":[3670017,3866625,4325377,4390913,6750209,7143425,7274497,11534337,17235969,25165825,42074113],"urit":[7143426],"unspecified":[13565953,35651585,37945345,38797313],"usage":[5177345,5242881,5439489,6094849,6160385,7602177,8781825,9699329,9895937,11862017,18677762,21299202,26673153,28901377,32178177,34471939,35848193,36765699,39780353,39911425,42139649,42401793,43122689],"unlimited":[3932161,4194305],"ushort":[37486593],"unlike":[42139649],"usually":[6619137,6815745,7733249,7864321],"universal":[42270721],"undefined":[2490371,13565955,15138820,15400961,24444930,38273033,41222145],"utc":[42270722],"uriformat":[7143425],"used":[2424833,2818049,3801090,4128774,4456450,4587522,4653058,4784134,5177345,5242881,6094849,6225922,6946818,7274498,7602178,8060929,8257538,9699329,10944514,11534337,11665409,11862017,12386306,12713985,12779521,13565953,13631489,14614529,14680065,15859713,16384001,17235969,17629185,17956865,18153473,18219009,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20054017,20250625,20643841,20971521,21364737,21692417,21889025,21954561,22020097,22675458,22806529,22872065,23003137,23134209,23199745,23265281,23724034,23920641,24117249,24379394,25100289,25165825,25493505,25559041,25755650,25821185,26476545,27131905,27787265,27983873,28114946,28508161,29884417,30343170,31588354,32243713,33357825,36241409,38207489,38404099,39780353,40566785,40828931,41680902,41811971,41943041,42139651,42401793,42532867,42926086],"unless":[16842753],"unique":[26083329,26411009,26935297,30015489,30605313,31391745,39649281,39714817,40763393,40960001,41287681,41418753,42008577],"unit":[3538948,3604481,3670017,3866625,3997697,4063234,4259841,4325377,4390913,4980737,5111809,6946817,7471105,7667713,8192001,8323073,8388609,8454145,8650753,8716289,9109505,9568257,9633794,9961473,10158082,10289153,10354690,10420225,10485761,10616834,10747905,10813441,10878977,11010049,11141121,11206657,11272193,11337729,11403265,11468801,11534340,11665409,11730945,11927553,11993089,12058625,12189697,12255233,12386305,12451841,12517377,12648449,12713985,12779521,12976129,13041665,13172737,13238273,13303809,13369345,13500417,13697025,13828098,14024705,14090242,14221313,14286849,14352385,14483457,14548993,14680065,14745601,14811137,14942209,15007746,15138818,15466497,15728641,15794177,15859713,15925249,15990785,16121857,16449537,16777217,16842756,17039361,17235972,17563650,17694721,18415617,18481154,18677761,19202049,19398658,19464193,19726337,20905985,21037058,21233665,21299201,21364738,21430273,22151170,22937604,23658497,23855105,24772610,25165826,25821186,26279937,26869762,27197441,27262978,27721732,40042497,40632321],"uint8array":[37486593],"unconditionally":[35848193,39911425],"unrecoverable":[34471937,35848193,36765697,39911425],"ulong":[1179650,9043976,9437192,10682376,11075592,12910600,14417928,28704770,29818882,34275330,34734082,34799618,35258370,35651586,35782658,36700162,37355522,37945346,38207490,38797314,39649282],"uint":[37486593,38338561,39059457],"unmanaged":[3080193,3801090,4456450,4587522,4653058,7602178,12713987,16842753,21364739,24379393,25821187,27197442,28114945,30343169,38141953,38404098,40828930,41811970,42139650,42532866],"usereflectionbindfallback":[27131905,27787265,27983873,28508161,29884417,33816581,38404097,40828929,41811969,42139649,42532865],"unusable":[11534337,17235969,25165825],"uinteger":[38338561,39059457],"unescaped":[7143425],"urls":[27852801,28049409,36044801],"user":[12320769,13500417,13565954,13631489,14614530,14680066,15859714,16384001,17629185,17956865,18153473,18219009,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20054017,20250625,20643841,20971521,21692417,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23265281,23920641,24117249,25100289,25493505,25559041,26476545,27394049,29556737,30408705,40304641,41091073,42860545],"uint16":[4128769,4784129,7405574,41680897,42926081],"uricomponents":[7143425],"unsigned":[1179649,9043973,9437189,10682373,11075588,11337729,11730945,12910597,14417924,17104897,17367041,18219009,18743297,18808833,19005441,19070977,19333121,19988481,20054017,20250625,20381697,20578305,20774913,21102593,21495809,21561345,22216705,22347777,22478849,23330817,23789569,24510465,25559041,28704770,29818882,34275330,34734082,34799618,35258370,35651586,35782658,36700162,37355522,37945346,38207490,38338563,38797314,39059459,39649283],"uriformatt":[7143426],"unknown":[30081025,38273025],"uint16array":[37486593],"uricomponentst":[7143428],"uintptr":[34471943,35848199,36765703,39911431],"useassemblytable":[28901377,32178181,43122689],"uint32array":[37486593]} \ No newline at end of file +{"uint8clampedarray":[40239105],"universal":[43188225],"unique":[27590657,28180481,28901377,29097985,30408705,31391745,36831233,37748737,40828929,41287681,41811969,42008577,43057153],"unknown":[31457281,36175873,40108033],"usable":[17301505,17367041,17956865,18415617,19791873,19857409,20250625,22609921,23265281,25755649,26148865,28573697],"uint16array":[40239105],"unit":[3670020,3801089,3932161,4063233,4390913,4456449,4521985,4587522,5177345,5373953,5767169,5832705,6488065,7864321,7929857,8126465,8454145,8519681,8716289,8847361,8912897,9306113,9437185,9502721,9699329,9830401,10027009,10354689,10551297,10878978,11010049,11075585,11141121,11403266,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12517378,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107202,13172737,13238273,13303809,13369345,13434884,13500417,13565954,13697025,13959169,14024705,14090241,14155778,14286849,14417921,14483457,14811137,14876673,15007746,15204353,15269889,15597569,15663105,15728641,15859713,16056321,16187393,16515074,16646145,16777217,16908289,17432577,17760258,17891329,18677762,18808836,18939908,19005441,19660801,19726337,20119554,20316161,20381698,20512769,20578305,20709378,20971522,21037057,21299204,21495809,21692420,22282242,22347777,23003138,23134210,23855106,24051713,25100290,25952257,28114945,36044801,40960001],"usedheapsize":[29491201,36438021,41156609],"uint16":[3014657,3407873,7667718,41025537,42926081],"uintptr":[35979271,36700167,36896775,37421063],"unconditionally":[35979265,36700161],"undefinedimportvalue":[28770305,30212097,31588353,31981569,34734081,36175877,41418753,41615361,41877505,42991617,43384833],"unmanaged":[3538945,4325378,4653058,4718594,5505026,5701634,14286851,18808833,20709379,22347778,23003139,25165825,26607617,30015489,39649281,41418754,41615362,41877506,42991618,43384834],"unrecoverable":[35979265,36700161,36896769,37421057],"unchecked":[36896769,37421057],"uint32array":[40239105],"unsigned":[393217,9830401,9961477,10223620,10289156,10682373,10813445,11534341,11862017,17170433,17301505,17367041,17956865,18284545,18350081,18415617,18481153,18546689,19070977,19791873,19857409,20250625,20840449,21168129,21430273,22609921,23265281,24510465,25755649,26148865,26804225,28508161,28573697,31653890,32374786,32833538,33161218,33292290,34603010,35586050,35651586,35717123,36438018,36569090,36831235,37224450,37814274,38010883,39780354],"unary":[3211265,40763393],"uint":[35717121,38010881,40239105],"utf8":[33685505],"utility":[23068674,41025537,42926081],"url":[30081025,31064065,37879809,40304641],"usually":[6619137,7077889,8781825,9175041],"utc":[43188226],"unless":[18808833],"useful":[6094849,6291457,6881281,7012353,7143425,7405569,7471105,7536641,7602177,7667713,7733249,7995393,8585217,9240577,9371649,9633793,32636929,37027841],"uriformat":[6160385],"uint8array":[40239105],"used":[2621441,3014662,3211265,3342337,3407878,4325378,4653058,4718594,5308417,5439489,5505026,5701634,5832706,6946818,8060930,8323074,8388609,9043970,9437186,10485761,10747905,12648449,13172737,13434881,13762561,13959169,14221313,14286849,14548993,15138817,17104897,17694721,17891329,18022401,18087937,18546689,18939905,19136513,19202049,19398657,19464193,19857409,19988481,20709377,20905985,20971521,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22806529,22872065,22937601,23003137,23199745,23396353,23461889,23527425,23724034,24182785,24903681,25034754,25165826,25821185,26607618,26804225,26935298,28573697,28770305,29491201,29818882,30015490,30212097,31588353,31981569,32571393,34734081,35454977,36438017,40763393,41025542,41156609,41418755,41615363,41877507,41943041,42139649,42926086,42991619,43384835],"useassemblytable":[27787265,29753349,42074113],"ushort":[40239105],"uinteger":[35717121,38010881],"uricomponentst":[6160388],"uri":[3866637,3997698,4259842,6160390,22151170,28442627,37617672,38338573,40632325],"urls":[27328513,29622273,39845889],"uint32":[3014657,3407873,9371654,35717122,38010882,41025537,42926081],"uses":[4849665,4915201,5242881,5570561,6225921,6422529,9895937,12189697,16908289,42401793,42991617],"unspecified":[14221313,33161217,35651585,39780353],"usage":[3342337,4653057,5308417,5439489,5636097,5898241,10485761,10747905,11272193,11468801,19660802,25231361,27787265,28114946,29753345,35979265,36700161,36896771,37421059,41156609,42074113,42139649,42991617],"using":[3932161,4063233,4521985,5177345,6160385,7012353,8060929,13434881,18939905,20971521,42532865],"urit":[6160386],"underlying":[3538945,22347778,27131906,27197442,27918338,30998530,32047105,32833537,39583746,39649281,40239106,42860546,42991617,43122690],"uriformatt":[6160386],"user":[13762561,13959170,14221314,14548993,14745601,14876673,15138818,17104897,17694721,17891330,18022401,18087937,18546689,19136513,19202049,19398657,19464193,19857409,19988481,20905985,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23461889,23527425,24182785,24903681,25821185,26345473,26804225,28246017,28573697,29949953,42467329,42729473,43319297],"unescaped":[6160385],"uint64":[393218,3014657,3407873,8585222,9961480,10223624,10289160,10682376,10813448,11534344,31653890,32374786,32833538,33161218,33292290,34603010,35586050,35651586,36438018,36569090,36831234,37224450,37814274,39780354,41025537,42926081],"uricomponents":[6160385],"usereflectionbindfallback":[28770305,30212097,31588353,31981569,34734081,37027845,41418753,41615361,41877505,42991617,43384833],"undefined":[131076,1114120,2490371,14221315,14352385,16515076,23068674,28770305,30212097,31588353,31981569,34734081,36175874,40108042,41418753,41615361,41877505,42270721,42991617,43384833],"unlike":[42991617],"unusable":[13434881,18939905,20971521],"unlimited":[3997697,4259841],"ulong":[393218,9961480,10223624,10289160,10682376,10813448,11534344,31653890,32374786,32833538,33161218,33292290,34603010,35586050,35651586,36438018,36569090,36831234,37224450,37814274,39780354]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_118.json b/docs/Reference/fti/FTI_118.json index cfce5d475..8ea52ab48 100644 --- a/docs/Reference/fti/FTI_118.json +++ b/docs/Reference/fti/FTI_118.json @@ -1 +1 @@ -{"variabl":[5898241],"variant":[41222145,42729473],"vbscript":[20643841,21430273,21954562,22282241,23003138,23134209,27000838,27394050,39321601,41222145,41811975,42729474],"version":[655361,983041,1114113,1179649,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128774,4194305,4259841,4325377,4390913,4521985,4718593,4784134,4849665,4915201,4980737,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6160385,6225922,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946818,7012353,7077889,7143425,7208961,7274498,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257538,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944514,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386306,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138818,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447234,20512770,20578305,20643841,20709378,20774913,20840449,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22675458,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23658497,23724034,23789569,23855105,23920641,24117249,24444930,24510465,24576001,24707073,24772609,25100289,25165825,25493505,25559041,25755650,25821185,26279937,26476545,26869762,27197441,27262978,27656193,27721729,27852801,28180481,28639233,28704769,28966913,29163521,29229057,29491201,29622273,29753345,29818881,30081025,30146561,30212097,30539777,30670849,30736385,30801921,30867457,31129601,31195137,31260673,31326209,31588353,31653889,31719425,31784961,31850497,31916033,32112641,32178177,32243713,32309249,32440321,32571393,32636929,32768001,32833537,32964609,33030145,33161217,33226753,33292289,33423361,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418754,41484289,41549825,41615361,41680904,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926087,42991617,43057153,43122689],"valid":[14942209],"verifyaccess":[4456449,4587521,4653057,21037061,40828929,41811969,42532865],"v8runtimeheapinfo":[3276803,18677766,21299206,26673153,33357827,34799618,35782658,36700162,37355522,38207490,39780359],"variable":[4128769,4784129,6750217,27131905,27787265,27983873,28508161,29884417,34209793,38404097,40828929,41680897,41811969,42139649,42532865,42926081],"var":[4718594,4849666,5308418,5505026,5570566,5898246,5963778,6029318,6356993,6488066,6750213,6881283,7012355,7077890,7143430,7208963,7274499,7340036,7405571,7536643,7667713,7995395,8126467,8519683,8585220,8912899,8978435,9306115,10092547,10223619,10944514,12386306],"val":[655361,1114113,1179649],"vt_date":[42729473],"variables":[5898241,6750210,34209793],"v8cachekind":[6094860,7602188,17104902,17367046,18219015,18743302,18808839,19005446,19070982,19333126,19988487,20054023,20250631,20381702,20578310,20774919,21102599,21495815,21561350,22216711,22347782,22478854,23330823,23789575,24510470,25559047,26148870,26673153,28835846,29294598,32374790,38993925,42139660,42401804],"v8scriptengine":[7602179,16973829,17760258,17825794,17956869,18481154,18612226,18874373,19070978,19333122,19398658,19660802,19726338,19857413,19922950,19988483,20119558,20185090,20250627,20316162,20512771,20578306,20840454,20905989,20971526,21299202,21364738,21495811,21561346,21757957,21823494,21889030,22151170,22216707,22413314,22478850,22740998,22872070,22937602,23265282,23396354,23658502,23789571,24117254,24248322,24510466,24576006,24707074,25362446,25493510,25559043,26148866,26673153,27787267,29294594,30343170,31457282,34471938,35454978,35520514,36306946,36896770,37879810,38338562,38404097,39124995,39911426,42139668],"vt_cy":[42729473],"views":[25427969,42795009],"vbs":[36110337],"v8cpuprofileflags":[6094849,7602177,16580614,17825798,25624577,26673153,32440321,35454977,38469633,40501253,42139649,42401793],"versions":[36438017],"variants":[42729475],"v8cpuprofile":[1048578,1114114,1179650,2359299,2555906,2883586,3014658,16121858,17039362,18022405,22413317,26673156,28311555,29687810,30474242,32440322,33226760,33685506,34734082,35192840,35651586,36372482,36831240,37224450,37421064,37945346,38469634,38797314,39190536,39649282,39976967,40435714,40894466,41025539,41353218,41615363],"vbscriptengine":[4653059,20643846,20709379,21430278,21954566,22282246,23003142,23134214,27000840,27131907,27394049,36110339,41811981,42532865],"vbscrip":[13565953,35717121,41484289],"visual":[2424835,5177346,5242882,5439490,6160386,8781826,9699330,9895938,11862018,41943043],"v8runtimeconstraints":[2621443,17301510,17498118,17629190,17694726,18546694,19529734,19791878,20840454,21823494,21889030,22872070,24117254,24576006,25362438,26673153,32505859,33947650,34406406,35848193,38076425,39518210,39911425,40239106,40697858,42139654,42401798],"vie":[1245185,1376257,1572865,2228225,11337730,31064067,31981571,32702467,33292289,34275329,34537475,35258369,36175876,37486596,42795012,42991620],"v8scriptengineflags":[6094852,16973830,18874374,19857414,19922950,20119558,20840454,21757958,21823494,22740998,22872070,24117254,25362440,25493510,26673153,33488900,42139656,42270725,42401796],"valuetype":[786435,3014659,40108035,41353219],"values":[2424834,5701633,5832705,6750209,12124161,12320769,13107201,13565954,13959169,14614529,14942209,15269889,23396353,27131906,27590658,27787266,27983874,28442626,28508162,29884418,29949954,31850497,33947650,35717124,36503560,38273026,38404098,38731778,39518210,40239106,40697858,40828930,41484289,41549826,41811970,41943042,42074114,42139650,42532866,42729475],"virtual":[983041,2424833,3538946,3932161,4194306,9633793,9764865,10158081,10616833,11534337,11599873,12451841,12713985,12845057,13303809,13434882,13828097,14090241,15007745,15073281,15138817,15597569,15925249,16187393,16842753,16908289,17170433,17235969,18087937,19202049,19398657,20447233,20512769,20709377,21364737,22151169,22937601,24772609,25165825,25821185,26869761,27262977,27721729,28966913,29491201,30081026,30670849,31129601,31195137,31784961,32571393,32833537,32964609,33554433,33619969,33882113,34603009,34930689,34996225,35323905,35979265,36110337,36306945,36503553,37027841,37158913,37289985,37683201,38010881,38600705,38862849,39124993,41943041,42729475],"value":[262145,655366,917508,983043,1114113,1179650,1441796,1703940,1900548,1966084,2031618,2162690,2424840,3145732,3932161,4128790,4194305,4521985,4718596,4784149,4849665,4915201,5046275,5177345,5242881,5308417,5373953,5439489,5505032,5570561,5636099,5701641,5767171,5832708,5898245,5963780,6029313,6160385,6225928,6291457,6357002,6422531,6488073,6553601,6619137,6684673,6750213,6815753,6881289,6946817,7012361,7077889,7143425,7208969,7274498,7340039,7405577,7536649,7667713,7733257,7798785,7864329,7929857,7995401,8060934,8126473,8257537,8519689,8585222,8781825,8912905,8978441,9043969,9175041,9240577,9306113,9437185,9633799,9699329,9764873,9895937,10092553,10158081,10223625,10289159,10682369,10878977,10944519,11075585,11141121,11206657,11337729,11403265,11599873,11730945,11862017,11993089,12058625,12124162,12255233,12320770,12386305,12648449,12779521,12845057,12910593,13107202,13238273,13303809,13434881,13565956,13697025,13828097,13959170,14024705,14221313,14417921,14614530,14942209,15073281,15138817,15269890,15400963,15532033,15597571,15925251,15990785,16056321,16121857,16187393,16515073,16580609,16711681,16908290,16973826,17104897,17170435,17367041,17498113,17760257,17825793,17891329,17956865,18022401,18087938,18153473,18219009,18284545,18546689,18612225,18677761,18743297,18808833,18939905,18874370,19005441,19136513,19070977,19202055,19267585,19333121,19529729,19660801,19726338,19791873,19857410,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447234,20512770,20578305,20643841,20709379,20774913,20840449,20905985,21102593,21299201,21495809,21561345,21692417,21757954,21823489,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544386,22740993,22872065,23003137,23199745,23265281,23330817,23396354,23789569,23855105,23920641,24051714,24117249,24444930,24510465,24707073,25100289,25493505,25559041,26476545,26869761,27197441,27262977,27525122,27590657,27656194,27852802,28180481,28442625,28573698,28639233,28704769,28966913,29163521,29229057,29360130,29425666,29491201,29556740,29622274,29753345,29818881,29949953,30081025,30146561,30212098,30408708,30539778,30670850,30736385,30801922,30867458,30932994,31129601,31195137,31260674,31326209,31588354,31653889,31719425,31784962,31850498,31916033,32112642,32178178,32243714,32309249,32440322,32571393,32636930,32768002,32833538,32964609,33030147,33095682,33161217,33226753,33292289,33423362,33554436,33619969,33685505,33751042,33816578,33882113,33947650,34013186,34078722,34144257,34209794,34275329,34340865,34471939,34603009,34668546,34734082,34799617,34865154,34930689,34996225,35061762,35127300,35192833,35258369,35323905,35520514,35586050,35651585,35717122,35782657,35848197,35979265,36110337,36241410,36306946,36372481,36438018,36503553,36569092,36634625,36700161,36765699,36831233,36896771,36962305,37027841,37093377,37158914,37224449,37289985,37355521,37421057,37552129,37683201,37814274,37879811,37945345,38010882,38207489,38273025,38338563,38469634,38535169,38600706,38666241,38731782,38797313,38862849,38928385,38993921,39059459,39124993,39190529,39387137,39452673,39518210,39649283,39714820,39845890,39911429,40042497,40108033,40173569,40239106,40304644,40435714,40501249,40697858,40763396,40894465,40960004,41091076,41222146,41287684,41353217,41418756,41484292,41549827,41680917,41746433,41943050,42008580,42074116,42270721,42467330,42663940,42729473,42926102,43057153],"void":[983042,3538946,3670018,3866626,4063234,4325378,4390914,8323074,8388610,8454146,8650754,8716290,9109506,9633794,9961474,10289154,10354690,10420226,10616834,10813442,10878978,11010050,11141122,11206658,11272194,11403266,11468802,11534338,11665410,11927554,11993090,12058626,12189698,12255234,12451842,12713986,12779522,12976130,13041666,13238274,13369346,13500418,13565953,13697026,14024706,14090242,14221314,14286850,14548994,14680066,14745602,14811138,14942210,15007746,15466498,15728642,15794178,15859714,15925250,15990786,16777218,16842754,17039362,17235970,17563650,18415618,18481154,19202050,19398658,19726338,21037058,21364738,22937602,24772610,25165826,25821186,26279938,27656193,27721730,27852801,29622273,30539777,30801921,30867457,31260673,31588353,31850497,32112641,32178177,32243713,32636929,32768001,33030145,33423361,33554433,33751041,33816577,33947649,34013185,34078721,34209793,34471937,34668545,34865153,35127297,35520513,35586049,35717121,35848193,36241409,36438017,36569089,36765697,36896769,37814273,37879809,38338561,39059457,39518209,39649281,39845889,39911425,40239105,40435713,40632322,40697857,42663937],"voidresult":[2949123,13565953,24444929,42663943],"vt_array":[42729473],"v8runtimeflags":[17498118,18153478,18284550,18546694,19136518,19267590,19529734,19791878,26673153,34406408,38928389,42401800],"v8runtime":[6094851,15532034,16056322,16515074,16580610,16711682,16973826,17104898,17235970,17301510,17367042,17498118,17563650,17629190,17891330,17956866,18022402,18153478,18219011,18284550,18415618,18546694,18677762,18743298,18808835,18874370,18939906,19005442,19136518,19267590,19464198,19529734,19595270,19791878,19857410,20054019,20381698,20774915,20905986,21102595,21692418,21757954,22347778,23330819,25624578,26673153,28835842,31522819,32374786,33488898,34078722,34406414,34865154,35848194,36765698,37552130,39059458,39845890,42401811],"v8script":[2818051,7602178,16056325,16515077,16711685,17104901,17367045,17760261,17891333,18219013,18612229,18743301,18808837,18939909,19005445,19070981,19333125,19660805,19726343,19988485,20054021,20185093,20250629,20381701,20578309,20774917,21102597,21495813,21561349,21692421,22216709,22347781,22478853,23265285,23330821,23396358,23789573,24248321,24510469,24707077,25165826,25559045,26673153,26738691,31457281,38666242,39452674,40566791,42139650],"vbarray":[42729473],"vt_dispatch":[41222145,42729473],"view":[1245186,1376258,1572866,2228226,9043970,10682370,13565953,14680065,36175874,37486594,42795010,42991618]} \ No newline at end of file +{"voidresult":[3145731,14221313,23068673,43253767],"variable":[3014657,3407873,7012361,28770305,30212097,31588353,31981569,34734081,37158913,41025537,41418753,41615361,41877505,42926081,42991617,43384833],"variabl":[6553601],"versions":[32636929],"vt_cy":[42401793],"v8script":[2621443,4653058,16384005,16580613,16842757,17104901,17170437,17301509,17367045,17563653,17956869,18153477,18284549,18350085,18415621,18481157,18546693,18874373,19070981,19267589,19529733,19791877,19857413,20185093,20250629,20447238,20840453,20971522,21168133,21430277,22609925,23265285,24182789,24510469,25231361,25755653,25952263,26148869,26279937,26476545,26804229,26869765,28508165,28573701,30146563,36110338,38404098,41943047,42991618],"v8scriptengineflags":[3342340,17498118,18022406,18612230,20643846,20774918,21954566,22413318,22872070,22937606,23396358,23789574,25231361,25821190,27459592,28311556,42139652,42991624,43188229],"v8runtime":[3342339,16056322,16384002,16449538,16580610,16842754,17104898,17170435,17301506,17367042,17432582,17498114,17563650,17629186,17694726,17825798,17956867,18022402,18087942,18219014,18284546,18350082,18415619,18481155,18546691,18612226,18743302,18874370,18939906,19136518,19202054,19333122,19398662,19464194,19595270,19660802,19791874,19857411,19988486,20054022,20119554,20512770,21168130,22937602,24838146,25231361,25886722,26214414,27525122,28311554,31260675,35717122,35979266,36503554,36896770,37289986,38273026,38666242,42139667],"variants":[42401795],"v8scriptengine":[4653059,17498117,17760258,18022405,18153474,18612229,18677762,19070978,19267586,19464197,19529730,19922946,20185090,20250626,20316166,20381698,20447234,20512773,20643846,20709378,20774918,20840450,20905990,21233670,21299202,21430274,21561346,21626886,21954566,22413318,22609922,22872070,22937605,23265283,23396358,23789574,24182786,24510467,25165826,25231361,25690114,25755650,25821190,25952258,26148867,26279938,26476546,26738690,26804227,26869762,27394051,27459598,28049410,28114946,28508163,28573699,29294594,31588355,35782659,35848194,36700162,36962306,37421058,37683202,38010882,38141954,41418753,42991636],"valid":[14811137],"v8runtimeflags":[17825798,18087942,18743302,19136518,19202054,19595270,19988486,20054022,25231361,26214408,40566789,42139656],"visible":[41680897],"view":[1769474,1835010,1900546,2097154,10682370,11534338,13959169,14221313,39583746,40239106,42860546,43122690],"variables":[6553601,7012354,37158913],"vbarray":[42401793],"variant":[42270721,42401793],"vbscriptengine":[5701635,21037062,21889030,22020102,22544390,23199750,23461894,24248323,26345473,29229064,31981571,38207491,41877505,43384845],"verifyaccess":[4718593,5505025,5701633,22282245,41615361,41877505,43384833],"void":[1441794,3670018,3932162,4063234,4521986,4587522,5177346,7929858,8126466,8454146,8519682,8716290,8847362,9306114,9699330,10878978,11141122,11665410,11730946,11796482,11927554,11993090,12058626,12124162,12189698,12255234,12386306,12451842,12517378,12582914,12648450,12713986,12845058,12779522,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13697026,13959170,14024706,14155778,14221313,14286850,14417922,14483458,14811138,14876674,15597570,15859714,16056322,16187394,16646146,16777218,16908290,17760258,17891330,18677762,18808834,18939906,19005442,20119554,20709378,20971522,21299202,21495810,21692418,22282242,23003138,25100290,25952258,29622273,29753345,29818881,30539777,30867457,31719425,32440321,32571393,32636929,33357825,33554433,34144257,34668545,34865153,34930689,35061761,35323905,35454977,35520513,35717121,35913729,35979265,36175873,36306945,36372481,36503553,36634625,36700161,36831233,36896769,36962305,37027841,37158913,37355521,37421057,37486593,37617665,37683201,37945345,38010881,38076417,38141953,38273025,38666241,38731777,38862849,38928385,39059457,39256065,40960002,43253761],"values":[3211266,6094849,7012353,9109505,13631489,13828097,13893633,14221314,14680065,14745601,14811137,15138817,20447233,27000834,27852802,28704770,28770306,30212098,31588354,31916040,31981570,34734082,35323905,35913730,36175873,36634626,37486594,37945348,38076418,39452673,40108034,40173570,40435714,40763394,41418754,41615362,41877506,42401795,42532866,42991618,43384834],"vt_date":[42401793],"v8runtimeheapinfo":[2752515,19660806,25231361,28114950,29491203,35586050,36438018,36569090,37224450,37814274,41156615],"visual":[3211267,5308418,5439490,5636098,5898242,10485762,10747906,11272194,11468802,40763395],"vie":[1769473,1835009,1900545,2097153,9830402,27131907,27197443,27918339,30998531,32047105,32833537,33292289,39583748,40239108,42860548,43122692],"views":[23986177,42860545],"v8runtimeconstraints":[2555907,15663110,17825798,18087942,18219014,18743302,19202054,19398662,20774918,21233670,21626886,21954566,22872070,25231361,25821190,26214406,27459590,28966915,35913730,35979265,36634626,36700161,37486594,38076418,39911433,42139654,42991622],"vt_dispatch":[42270721,42401793],"var":[4849666,4915202,5242882,5570562,5963778,6029313,6160390,6225926,6291460,6356994,6488065,6422534,6553606,6750210,6881283,7012357,7143427,7405571,7471107,7602179,7536643,7667715,7733251,7995396,8060931,8323074,8585219,9240579,9371651,9437186,9633795,9895939],"version":[393217,1114113,1245185,1310721,1441793,3014662,3407878,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4259841,4390913,4456449,4521985,4587521,4784129,4849665,4915201,4980737,5111809,5177345,5242881,5308417,5373953,5439489,5570561,5636097,5767169,5832706,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946818,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060930,8126465,8192001,8257537,8323074,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043970,9109505,9175041,9240577,9306113,9371649,9437186,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515074,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21823489,21889025,21954561,22020097,22282241,22347777,22413313,22478849,22544385,22609921,22806529,22872065,22937601,23003137,23068674,23134210,23199745,23265281,23330818,23396353,23461889,23527425,23592961,23724034,23789569,23855106,24051713,24182785,24248322,24379393,24510465,24903681,25034754,25100289,25690113,25755649,25821185,25952257,26148865,26804225,26869761,26935298,27394050,28114945,28508161,28573697,29360129,29425665,29622273,29753345,29818881,30474241,30539777,30605313,30670849,30867457,31195137,31326209,31457281,31522817,31653889,31719425,31784961,31916033,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025543,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926088,42991617,43057154,43122689,43188225,43253761,43319297,43384833],"value":[131073,393218,720900,851970,1114118,1245185,1310726,1441795,1507331,1572868,1966084,2228226,2686980,2818052,2949124,3014677,3211272,3407894,3997697,4194305,4259841,4784129,4849665,4915204,4980737,5111809,5242881,5308417,5439489,5570564,5636097,5832705,5898241,5963784,6029322,6094852,6160385,6225921,6291463,6357001,6488065,6422529,6553605,6619137,6684673,6750209,6815745,6881289,6946817,7012357,7077897,7143433,7208963,7274497,7340033,7405577,7471113,7536649,7602185,7667721,7733257,7798787,7995398,8060930,8192001,8257537,8323079,8388614,8585225,8650755,8781833,9043976,9109513,9175049,9240585,9371657,9437185,9633801,9830401,9895937,9961473,10092545,10158081,10223617,10289153,10485761,10616841,10682369,10747905,10813441,10944513,11010049,11141127,11272193,11403265,11468801,11534337,11862017,11927553,12058625,12124161,12386305,12451841,12517383,12845057,12779521,12910593,12976129,13172737,13238273,13631490,13697025,13828098,13893634,14221316,14352387,14680066,14745602,14811137,15007745,15138818,15400963,15466497,15597575,15728641,15925250,16318465,16384001,16449537,16515073,16580609,16711682,16777219,16842753,16908289,17039363,17104897,17235969,17170433,17301505,17367041,17498114,17563649,17629185,17825793,17956865,18022402,18087937,18153473,18284545,18350081,18415617,18481153,18546689,18612226,18743297,18874369,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20381697,20447234,20512769,20643841,20774913,20840449,21102593,21168129,21364737,21430273,21561345,21889025,21954561,22020097,22347777,22413313,22478849,22609921,22806529,22872065,22937602,23068674,23134209,23199745,23265281,23330818,23396353,23461889,23527425,23658498,23789569,23855105,24051713,24117250,24182785,24248323,24510465,24641538,24707074,24903681,25296898,25690113,25755649,25821185,25952258,26148865,26673154,26804225,26869761,27000833,27394050,27852801,28114945,28246020,28508161,28573697,28704769,28770305,29360129,29425665,29556738,29622274,29687810,29753346,29818882,29949956,30212097,30474241,30539778,30605313,30670849,30867458,31195137,31326209,31457281,31522817,31588353,31653889,31719426,31784961,31916033,31981569,32047105,32112642,32178178,32243713,32309249,32374785,32440322,32505857,32571394,32636930,32702465,32768001,32833537,32964610,33095682,33030145,33161217,33226753,33292289,33357826,33423362,33488897,33554436,33619969,33685505,33751041,33816577,33882113,33947650,34013185,34078721,34144258,34209793,34275329,34340865,34406402,34471937,34537473,34603010,34668546,34734081,34799617,34865154,34930690,34996225,35061762,35127297,35192833,35258369,35323906,35389442,35454978,35520515,35586049,35651585,35717123,35782657,35848194,35913730,35979269,36044801,36110337,36175879,36241410,36306946,36372482,36438017,36503554,36569089,36634626,36700165,36765697,36831235,36896771,36962307,37027842,37093377,37158914,37224449,37289985,37355522,37421059,37486594,37552129,37617666,37683203,37748740,37814273,37879809,37945346,38010883,38076418,38141954,38207489,38273026,38338561,38404097,38469633,38535169,38600705,38666242,38731778,38862852,38928386,38993921,39059458,39124993,39190530,39256068,39321601,39452676,39780353,39976961,40108034,40173571,40370177,40435718,40501249,40566785,40632321,40763402,40828932,40894465,41025558,41222145,41287684,41418753,41484289,41615361,41680897,41811972,41877505,42008580,42270722,42401793,42467332,42532868,42663938,42729476,42926101,42991617,43057156,43188225,43253764,43384833],"valuetype":[262147,2883587,40632323,40894467],"vbs":[38207489],"virtual":[1441793,3211265,3670018,3997698,4259841,10092545,10616833,10878977,10944513,11403265,12517377,13303809,13434881,13565953,14155777,14286849,15007745,15400961,15466497,15597569,15925249,16318465,16515073,16711681,16777217,17039361,17235970,18677761,18808833,18939905,19726337,20381697,20709377,20971521,21299201,21692417,23003137,23134209,23330817,23855105,24248321,25100289,27394049,30605313,31457282,31916033,32178177,32309249,32702465,32768001,33030145,33095681,33488897,33554433,33619969,33685505,33816577,33947649,34078721,34209793,34275329,34340865,34406401,34537473,35192833,35389441,35782657,35848193,37552129,38207489,38469633,39190529,40763393,42401795],"vbscript":[21037057,21889025,22020098,22544385,23199745,23461890,26345474,29229062,39387137,42270721,42401794,43384839],"val":[393217,1114113,1245185,1310721],"vt_array":[42401793],"vbscrip":[14221313,37945345,39452673],"v8cpuprofileflags":[3342337,4653057,19333126,24838145,25231361,25690118,26738689,33423361,36241409,41484293,42139649,42991617],"v8cpuprofile":[196610,393218,1245186,2293762,2359298,2424835,2883586,15728642,16646146,17629189,21561349,25231364,28835843,30081026,30736386,33161218,33423362,33882114,34013186,34471938,34603010,35127304,35258376,35651586,36241410,36831234,37355522,37879810,38535176,38993928,39321608,39780354,40304643,40894466,41091079,41353219],"v8cachekind":[3342348,4653068,17170439,17301510,17367046,17956871,18284550,18350086,18415623,18481159,18546695,19070982,19791878,19857415,20250630,20840454,21168134,21430278,22609926,23265287,24510471,25231361,25755654,25886726,26148871,26804231,27525126,28049414,28508167,28573703,29294598,40370181,42139660,42991628]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_119.json b/docs/Reference/fti/FTI_119.json index 4c1354132..2a51a7e51 100644 --- a/docs/Reference/fti/FTI_119.json +++ b/docs/Reference/fti/FTI_119.json @@ -1 +1 @@ -{"www":[7143425],"windowsscriptengineflags":[20643846,21954566,22020106,22085638,22282246,23003142,23199750,23920646,25100294,26214404,26476550,27000836,27394049,29032450,40828932,41811972,42532866,42729477],"windowsscriptengine":[4456451,4587526,4653062,21037058,22020106,23199750,23855106,24772610,25821186,26869763,27131907,27394049,27721730,27983875,28114946,29032452,29884419,36962306,37814274,38404097,38600706,40828942,41811982,42139649,42532873,42860545],"writes":[2359297,17039361,39976961],"written":[42663937],"webclient":[9306116],"writable":[9502721,10485761,32047105,41549825,41746433],"window":[28770305,40173569,42860545],"way":[6029313,13565953],"write":[2228225,6750209,14417925,17039361,37486593],"wrapnullresult":[5701634,35717121,41484289],"writeline":[4849665,8585217,9306115],"writer":[2359297,17039367,39976961],"widget":[7667713],"webclientt":[9306114],"web":[9306114,29097985,36634625],"wrapping":[5701633,27131905,27787265,27983873,28508161,29884417,35717121,38404097,40828929,41811969,42139649,42532865],"writejson":[2359297,17039365,39976961],"windows":[262145,655362,2686977,3080193,3342337,4456449,4587521,4653057,20447234,20643843,20709378,21037058,21233666,21430274,21954563,22020101,22085635,22282243,22806530,23003139,23134210,23199749,23855106,23920643,24772610,25100291,25821186,26214401,26279938,26476547,26869762,27000833,27131905,27197442,27262978,27394055,27721730,27983873,28114945,28770305,29032451,29884417,35323906,36110338,36962306,37814274,38141955,38404097,38600706,39321603,39387137,40173570,40828932,41222148,41811972,42532873,42729475,42860547,43057153],"writebytes":[1245185,1310721,1376257,1572865,2228225,9437189,10682373,36175873,37486593,42598401,42795009,42991617],"wait":[42270721],"weight":[7667713]} \ No newline at end of file +{"webclient":[9895940],"writebytes":[1703937,1769473,1835009,1900545,2097153,9961477,11534341,39583745,40239105,42795009,42860545,43122689],"www":[6160385],"way":[6225921,14221313],"write":[2097153,7012353,10223621,16646145,40239105],"weight":[6488065],"writable":[11075585,11206657,27066369,40173569,40501249],"wait":[43188225],"widget":[6488065],"web":[9895938,31064065,39124993],"wrapnullresult":[9109506,37945345,39452673],"wrapping":[9109505,28770305,30212097,31588353,31981569,34734081,37945345,41418753,41615361,41877505,42991617,43384833],"writejson":[2424833,16646149,41091073],"windows":[1310722,3473409,3538945,4194305,4718593,5046273,5505025,5701633,13959169,14221313,20578306,21037058,21102595,21364739,21495810,21692418,21823490,21889027,22020099,22282242,22347778,22478851,22544386,22806531,23003138,23134210,23199747,23330818,23461891,23527429,23855106,24051714,24248322,24903685,25100290,26345479,28377089,29032449,29229057,30015489,30212097,30801923,31981569,34734081,36765698,37552130,38207490,38600706,38928386,39190530,39387139,39649283,39976961,41418753,41615364,41680897,41877513,42270724,42401795,43319299,43384836],"writes":[2424833,16646145,41091073],"windowsscriptengine":[4718598,5505027,5701638,21692418,22282242,23003138,23527434,23855107,24051714,24903686,25100290,26345473,30015490,30212099,30801924,31981571,34734083,38600706,38928386,39190530,41418753,41615374,41877513,42991617,43319297,43384846],"window":[29032449,36765697,43319297],"written":[43253761],"windowsscriptengineflags":[21102598,21364742,21889030,22020102,22478854,22806534,23199750,23461894,23527434,24903686,26345473,28377092,29229060,30801922,41615364,41877506,42401797,43384836],"writer":[2424833,16646151,41091073],"writeline":[5242881,7995393,9895939],"webclientt":[9895938]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_121.json b/docs/Reference/fti/FTI_121.json index 7fa866a50..8d9235b9d 100644 --- a/docs/Reference/fti/FTI_121.json +++ b/docs/Reference/fti/FTI_121.json @@ -1 +1 @@ -{"yields":[42270721],"young":[32505857,33947649,38076417],"yield":[5570561,6029313,6291457,11403265,11468801,12058625,13041665,14024705,14745601,15794177,15990785]} \ No newline at end of file +{"yield":[6225921,6422529,7274497,12058625,12189697,12255233,12386305,13041665,13238273,16908289,19005441],"yields":[43188225],"young":[28966913,35913729,39911425]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_122.json b/docs/Reference/fti/FTI_122.json index f6abdc67a..19345f84c 100644 --- a/docs/Reference/fti/FTI_122.json +++ b/docs/Reference/fti/FTI_122.json @@ -1 +1 @@ -{"zero":[28180481,29425665,32440321,38469633,42467329]} \ No newline at end of file +{"zero":[29687809,31522817,33423361,36241409,42663937]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_95.json b/docs/Reference/fti/FTI_95.json index b9008b11e..b79739644 100644 --- a/docs/Reference/fti/FTI_95.json +++ b/docs/Reference/fti/FTI_95.json @@ -1 +1 @@ -{"_exception":[10158081,10616833,13828097,15007745]} \ No newline at end of file +{"_exception":[10878977,11403265,14155777,15007745]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_97.json b/docs/Reference/fti/FTI_97.json index 9ee0d197d..ddba8569c 100644 --- a/docs/Reference/fti/FTI_97.json +++ b/docs/Reference/fti/FTI_97.json @@ -1 +1 @@ -{"attributes":[24444929,26607617,33423361,39387138,40108033],"affinity":[42139649,42532865],"astype":[4128769,4784129,6488070,41680897,42926081],"approach":[33816577],"accepted":[17104898,17367042,18219010,18808834,19988482,20381698,20578306,21102594,21495810,21561346,24510466,25559042],"accommodate":[36044801],"addcomobject":[3801096,4456456,4587528,4653064,7602184,10813446,10878982,11206662,11927558,11993094,12976134,13238278,14286854,22609929,38404104,40828936,41811976,42139656,42532872],"affect":[42729473],"accelerate":[32178177],"addhosttype":[3801096,4456456,4587528,4653064,7602184,11403270,11468806,12058630,13041670,14024710,14745606,15794182,15990790,25952265,38404104,40828936,41811976,42139656,42532872],"accepts":[5832705,7340033,8585217],"administrator":[131073],"applicable":[40763393,40960001,41287681,41418753,42008577],"addsystemdocument":[851972,3670022,3866630,4325382,4390918,21626885,36044804],"attempting":[42532865],"activex":[3801104,4456464,4587536,4653072,4784130,4849666,5308418,7602192,8257537,10813441,10878977,11141121,11206657,11272193,11927553,11993089,12189697,12255233,12976129,13238273,13369345,13697025,14221313,14286849,14811137,22609928,23527432,38404112,40828944,41680898,41811984,42139664,42532880],"automatic":[27131905,27787266,27983873,28508161,29884417,31522817,34209793,38338561,38404097,39059457,40501249,40828929,41811969,42139650,42270721,42401793,42532865],"allowing":[34209793],"addcomtype":[3801096,4456456,4587528,4653064,7602184,11141126,11272198,12189702,12255238,13369350,13697030,14221318,14811142,23527433,38404104,40828936,41811976,42139656,42532872],"associate":[13631489,16384001,17629185,17956865,18153473,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20643841,20971521,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23920641,24117249,25100289,25493505,26476545],"attached":[12320769,13500417,13565953,14614529,14680065,15859713],"arguments":[5570562,5832706,5898241,6029314,6291457,6619137,6750209,6881281,6946817,7012353,7208961,7274497,7340034,7405569,7536641,7995393,8126465,8257537,8519681,8585218,8716289,8912897,8978433,9961473,10092545,10223617,11403265,11468801,12058625,13041666,14024706,14745602,14942211,15400961,15597569,15794177,15925249,15990786,16908289,18087937,27131905,27787265,27983873,28508161,29884417,34209795,36569089,38404097,40828929,41811969,42139649,42532865],"addtype":[2162691,8454150,8716294,9961478,26345476,38731779],"attributetargets":[39714820,40763412,40960020,41287712,41418768,42008608],"abc":[5308417],"able":[42074113],"asconstructor":[16908293],"argcount":[5832710,7340038,8585222],"accessible":[5242881,6160385,11665409,12779521,14942210,34013185,36438017,42074113],"address":[29097985],"application":[16842753,18743297,19005441,19070977,19333121,20054017,20250625,20774913,22216705,22347777,22478849,23330817,23789569,29556737,30408705,40304641,41091073,42270721],"appears":[41222145],"accept":[14942209],"analysis":[9306113],"assemblyname":[5570565,8650757,8716293,9109509,13041669,14024709],"assemblyqualifiedname":[10944513,12386305],"active":[6094849,7602177,17563649,18481153,38338561,39059457,42139649,42401793],"asynchronous":[3932161,8781825,9699329,9895937,11862017],"advantage":[19726337],"anonymous":[27131905,27787265,27983873,28508161,29884417,36438020,38404097,40828929,41811969,42139649,42532865],"attempt":[35586049],"algorithm":[29622273,33030145,33816577,40960001,41287681,41746433],"addhostobject":[3801090,4456450,4587522,4653058,4718593,4849665,5308417,5505025,5570562,5898241,5963777,6029314,6291457,6356993,6488065,6750209,6881281,7012353,7077890,7143425,7208961,7274498,7340033,7405569,7536641,7602178,7667713,7929857,7995393,8126465,8257537,8519681,8585217,8912897,8978433,9306113,10092545,10223617,10813441,10878977,10944513,11010055,11141121,11206657,11272193,11403265,11468801,11665409,11927553,11993089,12058625,12189697,12255233,12386305,12779521,12976129,13041665,13238273,13369345,13697025,14024705,14221313,14286849,14745601,14811137,14942214,15794177,15990785,24313859,38404098,38731777,40828930,41811970,42074113,42139650,42532866,42926081],"argument":[4128774,4784134,4849665,5308417,5898241,6225922,6750210,6946819,7274498,8257538,10944514,11927553,11993089,12189697,12255233,12386306,12976129,13238273,13369345,13697025,14942210,18022401,21954561,22020097,22413313,22675458,23003137,23199745,23724034,25100289,25755650,26476545,41680902,42926086],"access":[2424833,3080193,3407879,3670017,3866625,3932161,4194305,4325377,4390913,4456450,4587522,4653058,4718593,5963777,6750209,8060929,11665409,12779521,13565953,14155777,14876673,14942209,15204359,15663112,16252935,16646152,17432583,21037057,23855106,24444934,24838145,24969217,25427969,26083330,26411010,26673153,26935298,27066372,27131908,27197441,27394049,27459585,27787268,27983876,28049409,28246017,28508164,28966913,29163526,29622273,29884420,30015490,30539777,31391747,31588353,31719430,31850497,32243713,32571393,32833537,33030145,34013185,35913729,36044802,36306945,36438019,36569089,36634625,38141953,38404100,38600705,38731777,39321603,40304641,40763395,40828934,40960003,41287683,41418759,41746436,41811974,41943041,42008579,42074114,42139652,42270721,42336257,42532870,42729474,43057154],"accessflags":[28049409,30539781,36044801],"added":[196609,589825,983041,3670017,38731777,41549825,42074113],"arrtype":[4521989,4784129,41680897],"action":[5898241],"assigned":[6815745,7733249,7864321,29556737,30408705,40304641,41091073],"accelerating":[38993922],"alternative":[31588353],"accesscontext":[27131905,27787265,27983873,28508161,29884417,34013189,36438017,38404097,40828929,41811969,42139649,42532865],"allows":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,4128770,4784130,6094849,9306113,24444929,27131906,27394049,27787266,27983874,28508162,29884418,32833537,34013185,35913729,36044801,36306945,37617665,37748737,38076417,38273025,38404098,38600705,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828930,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680899,41811970,41943041,42008577,42074113,42139650,42336257,42401793,42532866,42663937,42860545,42926082],"ambiguous":[12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217],"addassembly":[2162692,8323078,8388614,8650758,9109510,24903685,38731780],"accelerated":[6094854,7602182,17104897,17367041,18219009,18743298,18808833,19005442,19070978,19333122,19988481,20054018,20250626,20381697,20578305,20774914,21102593,21495809,21561345,22216706,22347778,22478850,23330818,23789570,24510465,25559041,26148867,28835843,29294595,32374787,42139654,42401798],"array":[1245187,1310723,1376259,1572867,2228232,4128770,4521988,4718595,4784130,5046274,5570563,5767169,5898246,5963779,6029313,6619137,6684673,7077895,7143425,7274497,7340040,7864321,7929860,8257537,8585224,8716289,8847361,9043971,9371649,9437187,9830401,9961473,10551297,10682371,11075589,11337731,11730947,12648451,12910595,13041665,14024705,14417925,14745601,14942210,15400961,15597569,15925252,15990785,16908289,17104897,17367041,18087937,18219009,18743297,18808833,19005441,19070977,19333121,19988481,20054017,20250625,20381697,20578305,20774913,21102593,21495809,21561345,22216705,22347777,22478849,23330817,23789569,23986178,24510465,25427969,25559041,27131905,27787265,27983873,28508161,29884417,30801922,36175875,36569091,37486602,38404097,40828929,41680898,41811969,42074114,42139649,42532865,42598403,42729473,42795011,42926082,42991619],"args":[6619141,7143429,7274501,8257541,15400965,15597573,15925254,16908293,18087941,36569094],"affects":[34013185,35586049,36896769,37879809,41746433,42729473],"assumes":[4718593,4849665,5308417,5505025,5570561,5898241,5963777,6029313,6356993,6488065,6750209,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7667713,7995393,8126465,8519681,8585217,8912897,8978433,9306113,10092545,10223617,10944513,12386305],"assumed":[33947649,39518209,40239105,40697857],"abstractclassattribute":[35913729,37617665,38404097,39583745,40370177,40566785,41156609,41877505,41943041,42532865,43122689],"appear":[14942209,36896769],"associated":[3801092,4456452,4587524,4653060,5046273,6094851,7602184,13565953,14614529,14680065,15859713,18219009,20054017,20250625,21495809,21692417,23265281,23592962,24248322,25296898,25559041,26148868,26738689,27131906,27787265,27983874,28508161,28835843,29425665,29556738,29884418,30408707,31457282,31522817,31916033,33161217,34930689,36962305,37289985,37552129,38404101,39452673,40304642,40566785,40828934,41091075,41811974,42074113,42139657,42401796,42467329,42532870],"absolute":[3932161,4194305],"assemblynames":[4718597,5963781,8847365,9371653],"assemblies":[4718597,4784130,5963780,8847363,9371651,9830407,10551303,23068674,28377094,38731783,40763393,40960001,41680898],"addrestrictedhostobject":[3801090,4456450,4587522,4653058,7602178,11665414,12779526,23461891,38404098,40828930,41811970,42139650,42532866],"actions":[2424833,41943041],"acme":[4718595,5963779,38731779],"arrayt":[5898242,8585218],"adds":[851972,2031617,2162696,3670017,3866625,4325377,4390913,5046274,6881281,7012353,7208961,7405569,7536641,7667713,7995393,8126465,8323073,8388609,8454145,8519681,8650753,8716289,8912897,8978433,9109505,9633793,9961473,10092545,10223617,21626884,24903684,26345475,36044804,38731784,41549825,42074114],"available":[14942209,28180481,29097985,29425666,29491201,29556737,30408705,31588353,32178178,32243713,32440321,34144257,35979265,38469633,38993921,40304641,41091073,42467330],"additional":[16973825,18874369,19857409,21757953,24444929,29556737,30408705,40304641,41091073,41418753],"attributeusageattribute":[39714820,40763396,40960004,41287684,41418756,42008580],"attempts":[20447233,20512769,20709377,31588353,32243713,33816577],"arraybuffer":[1310723,9437186,11730946,12910594,25427970,28704769,30277633,31064067,31981571,32702467,33292294,34275329,34537475,36175875,37486595,42598405,42795012,42991619],"applies":[6225921,8257537,10944513,32243713,43057153],"allowreflection":[10944513,12386305,27131905,27787265,27983873,28508161,29884417,35586053,38404097,40828929,41811969,42139649,42532865],"applied":[39714817],"attribute":[917508,1441796,1703940,1900548,1966084,3145732,26083330,26411010,26935298,30015490,30605314,31391746,39387137,39714828,40763404,40960009,41287689,41418760,42008588],"add":[983041,2031617,2162689,5046274,5308419,6750210,6881282,7012354,7208962,7405570,7536642,7995394,8126466,8323073,8388610,8454145,8519682,8650754,8716290,8912898,8978434,9109505,9371649,9633800,9830401,9961473,10092546,10223618,38731777,39321601,41549825,42074114],"avoid":[10420225],"assembly":[655361,983041,1114113,1179649,2162697,3407873,3473409,3538945,3604481,3670017,3735553,3801090,3866625,3932161,3997697,4063233,4194305,4259841,4325377,4390913,4456450,4521985,4587522,4653058,4718594,4784129,4849665,4915201,4980737,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570563,5636097,5701633,5767169,5832705,5898241,5963778,6029313,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602178,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323086,8388622,8454145,8519681,8585217,8650756,8716291,8781825,8847361,8912897,8978433,9043969,9109508,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830407,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551303,10616833,10682369,10747905,10813441,10878977,10944514,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386306,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041667,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024707,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23658497,23789569,23855105,23920641,24117249,24182785,24510465,24576001,24707073,24772609,24903688,25100289,25165825,25493505,25559041,25821185,25952258,26279937,26345473,26476545,26869761,27197441,27262977,27656193,27721729,27852801,28180481,28377090,28639233,28704769,28901377,28966913,29163521,29229057,29491201,29622273,29753345,29818881,30081025,30146561,30212097,30539777,30670849,30736385,30801921,30867457,31129601,31195137,31260673,31326209,31588353,31653889,31719425,31784961,31850497,31916033,32112641,32178181,32243713,32309249,32440321,32571393,32636929,32768001,32833537,32964609,33030145,33161217,33226753,33292289,33423361,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438018,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404099,38469633,38535169,38600705,38666241,38731789,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763397,40828931,40894465,40960005,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680898,41746433,41811971,41877505,41943041,42008577,42074113,42139651,42205185,42270721,42336257,42401793,42467329,42532867,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122690],"ability":[39714817],"api":[16384001,22020097,33947649,39452673,39518209],"addition":[2424833,6750209,7667713,14942209,41943041],"automatically":[1,12320769,13500417,16842753,39714817,42139649],"asynchronously":[720897,3932161,41156609],"arrays":[14942210,25427969,36175873,37486593,42729474],"applications":[39321601],"arra":[2228225,12648450,29818881,32702465,34537473,36175873,37486595],"assigning":[5898241,38338561,39059457],"abstract":[983041,3538945,3932163,4194305,9043969,9437185,9633793,9764865,10158081,10420225,10616833,10682369,11075585,11337729,11534337,11599873,11730945,12451843,12648449,12713987,12845057,12910593,13303811,13434881,13828097,14090243,14417921,15007745,15073283,15138817,15597571,15925251,16187395,16842753,16908291,17170435,17235969,18087939,19202051,19398657,20447233,20512769,20709377,21364737,22151169,22937601,24444929,24772609,25165827,25821185,26279937,26869761,27197441,27262977,27721729,28180481,28704769,28966915,29229057,29491201,29818881,30081025,30212097,30670849,31129601,31195139,31326209,31784961,32309249,32571393,32833539,32964609,33161217,33292289,33554433,33619969,33882115,34144257,34275329,34603009,34930689,34996225,35061761,35258369,35323905,35913731,35979265,36110337,36306945,36503553,37027843,37158913,37289985,37617666,37683203,38010881,38404098,38600705,38862851,39124993,39583745,40173569,40370177,40566786,41156610,41877505,41943042,42532866,43122689],"awaitdebuggerandpauseonstart":[42270721]} \ No newline at end of file +{"awaitdebuggerandpauseonstart":[43188225],"asynchronous":[4259841,10485761,10747905,11272193,11468801],"ability":[41287681],"alternative":[29818881],"allows":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014658,3080193,3145729,3211265,3276801,3342337,3407874,5046273,9895937,23068673,26345473,28770306,30212098,31588354,31981570,34734082,35389441,35848193,37748737,38731777,38797313,39190529,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025538,41091073,41156609,41287681,41353217,41418754,41549825,41615362,41746433,41811969,41877506,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42532865,42729473,42926083,42991618,43057153,43253761,43319297,43384834],"ambiguous":[13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329],"applications":[39387137],"addhosttype":[4325384,4653064,4718600,5505032,5701640,12058630,12189702,12255238,12386310,13041670,13238278,16908294,19005446,24969225,41418760,41615368,41877512,42991624,43384840],"accesscontext":[28770305,30212097,31588353,31981569,32636929,34734081,38731781,41418753,41615361,41877505,42991617,43384833],"accessflags":[27328513,30539781,39845889],"arrayt":[6553602,7995394],"accepted":[17170434,18284546,18350082,18481154,18546690,19070978,20840450,21168130,21430274,24510466,26804226,28508162],"addhostobject":[4325378,4653058,4718594,4849665,4915201,5242881,5505026,5570561,5701634,5963777,6029313,6160385,6225922,6291457,6356993,6422530,6488065,6553601,6684673,6750210,6881281,6946817,7012353,7143425,7274497,7405569,7471105,7536641,7602177,7667713,7733249,7995393,8060930,8323073,8585217,9240577,9371649,9437185,9633793,9895937,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,14483457,14811142,15859719,16908289,19005441,23920643,40435713,41025537,41418754,41615362,41877506,42532865,42991618,43384834],"applicable":[37748737,40828929,41811969,42008577,43057153],"appears":[42270721],"appear":[14811137,36962305],"assumed":[35913729,36634625,37486593,38076417],"adds":[851976,917508,1507330,2228225,3932161,4063233,4521985,5177345,6488065,6881281,7143425,7405569,7471105,7536641,7602177,7667713,7733249,7929857,8126465,8454145,8519681,8585217,8716289,8847361,9240577,9306113,9371649,9633793,12517377,22085636,30343172,31129603,39845892,40173569,40435720,42532866],"attached":[13959169,14221313,14745601,14876673,15138817,17891329],"array":[1507330,1703939,1769475,1835011,1900547,2097160,3014658,3407874,4784132,4915203,5570563,6160385,6225921,6291464,6422531,6553606,6619137,6684676,6750215,6815745,6946817,7208961,7995400,8060929,8454145,8519681,8978433,9175041,9568257,9764865,9830403,9961475,10223621,10289157,10420225,10682371,10813443,11010051,11534339,11862019,12255233,12386305,13041665,13238273,14352385,14811138,15925249,16711681,16777220,17039361,17170433,17301505,17367041,17956865,18284545,18350081,18415617,18481153,18546689,19070977,19791873,19857409,20250625,20840449,21168129,21430273,22609921,23265281,23986177,24510465,25559042,25755649,26148865,26804225,28508161,28573697,28770305,30212097,31588353,31981569,34734081,34865154,39256067,39583747,40239114,41025538,41418753,41615361,41877505,42401793,42532866,42795011,42860547,42926082,42991617,43122691,43384833],"accepts":[6094849,6291457,7995393],"assemblyqualifiedname":[8323073,9437185],"affinity":[41877505,42991617],"algorithm":[34144257,35520513,37027841,40501249,40828929,41811969],"administrator":[65537],"attributeusageattribute":[37748740,40828932,41287684,41811972,42008580,43057156],"abstract":[1441793,3670017,3997697,4259843,9699329,9830401,9961473,10092545,10223617,10289153,10616833,10682369,10813441,10878977,10944513,11010049,11403265,11534337,11862017,12517377,13303811,13434881,13565955,14155777,14286851,15007745,15400963,15466499,15597571,15925251,16318467,16515073,16711683,16777219,17039363,17235969,18677761,18808833,18939905,19726339,20381697,20709377,20971523,21299201,21495809,21692417,22347777,23003137,23068673,23134209,23330817,23855105,24248321,25100289,27394049,30605315,30670849,31195137,31326209,31457281,31522817,31653889,31916033,32047105,32112641,32178177,32243713,32309251,32374785,32702465,32768001,32833537,32964609,33030145,33095681,33292289,33488897,33554433,33619971,33685505,33751041,33816577,33947649,34078723,34209793,34275331,34340865,34406401,34537473,35192833,35389443,35782657,35848193,36765697,37552129,38207489,38469635,38797315,39190529,39518209,39714817,40042497,40697858,40763394,41418754,41549826,41877506,41943042,42074113],"automatic":[28770305,30212097,31260673,31588354,31981569,34734081,35717121,37158913,38010881,41418753,41484289,41615361,41877505,42139649,42991618,43188225,43384833],"attributetargets":[37748756,40828948,41287684,41812000,42008608,43057168],"acme":[4915203,5570563,40435715],"attempts":[23330817,24248321,27394049,29818881,35454977,37027841],"affects":[36962305,37683201,38731777,39059457,40501249,42401793],"attributes":[23068673,28442625,36372481,39976962,40632321],"assumes":[4849665,4915201,5242881,5570561,5963777,6029313,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6750209,6881281,7012353,7143425,7405569,7471105,7536641,7602177,7667713,7733249,7995393,8060929,8323073,8585217,9240577,9371649,9437185,9633793,9895937],"access":[3211265,3538945,3735559,3932161,3997697,4063233,4259841,4521985,4718594,4915201,5177345,5505026,5570561,5701634,7012353,8388609,12648449,13172737,14221313,14811137,15335431,15532039,15990792,16252935,16973825,21757953,22282241,22347777,23068678,23592961,23986177,24051714,24379400,24772612,25231361,25493505,26345473,27262977,27328513,28180482,28770309,28901379,29097986,29425670,29818881,30212101,30408706,30539777,30605313,30932993,31391746,31588357,31981573,32636931,33357825,34144257,34734085,34799622,35192833,35323905,35389441,35454977,35520513,35848193,37748739,38731777,38797313,39124993,39190529,39256065,39387139,39649281,39845890,40501252,40435713,40763393,40828931,41418757,41615367,41680898,41811971,41877511,42008579,42336257,42401794,42467329,42532866,42991621,43057159,43188225,43384839],"allowreflection":[8323073,9437185,28770305,30212097,31588353,31981569,34734081,39059461,41418753,41615361,41877505,42991617,43384833],"abstractclassattribute":[38797313,39518209,39714817,40042497,40697857,40763393,41418753,41549825,41877505,41943041,42074113],"allowing":[37158913],"approach":[37027841],"assemblynames":[4915205,5570565,9568261,10420229],"assemblies":[3014658,4915204,5570565,8978439,9568259,9764871,10420227,22675458,31850502,37748737,40435719,40828929,42926082],"able":[42532865],"args":[6160389,6619141,6946821,8060933,14352389,15925253,16711685,16777222,17039365,39256070],"associate":[13762561,14548993,17694721,18022401,18087937,19136513,19202049,19398657,19464193,19988481,20905985,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23461889,23527425,24903681,25821185],"active":[3342337,4653057,17760257,20119553,35717121,38010881,42139649,42991617],"addsystemdocument":[917508,3932166,4063238,4521990,5177350,22085637,39845892],"added":[983041,1048577,1441793,3932161,40173569,40435713,42532865],"argcount":[6094854,6291462,7995398],"abc":[4849665],"analysis":[9895937],"actions":[3211265,40763393],"arrays":[14811138,23986177,39583745,40239105,42401794],"accommodate":[39845889],"arrtype":[3014657,4784133,42926081],"additional":[17498113,18022401,18612225,22937601,23068673,28246017,29949953,42467329,42729473,43057153],"addition":[3211265,6488065,7012353,14811137,40763393],"associated":[1507329,3342339,4325380,4653064,4718596,5505028,5701636,13959169,14221313,15138817,17104897,17891329,18546689,19857409,24182785,24444930,24510465,24576002,25886723,26279938,26476546,26804225,28049412,28246018,28573697,28770305,29687809,29949955,30146561,30212098,30670849,31260673,31588353,31981570,32702465,32768001,34734082,34996225,36110337,37289985,38600705,41418757,41615366,41877510,41943041,42139652,42467330,42532865,42663937,42729475,42991625,43384838],"assigned":[7077889,8781825,9175041,28246017,29949953,42467329,42729473],"applied":[41287681],"addcomtype":[4325384,4653064,4718600,5505032,5701640,11730950,11927558,11993094,12124166,12582918,12713990,12845062,12976134,29884425,41418760,41615368,41877512,42991624,43384840],"astype":[3014657,3407873,6356998,41025537,42926081],"assemblyname":[6422533,8454149,8716293,9306117,12386309,13041669],"avoid":[9699329],"accelerating":[40370178],"asynchronously":[524289,4259841,41549825],"addcomobject":[4325384,4653064,4718600,5505032,5701640,11665414,11796486,12451846,12779526,12910598,13369350,13697030,14483462,28639241,41418760,41615368,41877512,42991624,43384840],"asconstructor":[15925253],"addrestrictedhostobject":[4325378,4653058,4718594,5505026,5701634,12648454,13172742,26083331,41418754,41615362,41877506,42991618,43384834],"accelerate":[29753345],"anonymous":[28770305,30212097,31588353,31981569,32636932,34734081,41418753,41615361,41877505,42991617,43384833],"applies":[6946817,8323073,9043969,35454977,41680897],"action":[6553601],"absolute":[3997697,4259841],"addtype":[851971,8126470,8454150,8519686,31129604,40435715],"attribute":[720900,1572868,1966084,2686980,2818052,2949124,27590658,28180482,28901378,29097986,30408706,31391746,37748748,39976961,40828937,41287692,41811977,42008588,43057160],"argument":[3014662,3407878,4849665,5242881,5832707,6553601,6946818,7012354,8060930,8323074,9043970,9437186,11796481,11993089,12124161,12451841,12582913,12976129,13369345,13697025,14811138,17629185,21364737,21561345,22020097,22478849,23461889,23527425,23724034,24903681,25034754,26935298,41025542,42926086],"affect":[42401793],"accelerated":[3342342,4653062,17170433,17301506,17367042,17956866,18284545,18350081,18415618,18481153,18546689,19070977,19791874,19857410,20250626,20840449,21168129,21430273,22609922,23265282,24510465,25755650,25886723,26148866,26804225,27525123,28049411,28508161,28573698,29294595,42139654,42991622],"accept":[14811137],"advantage":[25952257],"automatically":[1,14745601,14876673,18808833,41287681,42991617],"address":[31064065],"arra":[2097153,11010050,27131905,27918337,32374785,39583745,40239107],"assigning":[6553601,35717121,38010881],"attempting":[41877505],"arguments":[5832705,6094850,6225922,6291458,6422530,6553601,6619137,6881281,6946817,7012353,7143425,7274497,7405569,7471105,7536641,7602177,7667713,7733249,7995394,8060929,8454145,8519681,8585217,9240577,9371649,9633793,12058625,12189697,12255234,12386306,13041666,13238274,14352385,14811139,15925249,16711681,16777217,16908289,17039361,19005441,28770305,30212097,31588353,31981569,34734081,37158915,39256065,41418753,41615361,41877505,42991617,43384833],"api":[13762561,23527425,35913729,36110337,36634625],"attempt":[39059457],"assembly":[393217,851977,1114113,1245185,1310721,1441793,3014657,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4259841,4325378,4390913,4456449,4521985,4587521,4653058,4718594,4784129,4849665,4915202,4980737,5111809,5177345,5242881,5308417,5373953,5439489,5505026,5570562,5636097,5701634,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422531,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929870,7995393,8060929,8126465,8192001,8257537,8323074,8388609,8454147,8519681,8585217,8650753,8716292,8781825,8847374,8912897,8978439,9043969,9109505,9175041,9240577,9306116,9371649,9437186,9502721,9568257,9633793,9699329,9764871,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386307,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041667,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21823489,21889025,21954561,22020097,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23789569,23855105,24051713,24182785,24248321,24379393,24510465,24903681,24969218,25100289,25690113,25755649,25821185,25952257,26148865,26804225,26869761,27394049,27787265,28114945,28508161,28573697,29360129,29425665,29622273,29753349,29818881,30343176,30474241,30539777,30605313,30670849,30867457,31129601,31195137,31326209,31457281,31522817,31653889,31719425,31784961,31850498,31916033,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636930,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748741,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435725,40501249,40566785,40632321,40697857,40763393,40828933,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418755,41484289,41549825,41615363,41680897,41746433,41811969,41877507,41943041,42008577,42074114,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926082,42991619,43057153,43122689,43188225,43253761,43319297,43384835],"application":[17301505,17367041,17956865,18415617,18808833,19791873,19857409,20250625,22609921,23265281,25755649,26148865,28246017,28573697,29949953,42467329,42729473,43188225],"add":[851969,1441793,1507330,2228225,4849667,6881282,7012354,7143426,7405570,7471106,7602178,7536642,7667714,7733250,7929857,8126465,8454146,8519681,8585218,8716289,8847362,8978433,9240578,9306114,9371650,9568257,9633794,12517384,39387137,40173569,40435713,42532866],"addassembly":[851972,7929862,8716294,8847366,9306118,30343173,40435716],"accessible":[5439489,5898241,12648449,13172737,14811138,32636929,38731777,42532865],"activex":[3014659,4325392,4653072,4718608,4849666,5111809,5242882,5505040,5701648,6946817,11665409,11730945,11796481,11927553,11993089,12124161,12451841,12582913,12713985,12845057,12779521,12910593,12976129,13369345,13697025,14483457,28639240,29884424,41418768,41615376,41877520,42926083,42991632,43384848],"available":[14811137,28246017,29687810,29753346,29818881,29949953,31064065,31195137,31522817,33423361,33488897,33816577,35454977,36241409,40370177,42467329,42663938,42729473],"arraybuffer":[1703939,9961474,10813442,11862018,23986178,27131907,27197443,27918339,30277633,30998531,31653889,32047110,32833537,39583747,40239107,42795013,42860548,43122691]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_98.json b/docs/Reference/fti/FTI_98.json index 7d9814d06..9dc5aadc1 100644 --- a/docs/Reference/fti/FTI_98.json +++ b/docs/Reference/fti/FTI_98.json @@ -1 +1 @@ -{"boolean":[3801091,4456453,4587523,4653059,5701634,5832705,6094854,6225922,6356994,6553602,6684674,6946818,7602187,7798786,9175042,9306114,9502723,9764866,11599874,12124161,12320769,12451842,12713989,12845058,13107201,13565957,13959169,14614529,14680067,15073282,15269889,15532034,16187394,16580610,16908290,17104899,17367043,17825794,18219011,18415618,18808835,19398658,19988483,20054017,20250625,20316162,20381699,20578307,20774913,21102595,21364741,21495811,21561347,22216705,23330817,23396353,23592961,23789569,23855106,24248321,24379393,24510467,24772610,25296897,25559043,25821189,26148867,26279938,28114946,28835843,29294595,30212098,30343170,30670850,30801922,30867458,31457281,31784962,31850498,32047105,32178178,32374787,33816578,34078722,34209794,35061762,35586050,35717122,36438018,36896770,37158914,37879810,38010882,38404099,40042498,40828931,41549825,41811971,41943041,42139659,42401798,42532869,42729473],"begins":[6094850,7602178,15532033,16580609,17825793,20316161,20709377,25624578,35454978,42139650,42401794],"begincpuprofile":[6094850,7602178,15532038,16580614,17825798,20316166,25624579,35454979,42139650,42401794],"bar":[5308417,6750209],"baz":[5308417,6750210],"basic":[2424835,5177346,5242882,5439490,6160386,8781826,9699330,9895938,11862018,41943043],"beginning":[14942209],"blocked":[29622273,40960001,41287681,41746433],"byref":[9764867,17104898,17367042,18219010,18743298,18808834,19005442,19070978,19333122,19988482,20054018,20250626,20381698,20578306,20774914,21102594,21495810,21561346,22216706,22347778,22478850,23330818,23789570,24510466,25559042,40632322],"button":[4718595,5963779,38731779],"bytes":[1245186,1310722,1376258,1572866,2228226,9043972,9437188,10682372,12910596,28704769,30277633,31064065,31981569,32702465,33357829,33947649,34471937,34537473,34799617,35258369,35782657,35848193,36175875,36700161,36765697,37355521,37486595,38207489,39518209,39780357,39911425,40239105,40697857,42598403,42795011,42991619],"build":[17104897,17367041,18219009,18808833,19988481,20381697,20578305,21102593,21495809,21561345,24510465,25559041],"bailoutreason":[29687809,37224453,41025537],"bit":[5505025],"based":[1048577,1114113,14942209,27131905,27787265,27983873,28508161,29622273,29687810,29884417,32440321,33030145,33816579,38404097,38469633,40828929,40960001,41025538,41287681,41353217,41746433,41811969,42139649,42532865],"byte":[1245187,1310723,1376259,1572867,2228227,4128769,4784129,6094860,7602188,8912902,9043976,9437192,10682376,11337734,11730950,12910600,17104901,17367045,18219014,18743301,18808838,19005445,19070981,19333125,19988486,20054022,20250630,20381701,20578309,20774918,21102598,21495814,21561349,22216710,22347781,22478853,23330822,23789574,24510469,25559046,26148870,28835846,29294598,32374790,36175875,37486597,41680897,42139660,42401804,42598403,42795011,42926081,42991619],"box":[29097985],"breaking":[30801921,33947649,39518209,40239105,40697857],"bool":[5701635,6225923,6356995,6553603,6684675,6946819,7798787,9175043,9306115,9502723,9764868,11599876,12451843,12713987,12845060,13565955,14680067,15073283,15532035,16187395,16580611,16908291,17104899,17367043,17825795,18219011,18415619,18808835,19398660,19988483,20316163,20381699,20578307,21102595,21364740,21495811,21561347,23855107,24510467,24772612,25559043,25821188,26279939,30212100,30670853,30801925,30867461,31784965,31850501,32178181,33816581,34078725,34209797,35061764,35586053,35717125,36438021,36896773,37158917,37879813,38010885,40042499],"behavior":[2424842,31850497,33816577,36438017,39714817,41943050,42270721],"bound":[5570561,6029313,6291457,11403265,11468801,12058625,13041665,14024705,14745601,15794177,15990785,29622273,32833537,33030145,36306945,38600705,40960001,41287681,41746433,42532865],"braces":[4849665,5308417,11927553,11993089,12189697,12255233,12976129,13238273,13369345,13697025,21954561,22020097,23003137,23199745,25100289,26476545],"base":[11665409,12779521,24444929,27394049,38404097,42532865],"bidirectional":[42270721],"benefit":[42270721],"boundary":[6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,10092545,10223617],"binary":[2424833,30081025,41943041],"binding":[27131905,27787265,27983873,28508161,29622273,29884417,31850497,33030145,33816580,38404097,40828929,40960001,41287681,41746433,41811969,42139649,42532865],"behalf":[27131905,27983873,28770305,29884417,37814273,40173569,40828929,41811969,42532865,42729473,42860545],"bypassing":[3670017,3866625,4325377,4390913],"begin":[36634625],"blank":[30867457,34078721,34340866],"b6d1":[21954561,22020097,23003137,23199745,25100289,26476545]} \ No newline at end of file +{"bit":[5963777],"binary":[3211265,31457281,40763393],"breaking":[34865153,35913729,36634625,37486593,38076417],"benefit":[43188225],"bool":[5832707,6029315,6815747,7340035,8192003,9043971,9109507,9895939,10092548,10158083,10616836,10944516,11206659,13303811,13959171,14221315,14286851,15466499,15925251,16056323,16318467,16449539,17170435,18284547,18350083,18481155,18546691,18677764,19070979,19333123,19922947,20709380,20840451,21168131,21430275,21495811,23003140,24051715,24510467,25100292,25690115,26804227,28508163,29753349,32112644,32178181,32636933,32964612,33095685,33357829,33947653,34406405,34668549,34865157,35323909,36044803,36962309,37027845,37158917,37683205,37945349,38273029,39059461],"behavior":[3211274,32636929,35323905,37027841,40763402,41287681,43188225],"byref":[10616835,17170434,17301506,17367042,17956866,18284546,18350082,18415618,18481154,18546690,19070978,19791874,19857410,20250626,20840450,21168130,21430274,22609922,23265282,24510466,25755650,26148866,26804226,28508162,28573698,40960002],"boundary":[6881281,7143425,7405569,7471105,7602177,7536641,7667713,7733249,8585217,9240577,9371649,9633793],"boolean":[3342342,4325379,4653067,4718595,5505029,5701635,5832706,6029314,6094849,6815746,7340034,8192002,9043970,9109506,9895938,10092546,10158082,10616834,10944514,11206659,13303810,13631489,13828097,13893633,13959171,14221317,14286853,14680065,14745601,15138817,15466498,15925250,16056322,16318466,16449538,17170435,17956865,18284547,18350083,18415617,18481155,18546691,18677762,19070979,19333122,19857409,19922946,20447233,20709381,20840451,21168131,21430275,21495810,23003141,23265281,24051714,24444929,24510467,24576001,25100290,25165826,25690114,25886723,26148865,26279937,26476545,26607617,26804227,27066369,27525123,28049411,28508163,28573697,29294595,29753346,30015490,32112642,32178178,32636930,32964610,33095682,33357826,33947650,34406402,34668546,34865154,35323906,36044802,36962306,37027842,37158914,37683202,37945346,38273026,39059458,40173569,40763393,41418755,41615363,41877509,42139654,42401793,42991627,43384835],"binding":[28770305,30212097,31588353,31981569,34144257,34734081,35323905,35520513,37027844,40501249,40828929,41418753,41615361,41811969,41877505,42991617,43384833],"based":[196609,1245185,14811137,28770305,30081026,30212097,31588353,31981569,33423361,34144257,34734081,35520513,36241409,37027843,40304642,40501249,40828929,40894465,41418753,41615361,41811969,41877505,42991617,43384833],"bytes":[1703938,1769474,1835010,1900546,2097154,9961476,10682372,10813444,11534340,27131905,27197441,27918337,29491205,30277633,30998529,31653889,33292289,35586049,35913729,35979265,36438017,36569089,36634625,36700161,36896769,37224449,37421057,37486593,37814273,38076417,39583747,40239107,41156613,42795011,42860547,43122691],"begins":[3342338,4653058,16449537,19333121,19922945,24248321,24838146,25690113,26738690,42139650,42991618],"base":[12648449,13172737,23068673,26345473,41418753,41877505],"byte":[1703939,1769475,1835011,1900547,2097155,3014657,3342348,3407873,4653068,9633798,9830406,9961480,10682376,10813448,11534344,11862022,17170438,17301509,17367045,17956870,18284549,18350085,18415622,18481158,18546694,19070981,19791877,19857414,20250629,20840453,21168133,21430277,22609925,23265286,24510470,25755653,25886726,26148870,26804230,27525126,28049414,28508166,28573702,29294598,39583747,40239109,41025537,42139660,42795011,42860547,42926081,42991628,43122691],"beginning":[14811137],"bound":[6225921,6422529,7274497,12058625,12189697,12255233,12386305,13041665,13238273,16908289,19005441,34144257,35389441,35520513,35848193,39190529,40501249,40828929,41811969,41877505],"blocked":[34144257,40501249,40828929,41811969],"braces":[4849665,5242881,11796481,11993089,12124161,12451841,12582913,12976129,13369345,13697025,21364737,22020097,22478849,23461889,23527425,24903681],"behalf":[29032449,30212097,31981569,34734081,36765697,38928385,41615361,41877505,42401793,43319297,43384833],"bidirectional":[43188225],"begin":[39124993],"basic":[3211267,5308418,5439490,5636098,5898242,10485762,10747906,11272194,11468802,40763395],"build":[17170433,18284545,18350081,18481153,18546689,19070977,20840449,21168129,21430273,24510465,26804225,28508161],"bar":[4849665,7012353],"baz":[4849665,7012354],"button":[4915203,5570563,40435715],"begincpuprofile":[3342338,4653058,16449542,19333126,19922950,24838147,25690118,26738691,42139650,42991618],"box":[31064065],"b6d1":[21364737,22020097,22478849,23461889,23527425,24903681],"bailoutreason":[30081025,34471941,40304641],"blank":[34668545,37093378,38273025],"bypassing":[3932161,4063233,4521985,5177345]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_99.json b/docs/Reference/fti/FTI_99.json index 7531db83f..0ad9e0571 100644 --- a/docs/Reference/fti/FTI_99.json +++ b/docs/Reference/fti/FTI_99.json @@ -1 +1 @@ -{"cnn":[9306113],"constructor":[3407873,3473409,3604481,3735553,3997697,4259841,4980737,5111809,7274498,7471105,8192001,8257537,8847361,9371649,9502721,9568257,9830401,10027009,10485761,10551297,10747905,11796481,12517377,12582913,13172737,13565953,13631489,13762561,13893633,14155777,14352385,14483457,14876673,14942210,15204353,15335425,15663105,16252929,16318465,16384001,16449537,16646145,16908289,17301505,17432577,17498113,17629185,17694721,18153473,18284545,18350081,18546689,19136513,19267585,19464193,19529729,19595265,19791873,19922945,20119553,20643841,20840449,20971521,21168129,21233665,21430273,21823489,21889025,21954561,22020097,22085633,22282241,22740993,22806529,22872065,23003137,23134209,23199745,23658497,23920641,24117249,24576001,24838145,25100289,25231361,25362433,25493505,26017793,26214401,26476545,27000833,27066369,28246017,28377089,29032449,32047105,32899073,34406401,42729473],"comprise":[24444929,43122689],"change":[16973825,18874369,19857409,21757953,30801921,33947649,39518209,40239105,40697857],"containskey":[2031617,2162689,5046273,11599879,38731777,41549825,42074113],"childnodes":[29687809,39190533,41025537],"cpu":[1179649,6094852,7602180,15532034,16580610,17563649,17825794,18022402,18481153,20316162,22413314,25624578,26673157,27787265,31522817,34734081,35454978,38338562,39059458,39976961,40501249,41025537,41353217,41615361,42139653,42401797],"contextual":[11796481,15335425],"certain":[8257537,12124161,12320769,13107201,13500417,13565953,13959169,14548993,14614529,14680065,15269889,15466497,15728641,15859713,16777217],"clearscrip":[24444929,43122689],"clr":[4718596,5963778],"consuming":[6094854,7602182,17104897,17367041,18219009,18808833,19988481,20381697,20578305,21102593,21495809,21561345,24510465,25559041,26148867,28835843,29294595,32374787,42139654,42401798],"character":[24969217,27459585,30081026,33619969,35913729,42336257],"copies":[1245186,1310722,1376258,1572866,2228228,5046273,9043969,9437185,10682369,11075585,12910593,14417921,36175874,37486596,42074113,42598402,42795010,42991618],"compatibility":[6356994,32178177,33947649,39518209,40239105,40697857],"compiles":[6094857,7602185,16711681,17104897,17367041,17760257,17891329,18612225,18743297,18939905,19005441,19070977,19333121,19660801,20381697,20578305,21561345,22347777,22478849,24510465,29294601,32374793,42139657,42401801],"category":[851970,3670017,3801092,3866632,3932166,4194311,4325384,4456452,4587524,4653060,6094854,7602186,13959175,15269895,15466503,16777223,17104903,17891335,18612231,18743303,18939911,19070983,19660807,20381703,20578311,21561351,21626882,22347783,22478855,24444929,24641538,25690113,25886722,26607618,29294598,30146561,30736385,31260678,31653889,32374790,35389442,36044802,37617666,38404100,40108034,40370178,40828932,41811972,42139658,42401798,42532868],"code":[786433,917505,1441793,1507329,1638404,1703937,1900545,1966081,2424833,2752516,3014657,3145729,3801125,4128769,4456485,4587557,4653093,4718593,4784129,4849665,5177346,5242883,5308417,5439490,5505025,5570561,5832705,5898241,5963777,6029313,6160387,6356993,6488065,6750209,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7536641,7602213,7667713,7995393,8126465,8519681,8585217,8781825,8912897,8978433,9175041,9306115,9699329,9895937,10092545,10223617,10289153,10354689,10420225,10813441,10878977,10944513,11010049,11141121,11206657,11272193,11403266,11468802,11665410,11862017,11927553,11993089,12058626,12124169,12189697,12255233,12320778,12386305,12779522,12976129,13041666,13107202,13238273,13303809,13369345,13434881,13500425,13565966,13697025,13959170,14024706,14155777,14221313,14286849,14548993,14614539,14680074,14745602,14811137,14876673,14942212,15269890,15466497,15663105,15728648,15794178,15859722,15990786,16056326,16515078,16646145,16777217,16842753,17104897,17367041,18219015,18808839,19988487,20054022,20185094,20250630,20381697,20447233,20512769,20578305,20709377,20774918,21102599,21495815,21561345,21692422,22151169,22216710,22609928,23265286,23330822,23396353,23461890,23527432,23592964,23789574,24248324,24313858,24444937,24510465,24707078,25034754,25296900,25559047,25952264,26542082,26869761,27131908,27787267,27983876,28180481,28508163,28770305,29425666,29556737,29884420,30408705,30670849,30801921,30867458,30998532,31391745,31457284,31522817,31850497,32505857,33030145,34013187,34078722,34209793,35061761,35586051,37158913,37814273,38076417,38404136,38731777,38993924,39518213,39583748,39714818,40108033,40173569,40304641,40763394,40828969,40960002,41091073,41287682,41353217,41418755,41484289,41680898,41746435,41812009,41877508,41943041,42008578,42074113,42139689,42205186,42270721,42401793,42467330,42532906,42663937,42729475,42860545,42926082,43057153],"core":[4718594,5570561,5898241,5963778,7340033],"causes":[3801089,4456449,4587521,4653057,7602177,14090241,22937601,27721729,29556737,30408705,35848193,36896769,37879809,38404097,39911425,40304641,40828929,41091073,41811969,42139649,42532865],"consoles":[13434881,20447233,20512769,20709377],"control":[34471937,36765697],"connect":[1835009,5373957,39256065],"compare":[39714817],"collecting":[6094850,7602178,15532033,16580609,17825793,20316161,25624578,35454978,42139650,42401794],"comtype":[4784129,5308422,41680897],"continuationcallback":[24444929,27131905,27787265,27983873,28508161,29884417,36241420,38404097,40042502,40828929,41811969,42139649,42532865],"console":[4849665,8585218,9306113,10944513,13434881,20447233,20512769,20709377],"casts":[4128771,4784131,5505026,6488065,8060929,41680899,42926083],"callback":[851969,3801090,3866626,3932161,4194305,4456450,4587522,4653058,5898242,6094851,7340033,7602181,8585217,15269890,16777218,17104898,18743298,18939906,19070978,19660802,21561346,21626881,24641537,25886721,26607617,27131905,27787265,27983873,28049409,28508161,29294595,29884417,31588354,32243714,32374787,36044802,36241411,38404099,40108033,40632321,40828931,41811971,42139654,42401795,42532867],"cachebytes":[17104902,17367046,18219014,18743301,18808838,19005445,19070981,19333125,19988486,20054021,20250629,20381702,20578310,20774917,21102598,21495814,21561350,22216709,22347781,22478853,23330821,23789573,24510470,25559046],"convert":[2424833,5177345,5242881,5439489,6160385,6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8781825,8912897,8978433,9699329,9895937,10092545,10223617,11862017,20447233,20512769,20709377,41943041],"cached":[720897,3538945,41156609],"consolet":[4849666,8585218,9306116,10944514],"class":[196609,262146,327681,393217,458753,524289,589825,655362,720897,851969,917508,983041,1441796,1638401,1703940,1769473,1835009,1900548,1966084,2031617,2097153,2162689,2293762,2359297,2490369,2424842,2555905,2621441,2752513,2818049,2883585,2949121,3145732,3211266,3276801,3342337,3407873,3538945,3604481,3670017,3801113,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456473,4521985,4587545,4653081,4718593,4784129,4849667,4915204,4980737,5111809,5177345,5242881,5308420,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488068,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274498,7340033,7405569,7471105,7536641,7602201,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9109505,9175041,9240577,9306113,9371649,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10551297,10616833,10747905,10813445,10878981,10944513,11010049,11141125,11206661,11272197,11403265,11468801,11534337,11599873,11665410,11796481,11862017,11927556,11993092,12058625,12124161,12189700,12255236,12320769,12386305,12451841,12517377,12582913,12713985,12779522,12845057,12976132,13041665,13107201,13172737,13238276,13303809,13369348,13434881,13500417,13565953,13631489,13697028,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221317,14286853,14352385,14483457,14548993,14614529,14680065,14745601,14811141,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954563,22020099,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609933,22675457,22740993,22806529,22872065,22937601,23003139,23068673,23134209,23199747,23265281,23330817,23396353,23461889,23527437,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100291,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083330,26148865,26214401,26345473,26411010,26476547,26542081,26673153,26738689,26804225,26869761,26935298,27000833,27066369,27131905,27262977,27328513,27394049,27459585,27525121,27590657,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28246017,28311553,28377089,28508161,28573697,28835841,28901377,28966913,29032449,29163521,29294593,29360129,29491201,29556737,29622273,29687809,29753345,29884417,29949953,30015490,30081025,30146561,30343169,30408705,30474241,30539777,30605314,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31391746,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,32047105,32112641,32178177,32374785,32440321,32505857,32571393,32636929,32768001,32833537,32899073,32964609,33030145,33095681,33226753,33357825,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34209793,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35127297,35192833,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913733,35979265,36044806,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617669,37683201,37748741,37814273,37879809,37945345,38010881,38076421,38141953,38207489,38273030,38338561,38404125,38469633,38600705,38666241,38731781,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256069,39387137,39452673,39518209,39583749,39649281,39714825,39780357,39845889,39911425,39976965,40108033,40239105,40304646,40370181,40435713,40501249,40566789,40697857,40763405,40828957,40894465,40960013,41025541,41091078,41156613,41222151,41287693,41353217,41418761,41484289,41549829,41615365,41680901,41746433,41811997,41877509,41943054,42008589,42074113,42139678,42205185,42270721,42336261,42401797,42467329,42532893,42598401,42663942,42729473,42795009,42860545,42926085,42991617,43057153,43122693],"contained":[28442625,42074113],"contain":[4718593,5963777,8847361,9371649,9830401,10551297,15925249,29097985],"contextcallback":[3866629,3932165,4194310,15269893,16777221,17104901,18743301,18939909,19070981,19660805,21561349,26607617,28049409,31588358,32243717,36044801,40108033],"coded":[29556737,30408705,40304641,41091073],"caused":[10027009,13762561,29229057,29425666,29556738,30408706,31129601,32309249,32964609,40304642,41091074,42467330],"configuratio":[3670017,3866625,4325377,4390913],"callable":[5570561,6029313,6291457,7077889,7274497,7929857,8257537,10813441,10878977,11010049,11141121,11206657,11272193,11403265,11468801,11665409,11927553,11993089,12058625,12189697,12255233,12779521,12976129,13041665,13238273,13369345,13697025,14024705,14221313,14286849,14745601,14811137,14942209,15794177,15990785,24444930,41680897,42926081],"caching":[26673153,38993923],"canceled":[30408705,41091073],"copied":[9043970,9437186,10682370,11075586,12910594,14417922],"constraints":[17301511,17498119,17629191,18546695,19529735,19791879,20840455,21823495,21889031,22872071,24117255,24576007,25362438,26673153,34406406,35848193,38076417,39911425,42139654,42401798],"components":[7143427],"compiled":[2818049,6094857,7602187,16056322,16515074,16711682,17104898,17367042,17760258,17891330,18219011,18612226,18743298,18808834,18939906,19005442,19070978,19333122,19660802,19726338,19988482,20054019,20185090,20250627,20381698,20578306,20774914,21102594,21495810,21561346,21692419,22216706,22347778,22478850,23265283,23330818,23396354,23789570,24248321,24510466,24707074,25165829,25559043,26148873,26673153,26738690,28835849,31457281,38666241,39452673,40566788,42139659,42401801],"cache":[6094860,7602188,10420225,17104900,17367044,18219012,18743300,18808836,19005444,19070980,19333124,19988484,20054020,20250628,20381700,20578308,20774916,21102596,21495812,21561348,22216708,22347780,22478852,23330820,23789572,24510468,25559044,26148870,28835846,29294598,32374790,38993926,42139660,42401804],"cachekind":[17104901,17367045,18219013,18743301,18808837,19005445,19070981,19333125,19988485,20054021,20250629,20381701,20578309,20774917,21102597,21495813,21561349,22216709,22347781,22478853,23330821,23789573,24510469,25559045],"compliance":[42729473],"cleared":[196609,589825,983041,38731777,41549825],"convenient":[4718593,5963777,13565953,38731777],"conversion":[2424833,41943041,42270722],"correspond":[32833537,36306945,38600705],"collects":[6094849,7602177,17563649,18481153,42139649,42401793],"catch":[9306113],"callbackt":[5898242],"converts":[1638404,2752516,4128780,4784140,5177345,5242881,5439489,6160385,6881282,7012354,7208962,7405570,7536642,7995394,8126466,8519682,8781825,8912898,8978434,9699329,9895937,10092546,10223618,11862017,25034754,26542082,30998532,39583748,41680908,41877508,42926092],"common":[24444929,25427970,36175873,42467329,42795009],"collection":[196609,327681,458753,589825,720897,786433,851969,917505,983041,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162697,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801090,4128769,4456450,4587522,4653058,4718603,4784130,4915201,5046273,5963778,6094850,7602178,8192001,8323073,8388609,8454145,8650753,8716289,8847362,9109505,9240577,9371650,9830402,9961473,10551298,12451842,16842754,18415618,19398658,23068673,24444930,24772610,24903684,26345475,27590658,28311553,28377093,29556737,29687810,29949954,30408705,34996225,35192833,35913729,36044801,36503553,37421057,37617665,37748737,38076417,38273025,38404098,38535169,38731796,39190529,39256065,39714817,39780353,39976962,40108033,40304642,40501249,40566785,40763393,40828930,40960001,41025539,41091074,41156609,41222145,41287681,41353217,41418753,41549828,41615361,41680898,41811970,41943041,42008577,42074115,42139650,42336257,42401794,42532866,42663937,42926081],"catchfunc":[9306120],"configuration":[851972,3670018,3866626,4325378,4390914,21626884,24444930,36044805,43122689],"collections":[4718594,5963778,6029314,6750209,6881281,7012353,7208961,7405569,7536641,7995393,8126465,8519681,8912897,8978433,10092545,10223617,14942209,38731778],"creates":[327681,458753,720897,786433,851969,917505,1245185,1310721,1376257,1441793,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228226,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801097,4128780,4456457,4587529,4653065,4784139,4849666,5832706,5898241,6094864,6750209,7077890,7143425,7274498,7340034,7602194,7667715,7929857,8257537,8585218,10813441,10878977,11206657,11337729,11730945,11927553,11993089,12648449,12976129,13238273,14286849,16056321,16515073,16973825,17956865,18219009,18808833,18874369,19857409,19988481,20054017,20185089,20250625,20774913,20905985,21102593,21495809,21692417,21757953,22216705,22609928,23265281,23330817,23789569,23986178,24707073,25559041,25755651,26148873,27525122,28835849,33488902,35913729,36044801,36175873,37486594,37617665,37748737,38076417,38273025,38404105,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828937,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680907,41811977,41943041,42008577,42139666,42336257,42401808,42532873,42598401,42663937,42795009,42926092,42991617],"converting":[13434881,20447233,20512769,20709377],"checkaccess":[4456449,4587521,4653057,23855109,40828929,41811969,42532865],"constructed":[42270721],"created":[15532033,16580609,16973825,17825793,17956865,18022401,18874369,19857409,19922945,20119553,20316161,20840449,20905985,20971521,21757953,21823489,21889025,22413313,22740993,22872065,23658497,24117249,24576001,25493505],"call":[1179649,3801089,4456449,4587521,4653057,5177346,5242882,5439490,5898241,6160386,7602177,8781826,9699330,9895938,11534337,11862018,13303810,14942210,16842754,17235969,22151170,25165825,26673153,26869762,28311553,29556737,29622274,30408705,30474241,33030146,33226753,34471937,34734081,36765697,36831233,38404097,39976961,40304641,40828929,40960002,41025537,41091073,41287682,41615361,41746434,41811969,42139649,42532865,42663937],"corporation":[196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"considered":[36634625],"controls":[27131905,27787265,27983873,28508161,29884417,35586049,38404097,40828929,41811969,42139649,42532865],"comparison":[35717122,39714817,41484290],"char":[4128769,4784129,9043969,9437185,10223622,10682369,11337729,11730945,12910593,17104897,17367041,18219009,18743297,18808833,19005441,19070977,19333121,19988481,20054017,20250625,20381697,20578305,20774913,21102593,21495809,21561345,22216705,22347777,22478849,23330817,23789569,24510465,25559041,37486593,41680897,42926081],"conversions":[13565953],"child":[29687809,39190530,41025537],"copyto":[5046273,42074113],"context":[851969,3801090,3866626,3932161,4194305,4456450,4587522,4653058,6094851,7602181,10616838,11796485,15007750,15269890,15335429,16777218,17104898,18743298,18939906,19070978,19660802,21561346,21626881,24444929,24641537,25886721,26607617,28049409,29294595,31588355,32243715,32374787,36044802,38404098,38535170,40108033,40828930,41811970,42139653,42401795,42532866],"create":[393217,524289,4718593,4849665,5308417,5570561,5832705,5898243,5963777,6029314,6750210,6881281,7012353,7077889,7143426,7208961,7274497,7340035,7405569,7536641,7995393,8126465,8257537,8519681,8585218,8912897,8978433,9306113,10092545,10223617,10813441,10878977,12976129,13238273,13565953,40304641,41091073],"clearscript":[131073,65537,196610,262146,327682,393218,458754,524290,589826,655365,720898,786434,851970,917506,983045,1048578,1114117,1179653,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2228226,2162690,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407878,3473413,3538949,3604485,3670022,3735557,3801090,3866631,3932168,3997701,4063237,4128770,4194312,4259845,4325382,4390917,4456450,4521989,4587522,4653058,4718598,4784130,4849669,4915205,4980741,5046274,5111813,5177350,5242886,5308421,5373957,5439493,5505029,5570565,5636102,5701637,5767173,5832709,5898245,5963781,6029317,6094850,6160389,6225925,6291461,6356997,6422533,6488069,6553605,6619141,6684677,6750213,6815750,6881285,6946821,7012357,7077893,7143429,7208965,7274501,7340037,7405573,7471109,7536645,7602178,7667717,7733253,7798790,7864325,7929861,7995397,8060933,8126469,8192005,8257541,8323077,8388613,8454149,8519685,8585221,8650757,8716293,8781829,8847365,8912901,8978437,9043973,9109509,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699334,9764869,9830405,9895941,9961477,10027013,10092549,10158085,10223621,10289157,10354693,10420230,10485765,10551301,10616837,10682373,10747909,10813445,10878982,10944517,11010053,11075589,11141126,11206662,11272197,11337733,11403270,11468805,11534341,11599877,11665413,11730949,11796485,11862022,11927557,11993094,12058630,12124166,12189701,12255238,12320773,12386309,12451845,12517381,12582917,12648453,12713989,12779526,12845061,12910597,12976133,13041669,13107205,13172741,13238278,13303813,13369349,13434885,13500421,13565959,13631493,13697030,13762565,13828101,13893638,13959174,14024710,14090245,14155782,14221318,14286853,14352389,14417925,14483461,14548997,14614533,14680069,14745605,14811141,14876677,14942215,15007749,15073285,15138821,15204358,15269895,15335429,15400965,15466502,15532037,15597573,15663110,15728646,15794181,15859717,15925253,15990790,16056326,16121861,16187397,16252935,16318469,16384005,16449541,16515077,16580614,16646151,16711685,16777223,16842757,16908293,16973830,17039365,17104904,17170437,17235973,17301510,17367046,17432582,17498119,17563653,17629190,17694725,17760261,17825798,17891334,17956869,18022405,18087941,18153478,18219014,18284550,18350086,18415621,18481157,18546695,18612230,18677765,18743304,18808838,18874374,18939911,19005446,19070984,19136518,19202053,19267590,19333126,19398661,19464197,19529735,19595269,19660807,19726342,19791879,19857414,19922950,19988486,20054022,20119558,20185094,20250630,20316165,20381703,20447237,20512773,20578311,20643846,20709381,20774918,20840455,20905989,20971525,21037061,21102599,21168130,21233669,21299205,21364741,21430277,21495815,21561352,21626882,21692421,21757958,21823495,21889030,21954566,22020102,22085638,22151173,22216710,22282246,22347783,22413317,22478855,22544386,22609922,22675458,22740998,22806533,22872071,22937605,23003142,23068674,23134213,23199750,23265285,23330823,23396358,23461890,23527426,23592962,23658501,23724034,23789575,23855109,23920646,23986178,24051714,24117255,24182786,24248322,24313858,24379394,24444931,24510470,24576006,24641538,24707077,24772613,24838146,24903682,24969218,25034754,25100294,25165829,25231362,25296898,25362434,25427971,25493510,25559046,25624578,25690114,25755650,25821189,25886722,25952258,26017794,26083330,26148866,26214402,26279941,26345474,26411010,26476550,26542082,26607618,26673155,26738690,26804226,26869765,26935298,27000834,27066370,27131906,27197445,27262981,27328514,27394051,27459586,27525122,27590658,27656197,27721733,27787266,27852805,27918338,27983874,28049410,28114946,28180485,28246018,28311554,28377090,28442626,28508162,28573698,28639237,28704773,28770306,28835842,28901378,28966917,29032450,29097985,29163525,29229061,29294594,29360130,29425666,29491205,29556738,29622277,29687810,29753349,29818885,29884418,29949954,30015490,30081029,30146565,30212101,30277634,30343170,30408706,30474242,30539781,30605314,30670853,30736389,30801927,30867461,30932994,30998530,31064066,31129605,31195141,31260677,31326213,31391746,31457282,31522818,31588357,31653893,31719429,31784965,31850501,31916037,31981570,32047106,32112645,32178182,32243717,32309253,32374786,32440326,32505858,32571397,32636933,32702466,32768005,32833541,32899074,32964613,33030149,33095682,33161221,33226757,33292293,33357826,33423365,33488898,33554437,33619973,33685509,33751045,33816581,33882117,33947654,34013189,34078725,34144261,34209797,34275333,34340869,34406402,34471941,34537474,34603013,34668549,34734085,34799621,34865157,34930693,34996229,35061765,35127301,35192837,35258373,35323909,35389442,35454978,35520517,35586053,35651589,35717125,35782661,35848197,35913735,35979269,36044806,36110341,36175877,36241413,36306949,36372485,36438023,36503557,36569093,36634629,36700165,36765701,36831237,36896773,36962309,37027845,37093381,37158917,37224453,37289989,37355525,37421061,37486597,37552133,37617670,37683205,37748742,37814277,37879813,37945349,38010885,38076422,38141957,38207493,38273031,38338565,38404104,38469638,38535174,38600709,38666245,38731783,38797317,38862853,38928389,38993925,39059461,39124997,39190533,39256070,39321611,39387141,39452677,39518214,39583750,39649285,39714823,39780358,39845893,39911429,39976966,40042501,40108037,40173573,40239110,40304646,40370182,40435717,40501253,40566790,40632326,40697862,40763399,40828936,40894469,40960007,41025542,41091078,41156614,41222150,41287687,41353221,41418759,41484293,41549831,41615366,41680903,41746437,41811976,41877510,41943046,42008584,42074117,42139655,42205189,42270725,42336263,42401798,42467333,42532873,42598405,42663943,42729478,42795013,42860549,42926087,42991621,43057157,43122694],"componentmodel":[983041],"client":[9306113],"cacheaccepted":[17104901,17367045,18219013,18808837,19988485,20381701,20578309,21102597,21495813,21561349,24510469,25559045],"compilation":[17104897,17367041,18219009,18808833,19988481,20381697,20578305,21102593,21495809,21561345,24510465,25559041,26673153,38993923],"com":[3080193,3801104,4456464,4587536,4653072,4784130,4849666,5308418,7143425,7602192,8257537,9306113,10813441,10878977,11141121,11206657,11272193,11927553,11993089,12189697,12255233,12976129,13238273,13369345,13697025,14221313,14286849,14811137,22609928,23527432,27197442,38141953,38404112,40828944,41680898,41811984,42139664,42532880,43057153],"cleaning":[9306113],"contexts":[5832705,7340033,8585217,13565953,13631489,14614529,14680065,15859713,16384001,17629185,17956865,18153473,18219009,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20054017,20250625,20643841,20971521,21692417,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23265281,23920641,24117249,25100289,25493505,25559041,26476545,36438017],"collector":[11534337,16842753,17235969,25165825],"commonjs":[30736390,31588353,32243713,35389442,40370178],"case":[20709377],"converted":[42729473],"collect":[15532033,16580609,17825793,20316161],"copyright":[196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"collectgarbage":[3801089,4456450,4587521,4653057,6094849,7602178,12451845,18415621,19398662,24772614,38404097,40828929,41811969,42139650,42401793,42532866],"constructors":[35913729,36044801,38076417,38404097,38731777,39714817,40108033,40304641,40763393,40828929,40960001,41091073,41156609,41287681,41418753,41549825,41680897,41811969,42008577,42139649,42336257,42401793,42532865,42926081],"currently":[1638402,2752514,5439489,6160385,8781825,9895937,13565953,13631489,14614529,14680065,15859713,16384001,17629185,17956865,18153473,18219009,18546689,18874369,19267585,19529729,19595265,19857409,19922945,20054017,20250625,20643841,20971521,21692417,21889025,21954561,22020097,22806529,22872065,23003137,23134209,23199745,23265281,23920641,24117249,25034753,25100289,25493505,25559041,26476545,26542081,30867457,30998530,32243713,34078721,39583746,41877506,43057153],"combination":[3670017,3866625,4325377,4390913],"calculate":[5898241],"containing":[1245185,1310721,1376257,1572865,2228226,3866625,3932161,4194305,4325377,4390913,7143425,11337730,11730946,12124161,12648450,15728641,15925249,16056321,18350082,18677761,20185089,21102593,21299201,21495809,23330817,23789569,24969217,27459585,28442626,29687810,31195137,34603009,35913729,36175873,37486594,38535170,40435713,40632321,40894465,41025538,42074114,42336257,42598401,42795009,42991617],"cleanup":[327681,458753,720897,786433,851969,917505,1441793,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2293761,2359297,2424833,2490369,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3801089,4128769,4456449,4587521,4653057,4784129,6094849,7602177,9306113,16842753,35913729,36044801,37617665,37748737,38076417,38273025,38404097,38731777,39256065,39714817,39780353,39976961,40108033,40304641,40566785,40763393,40828929,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41549825,41615361,41680897,41811969,41943041,42008577,42139649,42336257,42401793,42532865,42663937,42926081],"completeness":[12451841,18415617,19398657,24772609],"contravariance":[5832705,7340033,8585217],"command":[3801089,4456449,4587521,4653057,7602177,13434892,20447244,20512780,20709390,38404097,40828929,41811969,42139649,42532865],"called":[10420225,12713985,14090241,21364737,22937601,24444930,25821185,27721729,28049409,33751041,36044801,40632321,42205185],"connection":[5373953,16973825,17498113,19136513,19267585,19529729,19857409,19922945,20119553,21823489,24117249,24444929,37748737,42270721],"comments":[196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19136513,19070977,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31916033,31850497,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689],"checking":[2031619,2162691,9175041,10289153,10354689,38731779,41549827],"compatible":[4128769,4784129,6356994,41680897,42926081],"categories":[25427969,40370177],"compile":[6094857,7602185,16056327,16515079,18219016,18808840,19988488,20054024,20185095,20250632,20774920,21102600,21495816,21692423,22216712,23265287,23330824,23789576,24707079,25559048,26148874,28835850,42139657,42401801],"calls":[7274497],"caches":[3932161,4194305],"customize":[13434881,20447233,20512769,20709377],"columnnumber":[29687809,32440325,41025537],"custom":[2424833,36044801,41943041],"cast":[4128770,4784130,5505034,6488068,8060929,41680898,42926082],"cstr":[20709377],"calling":[1638402,2424833,2752514,4456450,4587522,4653058,5439489,6160385,8781825,9502721,9895937,11534337,17235969,21037057,23855106,25034753,25165825,26542081,30998530,39583746,40828930,41811970,41877506,41943041,42139649,42532866],"classes":[2424841,13565953,24444929,25427969,26673153,27394049,40763393,40960001,41943049],"check":[29097985],"createscriptengine":[6094854,16973830,17956870,18874374,19857414,20905990,21757958,33488903,42401798],"cancellationtoken":[30408705,41091073],"copy":[327681,458753,655361,720897,786433,851969,917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228226,2162689,2293761,2359297,2490369,2424833,2555905,2621441,2818049,2883585,2949121,3014657,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718594,4784129,4849666,4915201,4980737,5111809,5177345,5242881,5308418,5373953,5439489,5505026,5570562,5636097,5701633,5767169,5832705,5898242,5963778,6029315,6094849,6160385,6225921,6291457,6356994,6422529,6488066,6553601,6619137,6684673,6750210,6815745,6881282,6946817,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471105,7536642,7602177,7667714,7733249,7798785,7864321,7929857,7995394,8060929,8126466,8192001,8257537,8323073,8388609,8454145,8519682,8585218,8650753,8716289,8781825,8847361,8912898,8978434,9043972,9109505,9175041,9240577,9306114,9371649,9437188,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092546,10158081,10223618,10289153,10354689,10420225,10485761,10551297,10616833,10682372,10747905,10813441,10878977,10944514,11010049,11075588,11141121,11206657,11272193,11337731,11403265,11468801,11534337,11599873,11665409,11730947,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386306,12451841,12517377,12582913,12648451,12713985,12779521,12845057,12910596,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417924,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21495809,21561345,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23658497,23789569,23855105,23920641,24117249,24510465,24576001,24707073,24772609,25100289,25165825,25493505,25559041,25821185,26279937,26476545,26869761,27197441,27262977,27656193,27721729,27852801,28180481,28639233,28704769,28966913,29163521,29229057,29491201,29622273,29753345,29818881,30081025,30146561,30212097,30539777,30670849,30736385,30801921,30867457,31129601,31195137,31260673,31326209,31588353,31653889,31719425,31784961,31850497,31916033,32112641,32178177,32243713,32309249,32440321,32571393,32636929,32768001,32833537,32964609,33030145,33161217,33226753,33292289,33423361,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34471937,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35520513,35586049,35651585,35717121,35782657,35848193,35913730,35979265,36044802,36110337,36175874,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486595,37552129,37617666,37683201,37748738,37814273,37879809,37945345,38010881,38076418,38141953,38207489,38273026,38338561,38404098,38469633,38535169,38600705,38666241,38731778,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256066,39387137,39452673,39518209,39583745,39649281,39714818,39780354,39845889,39911425,39976962,40042497,40108034,40173569,40239105,40304642,40370177,40435713,40501249,40566786,40632321,40697857,40763394,40828930,40894465,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484289,41549826,41615362,41680898,41746433,41811970,41877505,41943042,42008578,42074113,42139650,42205185,42270721,42336258,42401794,42467329,42532866,42598402,42663938,42729473,42795010,42860545,42926082,42991618,43057153,43122689],"contents":[1245185,1310721,1376257,1572865,2228226,3866630,4325382,4390918,11337730,11730946,12648450,18350086,24969217,27459586,28966917,32571398,35913729,36175873,37486594,42336258,42598401,42795009,42991617],"contains":[393217,524289,2031617,2162689,4718593,5046275,5570561,5636097,5767169,5963777,6422529,6553601,6684673,6815745,7733249,7798785,7864321,8323073,8388609,8650753,8716289,9109505,11599874,13041665,14024705,24444930,25427969,26673154,27394049,30081025,35192833,37421057,38731778,39321604,39780353,40108033,40304641,41091073,41549825,42074115],"corresponding":[4718593,5570561,5898242,5963777,6029313,6291457,11403265,11468801,12058625,13041665,14024705,14745601,15794177,15990785,38731777],"compiledocument":[6094857,7602185,16711686,17104902,17367046,17760262,17891334,18612230,18743302,18939910,19005446,19070982,19333126,19660806,20381702,20578310,21561350,22347782,22478854,24510470,29294602,32374794,42139657,42401801],"coordinated":[42270721],"completes":[6094849,7602177,18022401,22413313,42139649,42401793],"completed":[3932161,4194305,9306113,18022401,22413313],"completion":[3932161],"clearnocheck":[2031617,2162689,9502721,10354693,38731777,41549825],"cpuprofilesampleinterval":[27787265,31522817,38338565,39059461,42139649,42401793],"correct":[14942209,30801921,31850497,42532865],"clean":[9306113],"clsid":[3801096,4456456,4587528,4653064,4849665,5308417,7602184,10813447,10878983,11141127,11206663,11272199,11927553,11993089,12189697,12255233,12976129,13238273,13369345,13697025,14221319,14286855,14811143,21954561,22020097,22609924,23003137,23199745,23527428,25100289,26476545,38404104,40828936,41811976,42139656,42532872],"clear":[5046273,42074113],"contact":[131073],"current":[327684,458756,720900,786434,851972,917507,1179649,1441795,1703939,1769476,1835012,1900547,1966083,2031620,2097156,2162692,2293764,2359300,2424836,2490372,2555908,2621444,2818052,2883588,2949124,3014658,3145731,3211268,3276804,3342340,3801092,4128772,4456454,4587526,4653062,4784132,4849665,6094852,6750209,7602180,10027009,10158082,13762561,13828098,14942209,15138818,16973825,18874369,19857409,21037057,21757953,23855106,27131905,27262978,27983873,28508162,29229057,29425667,29556741,29884417,30408709,30670849,31129601,31850497,32309249,32964609,34013185,35061761,35586049,35913732,36044804,36896769,36962305,37093384,37158913,37617668,37748740,37879809,38076420,38273028,38404102,38731780,39256068,39714819,39780356,39976964,40108034,40304649,40566788,40763395,40828935,40960003,41025540,41091081,41156612,41222148,41287683,41353218,41418755,41549828,41615364,41680900,41811975,41943044,42008579,42139652,42336260,42401796,42467331,42532871,42663940,42729473,42926084],"creating":[16580609,17825793,26673153,40501249],"consecutive":[27787265,31522817,34865153,35520513,42139649,42401793],"column":[29687809,32440322,41025537],"continue":[24444929,36241409,40042498],"collectcpuprofilesample":[6094849,7602177,17563653,18481157,42139649,42401793],"consumed":[17104897,17367041,18219009,18808833,19988481,20381697,20578305,21102593,21495809,21561345,24510465,25559041,38993921],"cause":[2293761,3211265,34471937,35848193,36765697,39911425,40304641,41091073],"compiling":[30867457,34078721],"caught":[9306113],"continues":[36438017],"connects":[1835009,5373953,39256065],"count":[1048577,1179649,9043973,9437189,10682373,12910597,28442625,29687809,34734081,41025537,41353217,42074113]} \ No newline at end of file +{"continue":[23068673,32571393,36044802],"constructed":[43188225],"containskey":[851969,1507329,2228225,10092551,40173569,40435713,42532865],"copy":[262145,393217,524289,655361,720897,786433,851969,917505,1114113,1179649,1245185,1310721,1376257,1441793,1572865,1703937,1769473,1835009,1900545,1966081,2097154,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849666,4915202,4980737,5046273,5111809,5177345,5242882,5308417,5373953,5439489,5505025,5570562,5636097,5701633,5767169,5832705,5898241,5963778,6029314,6094849,6160386,6225923,6291458,6356994,6422530,6488066,6553602,6619137,6684673,6750210,6815745,6881282,6946817,7012354,7077889,7143426,7208961,7274497,7340033,7405570,7471106,7602178,7536642,7667714,7733250,7798785,7864321,7929857,7995394,8060930,8126465,8192001,8257537,8323074,8388609,8454145,8519681,8585218,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240578,9306113,9371650,9437186,9502721,9568257,9633794,9699329,9764865,9830403,9895938,9961476,10027009,10092545,10158081,10223620,10289156,10354689,10420225,10485761,10551297,10616833,10682372,10747905,10813444,10878977,10944513,11010051,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534340,11599873,11665409,11730945,11862019,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21823489,21889025,21954561,22020097,22282241,22347777,22413313,22478849,22544385,22609921,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23789569,23855105,24051713,24182785,24248321,24379393,24510465,24903681,25100289,25690113,25755649,25821185,25952257,26148865,26804225,26869761,27394049,28114945,28508161,28573697,29360129,29425665,29622273,29753345,29818881,30474241,30539777,30605313,30670849,30867457,31195137,31326209,31457281,31522817,31653889,31719425,31784961,31916033,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748738,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797314,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39518209,39583746,39649281,39714817,39780353,39845890,39911426,39976961,40042497,40108034,40173570,40239107,40304642,40370177,40435714,40501249,40566785,40632322,40697858,40763394,40828930,40894466,40960001,41025538,41091074,41156610,41222145,41287682,41353218,41418754,41484289,41549826,41615362,41680897,41746434,41811970,41877506,41943042,42008578,42074113,42139650,42205186,42270722,42336258,42401793,42467330,42532865,42598401,42663937,42729474,42795010,42860546,42926082,42991618,43057154,43122690,43188225,43253762,43319297,43384834],"compatibility":[6029314,29753345,35913729,36634625,37486593,38076417],"contains":[851969,1507331,1638401,2228225,4128769,4915201,5570561,6422529,6815745,7077889,7208961,7340033,7798785,7929857,8192001,8454145,8650753,8716289,8781825,8847361,9175041,9306113,10092546,12386305,13041665,23068674,23986177,25231362,26345473,31457281,35258369,38993921,39387140,40173569,40435714,40632321,41156609,42467329,42532867,42729473],"compiles":[3342345,4653065,16580609,16842753,17301505,17367041,17563649,18153473,18284545,18350081,19070977,19267585,19791873,20185089,20250625,20840449,21168129,21430273,22609921,25755649,27525129,29294601,42139657,42991625],"core":[4915202,5570562,6291457,6422529,6553601],"contextual":[11337729,14942209],"compare":[41287681],"catch":[9895937],"categories":[23986177,40042497],"controls":[28770306,30212098,31588354,31981570,33357825,34734082,39059457,41418754,41615362,41877506,42991618,43384834],"completion":[4259841],"clsid":[4325384,4653064,4718600,4849665,5242881,5505032,5701640,11665415,11730951,11796481,11927559,11993089,12124161,12451841,12582913,12713991,12845063,12779527,12910599,12976129,13369345,13697025,14483463,21364737,22020097,22478849,23461889,23527425,24903681,28639236,29884420,41418760,41615368,41877512,42991624,43384840],"contexts":[6094849,6291457,7995393,13762561,13959169,14221313,14548993,15138817,17104897,17694721,17891329,18022401,18087937,18546689,19136513,19202049,19398657,19464193,19857409,19988481,20905985,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22806529,22872065,22937601,23199745,23396353,23461889,23527425,24182785,24903681,25821185,26804225,28573697,32636929],"createscriptengine":[3342342,17498118,18022406,18612230,19464198,20512774,22937606,28311559,42139654],"common":[23068673,23986178,39583745,42663937,42860545],"clear":[1507329,42532865],"clean":[9895937],"certain":[6946817,13500417,13631489,13828097,13893633,13959169,14024705,14221313,14417921,14680065,14745601,14876673,15138817,16187393,17891329],"collecting":[3342338,4653058,16449537,19333121,19922945,24838146,25690113,26738690,42139650,42991618],"creating":[19333121,25231361,25690113,41484289],"call":[393217,4325377,4653057,4718593,5308418,5439490,5505025,5636098,5701633,5898242,6553601,10485762,10747906,11272194,11468802,13434881,14811138,18808834,18939905,19726338,20381698,20971521,23855106,25231361,28246017,28835841,29949953,30736385,34144258,34603009,35520514,36896769,37421057,38535169,39321601,40304641,40501250,40828930,41091073,41353217,41418753,41615361,41811970,41877505,42467329,42729473,42991617,43253761,43384833],"constraints":[17825799,18087943,18219015,18743303,19202055,19398663,20774919,21233671,21626887,21954567,22872071,25231361,25821191,26214406,27459590,35979265,36700161,39911425,42139654,42991622],"comprise":[23068673,42074113],"create":[1638401,4128769,4849665,4915201,5242881,5570561,6094849,6160386,6225922,6291459,6422529,6553603,6750209,6881281,6946817,7012354,7143425,7405569,7471105,7602177,7536641,7667713,7733249,7995394,8060929,8585217,9240577,9371649,9633793,9895937,11665409,11796481,12779521,13697025,14221313,42467329,42729473],"correct":[14811137,34865153,35323905,41877505],"comtype":[3014657,4849670,42926081],"configuratio":[3932161,4063233,4521985,5177345],"corresponding":[4915201,5570561,6225921,6422529,6553602,7274497,12058625,12189697,12255233,12386305,13041665,13238273,16908289,19005441,40435713],"calling":[327682,2031618,3211265,4718594,5505026,5636097,5701634,5898241,11206657,11272193,11468801,13434881,18939905,20971521,22282241,22740993,24051714,26542081,32899074,39518210,39714818,40763393,41615362,41877506,42991617,43384834],"corporation":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"char":[3014657,3407873,7143430,9830401,9961473,10682369,10813441,11534337,11862017,17170433,17301505,17367041,17956865,18284545,18350081,18415617,18481153,18546689,19070977,19791873,19857409,20250625,20840449,21168129,21430273,22609921,23265281,24510465,25755649,26148865,26804225,28508161,28573697,40239105,41025537,42926081],"context":[917505,3342339,3997697,4259841,4325378,4521986,4653061,4718594,5505026,5701634,10878982,11337733,13828098,14024706,14155782,14942213,16842754,18284546,19267586,19791874,20840450,22085633,23068673,25427969,25755650,26411009,27328513,27525123,28442625,29294595,29818883,35454979,39845890,40632321,41222146,41418754,41615362,41877506,42139651,42991621,43384834],"cnn":[9895937],"casts":[3014659,3407875,5963778,6356993,8388609,41025539,42926083],"cstr":[24248321],"collectgarbage":[3342337,4325377,4653058,4718593,5505026,5701633,13303813,16056325,18677766,25100294,41418753,41615361,41877506,42139649,42991618,43384833],"customize":[17235969,23330817,24248321,27394049],"currently":[327682,2031618,5636097,5898241,11272193,11468801,13762561,13959169,14221313,14548993,15138817,17104897,17694721,17891329,18022401,18087937,18546689,19136513,19202049,19398657,19464193,19857409,19988481,20905985,21364737,21626881,21823489,22020097,22413313,22478849,22544385,22740993,22806529,22872065,22937601,23199745,23396353,23461889,23527425,24182785,24903681,25821185,26542081,26804225,28573697,32899074,34668545,35454977,38273025,39518210,39714818,41680897],"created":[16449537,17498113,17629185,18022401,18612225,19333121,19464193,19922945,20316161,20512769,20643841,20774913,20905985,21233665,21561345,21626881,21954561,22413313,22872065,22937601,23396353,23789569,25690113,25821185],"convenient":[4915201,5570561,14221313,40435713],"custom":[3211265,39845889,40763393],"clearscript":[65537,131074,196610,262146,327682,393221,458753,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114117,1179650,1245189,1310725,1376258,1441797,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604485,3670021,3735558,3801093,3866629,3932166,3997704,4063238,4128770,4194306,4259848,4325378,4390917,4456453,4521991,4587525,4653058,4718594,4784133,4849669,4915205,4980741,5046274,5111814,5177349,5242885,5308422,5373957,5439494,5505026,5570566,5636101,5701634,5767173,5832709,5898245,5963781,6029317,6094853,6160389,6225925,6291461,6356997,6422533,6488069,6553605,6619141,6684677,6750213,6815749,6881285,6946821,7012357,7077894,7143429,7208965,7274501,7340038,7405573,7471109,7536645,7602181,7667717,7733253,7798790,7864325,7929861,7995397,8060933,8126469,8192005,8257541,8323077,8388613,8454149,8519685,8585221,8650757,8716293,8781829,8847365,8912901,8978437,9043973,9109509,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699334,9764869,9830405,9895941,9961477,10027013,10092549,10158085,10223621,10289157,10354693,10420229,10485766,10551301,10616837,10682373,10747910,10813445,10878981,10944517,11010053,11075589,11141125,11206661,11272197,11337733,11403269,11468805,11534341,11599877,11665413,11730949,11796485,11862021,11927558,11993093,12058630,12124166,12189701,12255237,12320773,12386310,12451846,12517381,12582917,12648453,12713989,12845062,12779526,12910598,12976134,13041669,13107205,13172742,13238278,13303813,13369349,13434885,13500421,13565957,13631493,13697030,13762565,13828103,13893638,13959173,14024711,14090245,14155781,14221319,14286853,14352389,14417926,14483461,14548997,14614533,14680070,14745605,14811143,14876677,14942213,15007749,15073285,15138821,15204357,15269893,15335430,15400965,15466501,15532039,15597573,15663109,15728645,15794182,15859717,15925253,15990791,16056325,16121862,16187398,16252934,16318469,16384006,16449541,16515077,16580613,16646149,16711685,16777221,16842759,16908294,16973830,17039365,17104901,17170438,17235973,17301511,17367046,17432581,17498118,17563654,17629189,17694725,17760261,17825799,17891333,17956871,18022406,18087943,18153478,18219014,18284552,18350086,18415622,18481159,18546694,18612230,18677765,18743303,18808837,18874373,18939909,19005445,19070983,19136518,19202055,19267591,19333126,19398662,19464197,19529734,19595270,19660805,19726341,19791880,19857414,19922949,19988486,20054022,20119557,20185093,20250631,20316165,20381701,20447238,20512773,20578309,20643846,20709381,20774919,20840456,20905989,20971525,21037061,21102598,21168135,21233670,21299205,21364742,21430278,21495813,21561349,21626886,21692421,21757954,21823493,21889030,21954567,22020102,22085634,22151170,22216706,22282245,22347781,22413318,22478854,22544389,22609926,22675458,22740994,22806534,22872071,22937606,23003141,23068675,23134213,23199750,23265286,23330821,23396358,23461894,23527430,23592965,23658498,23724034,23789574,23855109,23920642,23986179,24051717,24117250,24182789,24248325,24313858,24379398,24444930,24510471,24576002,24641538,24707074,24772610,24838146,24903686,24969218,25034754,25100293,25165826,25231363,25296898,25362434,25427970,25493506,25559042,25624578,25690118,25755656,25821191,25886722,25952262,26017794,26083330,26148871,26214402,26279938,26345475,26411010,26476546,26542082,26607618,26673154,26738690,26804230,26869765,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394053,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114949,28180482,28246018,28311554,28377090,28442626,28508166,28573702,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360133,29425669,29491202,29556738,29622277,29687810,29753350,29818885,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474245,30539781,30605317,30670853,30736386,30801922,30867461,30932994,30998530,31064065,31129602,31195141,31260674,31326213,31391746,31457285,31522821,31588354,31653893,31719429,31784965,31850498,31916037,31981570,32047109,32112645,32178181,32243717,32309253,32374789,32440325,32505861,32571397,32636935,32702469,32768005,32833541,32899074,32964613,33030149,33095685,33161221,33226757,33292293,33357829,33423366,33488901,33554437,33619973,33685509,33751045,33816581,33882117,33947653,34013189,34078725,34144261,34209797,34275333,34340869,34406405,34471941,34537477,34603013,34668549,34734082,34799621,34865159,34930693,34996229,35061765,35127301,35192837,35258373,35323909,35389445,35454981,35520517,35586053,35651589,35717125,35782661,35848197,35913734,35979269,36044805,36110341,36175877,36241414,36306949,36372485,36438021,36503557,36569093,36634630,36700165,36765701,36831237,36896773,36962309,37027845,37093381,37158917,37224453,37289989,37355525,37421061,37486598,37552133,37617669,37683205,37748743,37814277,37879813,37945349,38010885,38076422,38141957,38207493,38273029,38338565,38404101,38469637,38535173,38600709,38666245,38731781,38797319,38862853,38928389,38993925,39059461,39124997,39190533,39256069,39321605,39387147,39452677,39518214,39583749,39649285,39714822,39780357,39845894,39911430,39976965,40042502,40108039,40173575,40239109,40304646,40370181,40435719,40501253,40566789,40632325,40697862,40763398,40828935,40894469,40960006,41025543,41091078,41156614,41222150,41287687,41353222,41418760,41484293,41549830,41615368,41680901,41746438,41811975,41877513,41943046,42008584,42074118,42139654,42205190,42270726,42336263,42401798,42467334,42532869,42598405,42663941,42729478,42795013,42860549,42926087,42991623,43057159,43122693,43188229,43253767,43319301,43384840],"compliance":[42401793],"classes":[3211273,14221313,23068673,23986177,25231361,26345473,37748737,40763401,40828929],"checking":[851971,2228227,10158081,11141121,13107201,40173571,40435715],"class":[131074,327681,524289,655361,720900,786433,851969,917505,983041,1048577,1114114,1179649,1310722,1376257,1441793,1572868,1638401,1966084,2031617,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2686980,2621441,2752513,2818052,2949124,3014657,3080194,3145729,3211274,3276802,3342337,3407873,3670017,3735553,3801089,3932161,3997697,4063233,4128769,4194306,4259841,4325401,4390913,4456449,4521985,4587521,4653081,4718617,4784129,4849668,4915201,4980737,5046273,5111812,5177345,5242883,5308417,5373953,5439489,5505049,5570561,5636097,5701657,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356996,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9764865,9895937,10027009,10092545,10158081,10354689,10420225,10485761,10551297,10616833,10747905,10878977,10944513,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11599873,11665413,11730949,11796484,11927557,11993092,12058625,12124164,12189697,12255233,12320769,12386305,12451844,12517377,12582916,12648450,12713989,12845061,12779525,12910597,12976132,13107201,13041665,13172738,13238273,13303809,13369348,13434881,13500417,13565953,13631489,13697028,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483461,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364739,21430273,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020099,22085633,22216705,22282241,22413313,22478851,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461891,23527427,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903683,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27262977,27328513,27394049,27459585,27525121,27590658,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28180482,28246017,28311553,28377089,28508161,28573697,28639245,28770305,28835841,28901378,28966913,29097986,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29753345,29818881,29884429,29949953,30015489,30081025,30146561,30212097,30343169,30408706,30474241,30539777,30605313,30736385,30801921,30867457,30932993,31129601,31260673,31391746,31457281,31588353,31719425,31784961,31850497,31916033,31981569,32178177,32309249,32440321,32505857,32571393,32636929,32702465,32768001,32899073,33030145,33095681,33161217,33226753,33357825,33423361,33488897,33554433,33619969,33685505,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36110337,36175873,36241409,36306945,36438017,36503553,36569089,36634625,36700161,36831233,36896769,36962305,37027841,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748749,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38404097,38469633,38535169,38600705,38666241,38731777,38797317,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39452673,39518213,39583745,39649281,39714821,39780353,39845894,39911429,39976961,40042501,40108039,40173573,40239105,40304645,40370177,40435717,40501249,40566785,40632321,40697861,40763406,40828941,40894465,41025541,41091077,41156613,41287689,41353221,41418781,41484289,41549829,41615389,41746437,41680897,41811981,41877533,41943045,42008589,42074117,42139653,42205189,42270727,42336261,42401793,42467334,42532865,42598401,42663937,42729478,42795009,42860545,42926085,42991646,43057161,43122689,43188225,43253766,43319297,43384861],"copies":[1507329,1703938,1769474,1835010,1900546,2097156,9961473,10223617,10289153,10682369,10813441,11534337,39583746,40239108,42532865,42795010,42860546,43122690],"current":[262146,393217,524292,655364,720899,786436,851972,917508,1179652,1376260,1572867,1966083,2162692,2228228,2293764,2359300,2424836,2490372,2555908,2621444,2686979,2752516,2818051,2883586,2949123,3014660,3080196,3145732,3211268,3276804,3342340,3407876,4325380,4653060,4718598,5046276,5242881,5505030,5701638,7012353,11403266,12320769,14811137,15007746,15073281,16515074,17498113,18022401,18612225,22282241,22937601,23134210,24051714,28246021,28770306,29687811,29949957,30212097,31326209,31981569,32112641,32243713,33030145,33095681,33226760,34406401,34537473,34734081,35323905,36962305,37683201,37748739,38600705,38731777,38797316,39059457,39845892,39911428,40108036,40173572,40304644,40435716,40632322,40697860,40763396,40828931,40894466,41025540,41091076,41156612,41287683,41353220,41418758,41549828,41615367,41746436,41811971,41877511,41943044,42008579,42139652,42205188,42270724,42336260,42401793,42467337,42663939,42729481,42926084,42991620,43057155,43253764,43384839],"columnnumber":[30081025,33423365,40304641],"coordinated":[43188225],"consuming":[3342342,4653062,17170433,18284545,18350081,18481153,18546689,19070977,20840449,21168129,21430273,24510465,25886723,26804225,27525123,28049411,28508161,29294595,42139654,42991622],"comparison":[37945346,39452674,41287681],"callbackt":[6553602],"check":[31064065],"connect":[786433,4980741,42205185],"caches":[3997697,4259841],"clearnocheck":[851969,2228225,11206657,13107205,40173569,40435713],"console":[5242881,7995394,8323073,9895937,17235969,23330817,24248321,27394049],"collection":[262145,524289,655361,720897,786433,851977,917505,983041,1048577,1179649,1376257,1441793,1507329,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014658,3080193,3145729,3211265,3276801,3342338,3407873,4325378,4653058,4718594,4915202,5046273,5111819,5505026,5570571,5701634,7929857,8126465,8257537,8454145,8519681,8716289,8847361,8912897,8978434,9306113,9568258,9764866,10420226,13303810,16056322,18677762,18808834,22675457,23068674,25100290,27000834,27852802,28246017,28835841,29949953,30081026,30343172,31129603,31850501,31916033,34209793,35127297,35258369,37748737,38797313,38993921,39845889,39911425,40108033,40173572,40304643,40435732,40632321,40697857,40763393,40828929,40894465,41025537,41091074,41156609,41222145,41287681,41353217,41418754,41484289,41549825,41615362,41746433,41811969,41877506,41943041,42008577,42139650,42205185,42270721,42336257,42467330,42532867,42729474,42926082,42991618,43057153,43253761,43384834],"cached":[524289,3670017,41549825],"code":[262145,327684,589825,720897,1572865,1966081,2031620,2686977,2818049,2883585,2949121,3014657,3211265,3407873,4325413,4653093,4718629,4849665,4915201,5242881,5308418,5439491,5505061,5570561,5636098,5701669,5898243,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6750209,6881281,7012353,7143425,7405569,7471105,7602177,7536641,7667713,7733249,7995393,8060929,8323073,8585217,9240577,9371649,9437185,9633793,9699329,9895939,10158081,10485761,10747905,11141121,11272193,11468801,11665409,11730945,11796481,11927553,11993089,12058626,12124161,12189698,12255234,12386306,12451841,12582913,12648450,12713985,12845057,12779521,12910593,12976129,13041666,13107201,13172738,13238274,13369345,13500417,13631490,13697025,13828098,13893641,13959178,14024705,14221326,14417921,14483457,14680066,14745610,14811140,14876681,15138827,15859713,15990785,16187400,16384006,16908290,16973825,17104902,17170439,17235969,17891338,17956870,18284545,18350081,18415622,18481159,18546695,18808833,18874374,19005442,19070977,19529734,19726337,19857414,20381697,20447233,20840449,21168129,21430273,22740994,23068681,23265286,23330817,23592961,23855105,23920642,24182790,24248321,24379393,24444932,24510471,24576004,24969224,26083330,26148870,26279940,26476548,26542082,26804231,26869766,27394049,28246017,28508167,28573702,28639240,28770308,28901377,28966913,29032449,29687810,29884424,29949953,30212101,31260673,31522817,31588356,31981573,32112641,32899076,33095681,33357825,34406401,34668546,34734085,34865153,35323905,35520513,36634629,36765697,37158913,37748738,38273026,38731779,38928385,39059459,39452673,39518212,39714820,39911425,40370180,40501251,40435713,40632321,40763393,40828930,40894465,41025538,41287682,41418793,41615402,41680897,41811970,41877547,42008578,42139649,42401795,42467329,42532865,42598402,42663938,42729473,42926082,42991658,43057155,43188225,43253761,43319297,43384874],"convert":[3211265,5308417,5439489,5636097,5898241,6881281,7143425,7405569,7471105,7602177,7536641,7667713,7733249,8585217,9240577,9371649,9633793,10485761,10747905,11272193,11468801,23330817,24248321,27394049,40763393],"cleanup":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,4325377,4653057,4718593,5046273,5505025,5701633,9895937,18808833,37748737,38797313,39845889,39911425,40108033,40173569,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025537,41091073,41156609,41287681,41353217,41418753,41549825,41615361,41746433,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42336257,42467329,42729473,42926081,42991617,43057153,43253761,43384833],"causes":[4325377,4653057,4718593,5505025,5701633,13565953,21299201,21692417,28246017,29949953,35979265,36700161,36962305,37683201,41418753,41615361,41877505,42467329,42729473,42991617,43384833],"comments":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"caused":[12320769,15073281,28246018,29687810,29949954,31326209,32243713,33030145,34537473,42467330,42663938,42729474],"cpu":[393217,3342340,4653060,16449538,17629186,17760257,19333122,19922946,20119553,21561346,24838146,25231365,25690114,26738690,31260673,31588353,34603009,35717122,38010882,40304641,40894465,41091073,41353217,41484289,42139653,42991621],"case":[24248321],"callback":[917505,3342339,3997697,4259841,4325378,4521986,4653061,4718594,5505026,5701634,6291457,6553602,7995393,13828098,14024706,16842754,18284546,19267586,19791874,20840450,22085633,25427969,25755650,26411009,27328513,27525123,28442625,28770305,29294595,29818882,30212097,31588353,31981569,32571395,34734081,35454978,39845890,40632321,40960001,41418755,41615363,41877507,42139651,42991622,43384835],"childnodes":[30081025,35127301,40304641],"contents":[1703937,1769473,1835009,1900545,2097154,4063238,4521990,5177350,9830402,11010050,11862018,15794182,27262977,30605317,30932994,35192838,38797313,39583745,40239106,42336258,42795009,42860545,43122689],"canceled":[29949953,42729473],"configuration":[917508,3932162,4063234,4521986,5177346,22085636,23068674,39845893,42074113],"components":[6160387],"column":[30081025,33423362,40304641],"called":[9699329,13565953,14286849,20709377,21299201,21692417,23003137,23068674,27328513,31719425,39845889,40960001,42598401],"cachekind":[17170437,17301509,17367045,17956869,18284549,18350085,18415621,18481157,18546693,19070981,19791877,19857413,20250629,20840453,21168133,21430277,22609925,23265285,24510469,25755653,26148869,26804229,28508165,28573701],"continues":[32636929],"compiledocument":[3342345,4653065,16580614,16842758,17301510,17367046,17563654,18153478,18284550,18350086,19070982,19267590,19791878,20185094,20250630,20840454,21168134,21430278,22609926,25755654,27525130,29294602,42139657,42991625],"checkaccess":[4718593,5505025,5701633,24051717,41615361,41877505,43384833],"callable":[6225921,6422529,6684673,6750209,6946817,7274497,8060929,11665409,11730945,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13041665,13172737,13238273,13369345,13697025,14483457,14811137,15859713,16908289,19005441,23068674,41025537,42926081],"compilation":[17170433,18284545,18350081,18481153,18546689,19070977,20840449,21168129,21430273,24510465,25231361,26804225,28508161,40370179],"cast":[3014658,3407874,5963786,6356996,8388609,41025538,42926082],"catchfunc":[9895944],"child":[30081025,35127298,40304641],"count":[196609,393217,9961477,10682373,10813445,11534341,28704769,30081025,34603009,40304641,40894465,42532865],"contact":[65537],"connection":[4980737,18022401,18612225,18743297,19202049,19988481,20054017,21954561,23068673,23396353,23789569,25821185,41746433,43188225],"character":[27262977,30932993,31457282,33685505,38797313,42336257],"contained":[28704769,42532865],"conversion":[3211265,40763393,43188226],"consolet":[5242882,7995394,8323074,9895940],"completed":[3997697,4259841,9895937,17629185,21561345],"completes":[3342337,4653057,17629185,21561345,42139649,42991617],"cache":[3342348,4653068,9699329,17170436,17301508,17367044,17956868,18284548,18350084,18415620,18481156,18546692,19070980,19791876,19857412,20250628,20840452,21168132,21430276,22609924,23265284,24510468,25755652,25886726,26148868,26804228,27525126,28049414,28508164,28573700,29294598,40370182,42139660,42991628],"command":[4325377,4653057,4718593,5505025,5701633,17235980,23330828,24248334,27394060,41418753,41615361,41877505,42991617,43384833],"componentmodel":[1441793],"client":[9895937],"creates":[262145,524289,655361,720897,786433,851969,917505,1179649,1376257,1572865,1703937,1769473,1835009,1900545,1966081,2097154,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014667,3080193,3145729,3211265,3276801,3342352,3407884,4325385,4653074,4718601,5046273,5242882,5505033,5701641,6094850,6160385,6291458,6488067,6553601,6684673,6750210,6946817,7012353,7995394,8060930,9830401,11010049,11665409,11796481,11862017,12451841,12779521,12910593,13369345,13697025,14483457,16384001,17104897,17170433,17498113,17956865,18022401,18415617,18481153,18546689,18612225,18874369,19464193,19529729,19857409,20512769,22937601,23265281,23658498,24182785,24510465,25034755,25559042,25886729,26148865,26804225,26869761,28049417,28311558,28508161,28573697,28639240,37748737,38797313,39583745,39845889,39911425,40108033,40173569,40239106,40304641,40435713,40632321,40697857,40763393,40828929,40894465,41025548,41091073,41156609,41287681,41353217,41418761,41549825,41615369,41746433,41811969,41877513,41943041,42008577,42139664,42205185,42270721,42336257,42467329,42729473,42795009,42860545,42926091,42991634,43057153,43122689,43253761,43384841],"compiling":[34668545,38273025],"consoles":[17235969,23330817,24248321,27394049],"collectcpuprofilesample":[3342337,4653057,17760261,20119557,42139649,42991617],"contextcallback":[3997702,4259845,4521989,13828101,14024709,16842757,18284549,19267589,19791877,20840453,25755653,27328513,28442625,29818886,35454981,39845889,40632321],"connects":[786433,4980737,42205185],"consecutive":[31260673,31588353,38141953,38666241,42139649,42991617],"calculate":[6553601],"cause":[3080193,3276801,35979265,36700161,36896769,37421057,42467329,42729473],"caught":[9895937],"constructor":[3604481,3735553,3801089,3866625,4390913,4456449,5373953,5767169,6946817,7864321,8060930,8912897,8978433,9502721,9568257,9764865,10027009,10354689,10420225,10551297,11075585,11206657,11337729,11599873,12320769,13762561,14090241,14221313,14548993,14614529,14811138,14942209,15073281,15204353,15269889,15335425,15532033,15663105,15794177,15925249,15990785,16121857,16252929,16973825,17432577,17694721,17825793,18087937,18219009,18743297,19136513,19202049,19398657,19595265,19988481,20054017,20316161,20578305,20643841,20774913,20905985,21102593,21037057,21233665,21364737,21626881,21757953,21823489,21889025,21954561,22020097,22151169,22413313,22478849,22544385,22806529,22872065,23199745,23396353,23461889,23527425,23592961,23789569,24313857,24379393,24772609,24903681,25362433,25493505,25821185,26214401,27066369,27459585,27983873,28377089,29229057,30801921,31850497,42401793],"combination":[3932161,4063233,4521985,5177345],"collect":[16449537,19333121,19922945,25690113],"converting":[17235969,23330817,24248321,27394049],"converts":[327684,2031620,3014668,3407884,5308417,5439489,5636097,5898241,6881282,7143426,7405570,7471106,7536642,7602178,7667714,7733250,8585218,9240578,9371650,9633794,10485761,10747905,11272193,11468801,22740994,26542082,32899076,39518212,39714820,41025548,42926092],"caching":[25231361,40370179],"commonjs":[27656194,29818881,31784966,35454977,40042498],"calls":[8060929],"compatible":[3014657,3407873,6029314,41025537,42926081],"copyto":[1507329,42532865],"cachebytes":[17170438,17301509,17367045,17956869,18284550,18350086,18415621,18481158,18546694,19070982,19791877,19857413,20250629,20840454,21168134,21430278,22609925,23265285,24510470,25755653,26148869,26804230,28508166,28573701],"correspond":[35389441,35848193,39190529],"containing":[1703937,1769473,1835009,1900545,2097154,3997697,4063233,4259841,4521985,5177345,6160385,9830402,11010050,11862018,13893633,15794178,16187393,16384001,16777217,17956865,18481153,19529729,19660801,24510465,26148865,27262977,28114945,28704770,30081026,30932993,32309249,34340865,37355521,37879809,38797313,39583745,40239106,40304642,40960001,41222146,42336257,42532866,42795009,42860545,43122689],"collections":[4915202,5570562,6225922,6881281,7012353,7143425,7405569,7471105,7536641,7602177,7667713,7733249,8585217,9240577,9371649,9633793,14811137,40435714],"copied":[9961474,10223618,10289154,10682370,10813442,11534338],"com":[3014659,3538945,4325392,4653072,4718608,4849666,5111809,5242882,5505040,5701648,6160385,6946817,9895937,11665409,11730945,11796481,11927553,11993089,12124161,12451841,12582913,12713985,12845057,12779521,12910593,12976129,13369345,13697025,14483457,22347778,28639240,29884424,39649281,41418768,41615376,41680898,41877520,42926083,42991632,43384848],"continuationcallback":[23068673,28770305,30212097,31588353,31981569,32571404,34734081,36044806,41418753,41615361,41877505,42991617,43384833],"constructors":[37748737,38797313,39845889,39911425,40173569,40435713,40632321,40828929,41025537,41287681,41418753,41549825,41615361,41811969,41877505,42008577,42139649,42336257,42467329,42729473,42926081,42991617,43057153,43384833],"considered":[39124993],"collector":[13434881,18808833,18939905,20971521],"contain":[4915201,5570561,8978433,9568257,9764865,10420225,16777217,31064065],"compile":[3342345,4653065,16384007,17104903,17170440,17956872,18415624,18481160,18546696,18874375,19529735,19857416,23265288,24182791,24510472,25886730,26148872,26804232,26869767,28049418,28508168,28573704,42139657,42991625],"clearscrip":[23068673,42074113],"coded":[28246017,29949953,42467329,42729473],"collects":[3342337,4653057,17760257,20119553,42139649,42991617],"compiled":[2621441,3342345,4653067,16384002,16580610,16842754,17104899,17170434,17301506,17367042,17563650,17956866,18153474,18284546,18350082,18415618,18481154,18546691,18874370,19070978,19267586,19529730,19791874,19857411,20185090,20250626,20447234,20840450,20971525,21168130,21430274,22609922,23265282,24182787,24510466,25231361,25755650,25886729,25952258,26148866,26279937,26476545,26804227,26869762,28049417,28508162,28573699,30146562,36110337,38404097,41943044,42139657,42991627],"control":[36896769,37421057],"cancellationtoken":[29949953,42729473],"change":[17498113,18022401,18612225,22937601,34865153,35913729,36634625,37486593,38076417],"cleared":[983041,1048577,1441793,40173569,40435713],"converted":[42401793],"cleaning":[9895937],"conversions":[14221313],"copyright":[131073,196609,262145,327681,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6488065,6422529,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11862017,11796481,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12779521,12910593,12976129,13107201,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22085633,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833],"clr":[4915202,5570564],"completeness":[13303809,16056321,18677761,25100289],"category":[917506,3342342,3932161,3997703,4063240,4259846,4325380,4521992,4653066,4718596,5505028,5701636,13828103,14024711,14417927,14680071,16842759,17301511,17563655,18153479,18284551,19070983,19267591,19791879,20250631,20840455,21168135,22085634,23068673,25427970,25755655,26411010,27525126,27656194,27721729,28442626,29294598,30474241,31784961,32505857,34930694,39845890,40042498,40632322,40697858,41418756,41615364,41877508,42139654,42991626,43384836],"cacheaccepted":[17170437,18284549,18350085,18481157,18546693,19070981,20840453,21168133,21430277,24510469,26804229,28508165],"cpuprofilesampleinterval":[31260673,31588353,35717125,38010885,42139649,42991617],"contravariance":[6094849,6291457,7995393],"consumed":[17170433,18284545,18350081,18481153,18546689,19070977,20840449,21168129,21430273,24510465,26804225,28508161,40370177]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_Files.json b/docs/Reference/fti/FTI_Files.json index 43a124048..77f55d9f2 100644 --- a/docs/Reference/fti/FTI_Files.json +++ b/docs/Reference/fti/FTI_Files.json @@ -1 +1 @@ -["ClearScript Library - Redirect\u0000index.html\u000018","ClearScript Library - Search\u0000search.html\u000011","General Error\u0000html/GeneralError.htm\u000032","PropertyBag Events\u0000html/Events_T_Microsoft_ClearScript_PropertyBag.htm\u000060","Nothing Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Nothing.htm\u000053","Document Methods\u0000html/Methods_T_Microsoft_ClearScript_Document.htm\u0000158","ScriptInterruptedException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u000071","DocumentCategory Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentCategory.htm\u0000158","ScriptEngineException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptEngineException.htm\u000071","HostTypeCollection Events\u0000html/Events_T_Microsoft_ClearScript_HostTypeCollection.htm\u000067","Nothing.Value Field\u0000html/F_Microsoft_ClearScript_Windows_Nothing_Value.htm\u0000107","DocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentLoader.htm\u0000175","DocumentInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentInfo.htm\u0000159","DocumentSettings Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentSettings.htm\u0000231","DefaultScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000221","PropertyBag.PropertyChanged Event\u0000html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm\u0000161","HitLine Fields\u0000html/Fields_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u000066","V8CpuProfile.Node.HitLine.LineNumber Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_LineNumber.htm\u0000103","V8CpuProfile.Node.HitLine.HitCount Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_HitCount.htm\u0000130","IDataView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000102","IArrayBuffer Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u000084","IArrayBufferView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u000081","ImmutableValueAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000221","IScriptableObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm\u000057","ITypedArray Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000102","Extensions Methods\u0000html/Methods_T_Microsoft_ClearScript_Extensions.htm\u0000143","NoDefaultScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000221","EventConnection(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm\u0000174","EventSource(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource_1.htm\u0000175","NoScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000221","ScriptMemberAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000221","PropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_PropertyBag.htm\u0000240","StringDocument Methods\u0000html/Methods_T_Microsoft_ClearScript_StringDocument.htm\u0000158","HostTypeCollection Methods\u0000html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000441","ITypedArray(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000143","ScriptEngineException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000214","V8CpuProfile Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000182","ScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptObject.htm\u0000798","Undefined Methods\u0000html/Methods_T_Microsoft_ClearScript_Undefined.htm\u0000158","Node Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000161","V8RuntimeConstraints Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000159","IHostWindow Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000053","JavaScriptExtensions Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000138","V8Script Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm\u0000169","Sample Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000161","VoidResult Methods\u0000html/Methods_T_Microsoft_ClearScript_VoidResult.htm\u0000158","HitLine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000164","IWindowsScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u000054","ScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000221","ScriptInterruptedException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000214","V8RuntimeHeapInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000159","Nothing Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Nothing.htm\u0000159","DefaultScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm\u0000138","DocumentInfo Constructor (Uri)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm\u0000132","DocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_DiscardCachedDocuments.htm\u0000109","DocumentSettings Constructor\u0000html/M_Microsoft_ClearScript_DocumentSettings__ctor.htm\u000094","DocumentSettings.AddSystemDocument Method (String, Document)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000221","DocumentInfo Constructor (String)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm\u0000132","ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm\u00001258","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_2.htm\u0000290","DocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocumentAsync.htm\u0000399","Document Constructor\u0000html/M_Microsoft_ClearScript_Document__ctor.htm\u000094","EventConnection(T).disconnect Method\u0000html/M_Microsoft_ClearScript_EventConnection_1_disconnect.htm\u0000105","HostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_HostFunctions.htm\u0000852","DocumentLoader.LoadDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocument.htm\u0000401","DocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DocumentLoader__ctor.htm\u000094","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_1.htm\u0000250","DocumentSettings.AddSystemDocument Method (String, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_3.htm\u0000210","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00001634","ExtendedHostFunctions.arrType(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_arrType__1.htm\u0000211","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00001646","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00001646","ExtendedHostFunctions.lib Method (HostTypeCollection, String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u0000437","ExtendedHostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001227","ExtendedHostFunctions.newComObj Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_newComObj.htm\u0000363","ExtendedHostFunctions.typeLibEnums(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_typeLibEnums__1.htm\u0000194","ExtendedHostFunctions Constructor\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm\u000094","IPropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm\u0000305","DefaultScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000096","Extensions.ToHostType Method (Type, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType_1.htm\u0000294","Extensions.ToRestrictedHostObject(T) Method (T, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1_1.htm\u0000333","ExtendedHostFunctions.comType Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_comType.htm\u0000359","EventSource(T).connect Method\u0000html/M_Microsoft_ClearScript_EventSource_1_connect.htm\u0000171","Extensions.ToHostType Method (Type)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType.htm\u0000253","HostFunctions.cast(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_cast__1.htm\u0000261","ExtendedHostFunctions.type Method (String, String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_1.htm\u0000490","HostFunctions.getProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty.htm\u0000216","HostFunctions.isNull Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isNull.htm\u0000180","HostFunctions.getElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getElement.htm\u0000232","HostFunctions.func Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func.htm\u0000285","HostFunctions.del(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_del__1.htm\u0000419","ExtendedHostFunctions.lib Method (String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib_1.htm\u0000362","ExtendedHostFunctions.type Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u0000420","V8Runtime Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000739","Extensions.ToRestrictedHostObject(T) Method (T)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1.htm\u0000293","HostFunctions.isTypeObj Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u0000210","ExtendedHostFunctions.type Method (Type)\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_2.htm\u0000224","HostFunctions.isType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm\u0000276","HostFunctions.getProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty_1.htm\u0000216","HostFunctions.asType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_asType__1.htm\u0000315","HostFunctions.removeProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty_1.htm\u0000216","HostFunctions.newObj Method (IDynamicMetaObjectProvider, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_1.htm\u0000230","HostFunctions.removeElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeElement.htm\u0000232","HostFunctions.newVar(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newVar__1.htm\u0000468","HostFunctions.setProperty Method (IPropertyBag, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty.htm\u0000260","HostFunctions.toDecimal Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDecimal.htm\u0000313","HostFunctions.isTypeObj(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj__1.htm\u0000196","HostFunctions.toInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt16.htm\u0000313","HostFunctions.newArr(T) Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr__1.htm\u0000304","HostFunctions.flags(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_flags__1.htm\u0000380","HostFunctions.toSingle Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSingle.htm\u0000313","HostFunctions.newObj(T) Method (Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj__1.htm\u0000361","HostFunctions.func(T) Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func__1.htm\u0000484","HostFunctions.toUInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt16.htm\u0000313","HostFunctions Constructor\u0000html/M_Microsoft_ClearScript_HostFunctions__ctor.htm\u000094","HostFunctions.toUInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt64.htm\u0000313","V8ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002089","HostFunctions.newObj Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000217","HostFunctions.setProperty Method (IDynamicMetaObjectProvider, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty_1.htm\u0000260","HostFunctions.removeProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u0000216","HostFunctions.setElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setElement.htm\u0000273","HostFunctions.newArr Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr.htm\u0000211","HostFunctions.toInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt32.htm\u0000313","HostFunctions.toStaticType Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toStaticType.htm\u0000196","HostFunctions.toDouble Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDouble.htm\u0000313","HostTypeCollection Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u000097","HostFunctions.newObj Method (Object, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_2.htm\u0000302","HostTypeCollection.AddAssembly Method (Assembly)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000142","HostTypeCollection.AddAssembly Method (Assembly, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_1.htm\u0000204","HostTypeCollection.AddType Method (Type)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_2.htm\u0000135","HostFunctions.toUInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt32.htm\u0000313","HostFunctions.proc Method\u0000html/M_Microsoft_ClearScript_HostFunctions_proc.htm\u0000423","HostTypeCollection.AddAssembly Method (String, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_3.htm\u0000213","HostTypeCollection.AddType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000245","JavaScriptExtensions.ToPromise Method (Task)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000256","HostTypeCollection Constructor (String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_4.htm\u0000176","HostFunctions.toByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toByte.htm\u0000313","HostFunctions.toInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt64.htm\u0000313","IArrayBufferView.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_ReadBytes.htm\u0000273","HostTypeCollection.AddAssembly Method (String)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_2.htm\u0000151","PropertyBag.RemovePropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_RemovePropertyNoCheck.htm\u0000165","HostTypeCollection.GetNamespaceNode Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_GetNamespaceNode.htm\u0000157","HostFunctions.tryCatch Method\u0000html/M_Microsoft_ClearScript_HostFunctions_tryCatch.htm\u0000555","HostTypeCollection Constructor (Predicate(Type), String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_2.htm\u0000236","IArrayBuffer.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_WriteBytes.htm\u0000274","PropertyBag Constructor (Boolean)\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_1.htm\u0000156","ImmutableValueAttribute Constructor\u0000html/M_Microsoft_ClearScript_ImmutableValueAttribute__ctor.htm\u000094","PropertyBag.Add Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Add.htm\u0000192","JavaScriptExtensions.ToPromise Method (Task, ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_1.htm\u0000296","PropertyBag.TryGetValue Method\u0000html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm\u0000235","HostTypeCollection Constructor (Predicate(Type), Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_1.htm\u0000227","JavaScriptExtensions.ToPromise(TResult) Method (Task(TResult))\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1.htm\u0000297","HostTypeCollection.AddType Method (String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_1.htm\u0000201","ScriptEngineException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_3.htm\u0000173","HostFunctions.toSByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSByte.htm\u0000313","ScriptEngineException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_ToString.htm\u0000134","HostFunctions.toChar Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toChar.htm\u0000313","PropertyBag.SetPropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm\u0000177","PropertyBag.ClearNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ClearNoCheck.htm\u0000114","IScriptableObject.OnExposedToScriptCode Method\u0000html/M_Microsoft_ClearScript_IScriptableObject_OnExposedToScriptCode.htm\u0000191","PropertyBag Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor.htm\u000097","HostTypeCollection Constructor (Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_3.htm\u0000167","ScriptEngineException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_GetObjectData.htm\u0000210","IArrayBufferView.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_WriteBytes.htm\u0000273","ScriptEngineException Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000096","ScriptEngine.AddCOMObject Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_5.htm\u0000268","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_1.htm\u0000308","HostFunctions.typeOf Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf.htm\u0000310","ScriptEngine.AddHostObject Method (String, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject_1.htm\u0000202","ITypedArray(T).Read Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm\u0000269","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_1.htm\u0000308","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000264","ScriptEngine.AddCOMType Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_5.htm\u0000268","IArrayBufferView.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_GetBytes.htm\u0000136","ScriptEngine.AddHostType Method (String, HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_3.htm\u0000292","ScriptEngine.AddHostType Method (Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_7.htm\u0000232","ScriptEngine.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u0000174","PropertyBag.ContainsKey Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ContainsKey.htm\u0000180","ScriptEngine.AddRestrictedHostObject(T) Method (String, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1_1.htm\u0000256","IArrayBuffer.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_GetBytes.htm\u0000140","ScriptEngineException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_1.htm\u0000172","JavaScriptExtensions.ToPromise(TResult) Method (Task(TResult), ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_1.htm\u0000336","ScriptEngine.AddCOMObject Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_6.htm\u0000259","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_2.htm\u0000299","ScriptEngine.AddHostType Method (HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000272","ScriptEngine.Evaluate Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u0000243","ScriptEngine.AddCOMType Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_6.htm\u0000259","ScriptEngine.AddCOMType Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_2.htm\u0000299","ScriptEngine.Evaluate Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_1.htm\u0000233","HostFunctions.typeOf(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf__1.htm\u0000282","ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_CollectGarbage.htm\u0000136","NoDefaultScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoDefaultScriptAccessAttribute__ctor.htm\u000094","ScriptEngineException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_2.htm\u0000131","ITypedArray(T).ToArray Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm\u0000133","ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose_1.htm\u0000199","ScriptEngine.AddRestrictedHostObject(T) Method (String, HostItemFlags, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1.htm\u0000294","PropertyBag.Remove Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Remove.htm\u0000174","IArrayBuffer.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm\u0000273","ScriptEngine.AddCOMObject Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_7.htm\u0000303","ScriptEngine.AddHostType Method (String, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_4.htm\u0000362","ScriptEngine.EvaluateDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u0000211","NoScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoScriptAccessAttribute__ctor.htm\u000094","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_3.htm\u0000343","ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_GetStackTrace.htm\u0000153","ScriptEngine.AddCOMType Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_7.htm\u0000303","ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteCommand.htm\u0000211","ScriptEngine.Execute Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_1.htm\u0000197","ScriptEngine.Evaluate Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm\u0000542","ScriptEngine Constructor (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor_1.htm\u0000197","ScriptEngine.AddCOMType Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_3.htm\u0000343","ScriptInterruptedException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_3.htm\u0000173","ScriptInterruptedException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_ToString.htm\u0000134","ScriptMemberAttribute Constructor (ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_3.htm\u0000136","ScriptEngine.EvaluateDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_1.htm\u0000251","ScriptEngine.AddHostType Method (String, HostItemFlags, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_1.htm\u0000402","ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Interrupt.htm\u0000120","ScriptMemberAttribute Constructor (String, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_7.htm\u0000180","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000264","ScriptEngine.AddCOMObject Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_4.htm\u0000224","ScriptMemberAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u000096","ITypedArray(T).Write Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm\u0000269","ScriptInterruptedException Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000096","ScriptEngine.ExecuteDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u0000174","ScriptEngine.Evaluate Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_3.htm\u0000291","ScriptEngine.Execute Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_2.htm\u0000307","ScriptEngine.AddHostType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_5.htm\u0000318","ScriptEngine.AddCOMType Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_4.htm\u0000224","ScriptMemberAttribute Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_4.htm\u0000141","ScriptEngine.AddHostObject Method (String, HostItemFlags, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u0000487","ScriptInterruptedException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm\u0000210","ScriptObject.DeleteProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u0000156","Undefined.ToString Method\u0000html/M_Microsoft_ClearScript_Undefined_ToString.htm\u0000145","ScriptMemberAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_1.htm\u0000138","ScriptEngine.EvaluateDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_2.htm\u0000292","ScriptInterruptedException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_1.htm\u0000172","ScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm\u0000207","ScriptEngine.ExecuteDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_1.htm\u0000214","V8Runtime.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u0000165","ScriptObject.GetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty_1.htm\u0000214","ScriptMemberAttribute Constructor (String, ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_5.htm\u0000182","ScriptEngine.Execute Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute.htm\u0000206","ScriptEngine.AddHostType Method (String, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_6.htm\u0000252","ScriptEngine.Execute Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_3.htm\u0000255","ScriptObject.SetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty_1.htm\u0000227","ScriptEngine.AddHostType Method (String, HostItemFlags, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_2.htm\u0000358","V8Runtime.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000200","V8CpuProfile.ToJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_ToJson.htm\u0000133","ScriptObject.DeleteProperty Method (String)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty_1.htm\u0000158","ScriptMemberAttribute Constructor (ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_2.htm\u0000177","ScriptInterruptedException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_2.htm\u0000131","ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor.htm\u0000232","ScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000096","V8Runtime.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_3.htm\u0000157","V8Runtime.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile_1.htm\u0000203","ScriptMemberAttribute Constructor (String, ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_6.htm\u0000222","V8Runtime.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000164","ScriptEngine.ExecuteDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_2.htm\u0000255","ScriptEngine.Finalize Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Finalize.htm\u0000172","ScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm\u0000201","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_2.htm\u0000267","V8CpuProfile.WriteJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_WriteJson.htm\u0000153","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_3.htm\u0000409","ScriptObject.GetProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u0000157","V8Runtime.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Dispose.htm\u0000174","V8Runtime Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_1.htm\u0000139","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_7.htm\u0000328","ScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor_1.htm\u0000138","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_3.htm\u0000220","V8Runtime.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectCpuProfileSample.htm\u0000107","V8Runtime Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_7.htm\u0000195","V8RuntimeConstraints Constructor\u0000html/M_Microsoft_ClearScript_V8_V8RuntimeConstraints__ctor.htm\u000096","V8ScriptEngine.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000164","V8ScriptEngine.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile_1.htm\u0000204","V8Runtime.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_1.htm\u0000204","V8Runtime.CreateScriptEngine Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_3.htm\u0000200","V8Runtime.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_EndCpuProfile.htm\u0000166","ScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm\u0000200","V8Runtime Constructor (String, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_10.htm\u0000195","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_7.htm\u0000391","V8Runtime Constructor (V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_4.htm\u0000139","StringDocument Constructor\u0000html/M_Microsoft_ClearScript_StringDocument__ctor.htm\u0000159","V8Runtime.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectGarbage.htm\u0000134","V8ScriptEngine.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectCpuProfileSample.htm\u0000107","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_8.htm\u0000235","V8ScriptEngine.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_1.htm\u0000204","V8Runtime.GetHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_GetHeapInfo.htm\u0000116","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_4.htm\u0000372","V8Runtime.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_4.htm\u0000330","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_4.htm\u0000282","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_2.htm\u0000245","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_8.htm\u0000291","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_4.htm\u0000372","V8Runtime Constructor (V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_5.htm\u0000180","ScriptObject.SetProperty Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u0000174","V8Runtime Constructor (String, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_11.htm\u0000237","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_8.htm\u0000291","V8ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectGarbage.htm\u0000150","V8Runtime Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u000099","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_9.htm\u0000276","V8Runtime Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_6.htm\u0000156","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_2.htm\u0000245","V8ScriptEngine.Execute Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000174","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_2.htm\u0000178","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_5.htm\u0000324","V8ScriptEngine Constructor (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_11.htm\u0000252","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_4.htm\u0000328","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_8.htm\u0000357","V8ScriptEngine Constructor (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_5.htm\u0000195","V8ScriptEngine.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000198","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_8.htm\u0000356","V8ScriptEngine.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u0000166","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_5.htm\u0000368","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine_ExecuteCommand.htm\u0000230","V8ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_ExecuteCommand.htm\u0000230","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_5.htm\u0000368","VBScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_3.htm\u0000195","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine_ExecuteCommand.htm\u0000277","V8Runtime.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_5.htm\u0000296","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_2.htm\u0000198","V8Runtime.CreateScriptEngine Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000143","V8ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_6.htm\u0000171","WindowsScriptEngine.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_VerifyAccess.htm\u0000107","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_1.htm\u0000375","DocumentInfo Constructor\u0000html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm\u000064","JScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u000099","V8ScriptEngine.GetRuntimeHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetRuntimeHeapInfo.htm\u0000124","V8ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u0000213","VBScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u000099","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_1.htm\u0000372","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_3.htm\u0000409","DocumentSettings.AddSystemDocument Method\u0000html/Overload_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000110","V8Runtime.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_6.htm\u0000216","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_1.htm\u0000226","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_3.htm\u0000240","V8ScriptEngine Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_7.htm\u0000215","VBScriptEngine Constructor (String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_4.htm\u0000273","WindowsScriptEngine Constructor (String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u0000371","JScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_1.htm\u0000139","V8ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetStackTrace.htm\u0000164","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_5.htm\u0000295","VBScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_1.htm\u0000139","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_6.htm\u0000331","V8ScriptEngine.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_EndCpuProfile.htm\u0000166","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_6.htm\u0000331","HostFunctions.setProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm\u000079","ScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000317","HostFunctions.isTypeObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u000092","V8ScriptEngine Constructor (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_4.htm\u0000154","JScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_2.htm\u0000156","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_8.htm\u0000255","V8ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Interrupt.htm\u0000131","VBScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_5.htm\u0000318","ExtendedHostFunctions.lib Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u000075","VBScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_2.htm\u0000156","WindowsScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor_1.htm\u0000312","V8ScriptEngine.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_6.htm\u0000214","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_2.htm\u0000341","V8ScriptEngine.Evaluate Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000174","ScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm\u000081","ScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000317","ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm\u000096","V8ScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000114","HostFunctions.typeOf Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm\u000092","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_2.htm\u0000340","WindowsScriptEngine.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_CheckAccess.htm\u0000130","JScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_3.htm\u0000195","HostFunctions.newArr Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm\u000070","ScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u000068","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_9.htm\u0000296","ExtendedHostFunctions.type Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u000082","V8ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000133","ScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u000069","ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u000066","Microsoft.ClearScript Namespace\u0000html/N_Microsoft_ClearScript.htm\u0000466","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_7.htm\u0000328","V8ScriptEngine Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_1.htm\u0000159","ScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u000082","V8ScriptEngine.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_3.htm\u0000155","WindowsScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_CollectGarbage.htm\u0000150","ScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000058","HostTypeCollection.AddAssembly Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000117","Document Properties\u0000html/Properties_T_Microsoft_ClearScript_Document.htm\u000073","Extensions.ToHostType Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToHostType.htm\u000083","JScriptEngine Constructor (String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_4.htm\u0000273","V8Script.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Script_Dispose.htm\u0000167","ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngine__ctor.htm\u000069","ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u000096","V8ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000277","Microsoft.ClearScript.JavaScript Namespace\u0000html/N_Microsoft_ClearScript_JavaScript.htm\u0000111","V8ScriptEngine Constructor (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_10.htm\u0000210","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_7.htm\u0000389","V8Runtime.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u000064","DocumentCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentCategory.htm\u000052","HostFunctions.newObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000117","WindowsScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispose.htm\u0000213","ScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u000082","ScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000221","ScriptInterruptedException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000087","NoDefaultScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u000085","V8ScriptEngine.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000232","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u0000148","IHostWindow.EnableModeless Method\u0000html/M_Microsoft_ClearScript_Windows_IHostWindow_EnableModeless.htm\u0000130","HostTypeCollection.AddType Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u000099","ScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u000079","JScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_5.htm\u0000318","Extensions.ToRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u000099","DocumentInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm\u000096","Microsoft.ClearScript.V8 Namespace\u0000html/N_Microsoft_ClearScript_V8.htm\u0000191","V8Script Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm\u000068","HostFunctions.removeProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u000073","WindowsScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_GetStackTrace.htm\u0000186","NoScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u000086","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u0000148","ScriptMemberAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u0000167","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u0000387","IWindowsScriptObject.GetUnderlyingObject Method\u0000html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm\u0000117","Nothing.ToString Method\u0000html/M_Microsoft_ClearScript_Windows_Nothing_ToString.htm\u0000147","DocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentLoader.htm\u000050","Microsoft.ClearScript.Windows Namespace\u0000html/N_Microsoft_ClearScript_Windows.htm\u0000123","StringDocument Properties\u0000html/Properties_T_Microsoft_ClearScript_StringDocument.htm\u000094","HostFunctions.func Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_func.htm\u000080","PropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_PropertyBag.htm\u000079","DocumentInfo.SourceMapUri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_SourceMapUri.htm\u0000144","WindowsScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_Interrupt.htm\u0000131","V8ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u0000428","DocumentSettings.SearchPath Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_SearchPath.htm\u0000149","ScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u000057","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u0000373","DocumentSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentSettings.htm\u0000117","WindowsScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispose.htm\u000083","IScriptEngineException.HResult Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_HResult.htm\u0000119","DefaultScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000059","V8CpuProfile Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u000086","HostTypeCollection Constructor\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u0000142","IPropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_IPropertyBag.htm\u0000169","ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm\u0000254","HostFunctions.getProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm\u000079","DocumentInfo.Uri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Uri.htm\u0000135","IArrayBuffer.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBuffer_Size.htm\u0000121","IHostWindow Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000061","V8Runtime.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000233","HostSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_HostSettings.htm\u000051","Document.Contents Property\u0000html/P_Microsoft_ClearScript_Document_Contents.htm\u0000131","WindowsScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u000080","Page Not Found\u0000html/PageNotFound.htm\u000066","DefaultScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_DefaultScriptUsageAttribute_Access.htm\u0000121","IScriptEngineException.InnerException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_InnerException.htm\u0000131","V8ScriptEngine.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000251","ScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u000066","IScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm\u0000165","ScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ErrorDetails.htm\u0000141","ScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000292","ScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DefaultAccess.htm\u0000207","Node Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000164","DocumentLoader.Default Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_Default.htm\u0000125","ITypedArray.Length Property\u0000html/P_Microsoft_ClearScript_JavaScript_ITypedArray_Length.htm\u0000118","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u0000387","HostTypeCollection Properties\u0000html/Properties_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000100","DefaultScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u000078","Document.Encoding Property\u0000html/P_Microsoft_ClearScript_Document_Encoding.htm\u0000150","DocumentCategory.Script Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_Script.htm\u0000127","IScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_IsFatal.htm\u0000119","IArrayBuffer Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u000054","V8ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u000083","ScriptInterruptedException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000311","Sample Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u000065","DocumentSettings.AccessFlags Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_AccessFlags.htm\u0000133","ImmutableValueAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u000067","ScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ExecutionStarted.htm\u0000142","ModuleCategory.CommonJS Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_CommonJS.htm\u0000129","ScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableListIndexTypeRestriction.htm\u0000197","ScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FormatCode.htm\u0000180","ScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm\u000067","JavaScriptExtensions.ToPromise Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000140","IArrayBufferView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u000070","ScriptInterruptedException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptException.htm\u0000149","Document.Info Property\u0000html/P_Microsoft_ClearScript_Document_Info.htm\u0000126","DocumentInfo.Category Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Category.htm\u0000139","IScriptEngineException.Message Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_Message.htm\u0000115","ScriptMemberAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000117","V8ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000133","V8Runtime Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000138","DocumentSettings.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_ContextCallback.htm\u0000230","ModuleCategory.Standard Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_Standard.htm\u0000131","ScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm\u0000122","ScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_IsFatal.htm\u0000137","ScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableTypeRestriction.htm\u0000205","ScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Name.htm\u0000125","IDataView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u000091","PropertyBag Constructor\u0000html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm\u000053","ScriptMemberAttribute.Flags Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Flags.htm\u0000138","HostSettings.UseAssemblyTable Property\u0000html/P_Microsoft_ClearScript_HostSettings_UseAssemblyTable.htm\u0000212","DocumentInfo.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_ContextCallback.htm\u0000229","IScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptException.htm\u0000131","V8Runtime.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000251","V8CpuProfile.Node.ColumnNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ColumnNumber.htm\u0000149","V8RuntimeConstraints Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000112","StringDocument.Contents Property\u0000html/P_Microsoft_ClearScript_StringDocument_Contents.htm\u0000150","DocumentSettings.FileNameExtensions Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_FileNameExtensions.htm\u0000145","ITypedArray Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u000098","ScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DocumentSettings.htm\u0000141","ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Script.htm\u0000163","ScriptEngineException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000087","ScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptException.htm\u0000149","ScriptMemberAttribute.Name Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Name.htm\u0000208","ScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptObject.htm\u000099","IScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_EngineName.htm\u0000120","V8CpuProfile.RootNode Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_RootNode.htm\u0000133","IArrayBufferView.ArrayBuffer Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_ArrayBuffer.htm\u0000118","V8RuntimeHeapInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u000091","DocumentInfo.Flags Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Flags.htm\u0000165","V8Runtime.CreateScriptEngine Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000141","PropertyBag.Item Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Item.htm\u0000218","StringDocument.Encoding Property\u0000html/P_Microsoft_ClearScript_StringDocument_Encoding.htm\u0000142","V8CpuProfile.Node.FunctionName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_FunctionName.htm\u0000128","DocumentSettings.LoadCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_LoadCallback.htm\u0000147","ScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UseReflectionBindFallback.htm\u0000195","ScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Engine.htm\u0000129","V8RuntimeConstraints.MaxYoungSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxYoungSpaceSize.htm\u0000254","ScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AccessContext.htm\u0000204","V8Runtime.FormatCode Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_FormatCode.htm\u0000182","IScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ErrorDetails.htm\u0000123","ScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableAutoHostVariables.htm\u0000192","IArrayBufferView.Offset Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Offset.htm\u0000122","DocumentInfo.Name Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Name.htm\u0000151","V8Runtime Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u0000265","V8ScriptEngine.MaxRuntimeStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeStackUsage.htm\u0000219","ITypedArray(T) Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000109","StringDocument.Info Property\u0000html/P_Microsoft_ClearScript_StringDocument_Info.htm\u0000133","DocumentSettings.Loader Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_Loader.htm\u0000139","V8CpuProfile.Node.HitCount Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitCount.htm\u0000149","V8RuntimeHeapInfo.HeapSizeLimit Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm\u0000125","V8Runtime.HeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm\u0000159","ScriptInterruptedException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_EngineName.htm\u0000138","PropertyBag.Keys Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Keys.htm\u0000174","IScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ExecutionStarted.htm\u0000124","ScriptObject.Item Property (Int32)\u0000html/P_Microsoft_ClearScript_ScriptObject_Item.htm\u0000199","V8CpuProfile.Samples Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Samples.htm\u0000168","IArrayBufferView.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Size.htm\u0000119","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_JScriptEngine_FileNameExtension.htm\u0000152","ModuleCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u000064","V8ScriptEngine.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u000064","V8ScriptEngine.RuntimeHeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeSampleInterval.htm\u0000159","ScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AllowReflection.htm\u0000203","V8CpuProfile.EndTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_EndTimestamp.htm\u0000152","ScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableNullResultWrapping.htm\u0000222","V8RuntimeHeapInfo.TotalHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSize.htm\u0000125","V8Runtime.MaxHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxHeapSize.htm\u0000278","Document Class\u0000html/T_Microsoft_ClearScript_Document.htm\u0000279","ScriptInterruptedException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ErrorDetails.htm\u0000141","DocumentSettings Class\u0000html/T_Microsoft_ClearScript_DocumentSettings.htm\u0000393","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_VBScriptEngine_FileNameExtension.htm\u0000152","ITypedArray Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000231","ScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ContinuationCallback.htm\u0000182","V8ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Script.htm\u0000172","V8CpuProfile.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Name.htm\u0000122","ScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnforceAnonymousTypeAccess.htm\u0000221","PropertyBag.Values Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Values.htm\u0000174","ScriptObject.Item Property (String, Object[])\u0000html/P_Microsoft_ClearScript_ScriptObject_Item_1.htm\u0000281","DocumentAccessFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentAccessFlags.htm\u0000201","V8RuntimeHeapInfo.TotalHeapSizeExecutable Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSizeExecutable.htm\u0000126","V8Runtime.MaxStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxStackUsage.htm\u0000216","V8CpuProfile.Sample.Node Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Node.htm\u0000135","V8ScriptEngine.SuppressExtensionMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressExtensionMethodEnumeration.htm\u0000211","WindowsScriptEngine.Dispatcher Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispatcher.htm\u0000127","ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FileNameExtension.htm\u0000132","ScriptEngine.Current Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Current.htm\u0000180","ScriptInterruptedException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ExecutionStarted.htm\u0000142","V8CpuProfile.Node.BailoutReason Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_BailoutReason.htm\u0000135","ScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_EngineName.htm\u0000138","V8RuntimeHeapInfo.TotalPhysicalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalPhysicalSize.htm\u0000126","V8CpuProfile.Node.HitLines Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLines.htm\u0000176","ITypedArray(T) Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000373","V8Runtime.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_Name.htm\u0000127","DocumentCategory Class\u0000html/T_Microsoft_ClearScript_DocumentCategory.htm\u0000241","ScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm\u0000152","EventConnection(T) Class\u0000html/T_Microsoft_ClearScript_EventConnection_1.htm\u0000269","WindowsScriptEngine.HostWindow Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_HostWindow.htm\u0000151","V8ScriptEngine.SuppressInstanceMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressInstanceMethodEnumeration.htm\u0000192","V8CpuProfile.Sample.Timestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Timestamp.htm\u0000153","ScriptInterruptedException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_IsFatal.htm\u0000137","V8RuntimeConstraints Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000317","IWindowsScriptObject Interface\u0000html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000109","V8RuntimeHeapInfo.UsedHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_UsedHeapSize.htm\u0000125","Undefined Class\u0000html/T_Microsoft_ClearScript_Undefined.htm\u0000259","V8ScriptEngine.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_CpuProfileSampleInterval.htm\u0000169","ScriptEngine Class\u0000html/T_Microsoft_ClearScript_ScriptEngine.htm\u00001602","V8CpuProfile.Node.LineNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_LineNumber.htm\u0000149","DocumentContextCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentContextCallback.htm\u0000192","WindowsScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Script.htm\u0000172","V8Script.DocumentInfo Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_DocumentInfo.htm\u0000123","HostTypeCollection Class\u0000html/T_Microsoft_ClearScript_HostTypeCollection.htm\u0000825","V8CpuProfile.StartTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_StartTimestamp.htm\u0000152","ScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm\u0000154","V8RuntimeFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeFlags.htm\u0000183","V8CacheKind Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CacheKind.htm\u0000186","V8Runtime.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_CpuProfileSampleInterval.htm\u0000169","V8ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_FileNameExtension.htm\u0000152","V8CpuProfile.Node.ChildNodes Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ChildNodes.htm\u0000172","EventSource(T) Class\u0000html/T_Microsoft_ClearScript_EventSource_1.htm\u0000262","ClearScript Library Reference\u0000html/R_Project_Reference.htm\u0000120","DocumentFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentFlags.htm\u0000138","V8Script.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_Name.htm\u0000185","V8RuntimeConstraints.MaxExecutableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxExecutableSize.htm\u0000286","JavaScriptExtensions Class\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000239","V8CpuProfile.Node.NodeId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_NodeId.htm\u0000151","ImmutableValueAttribute Class\u0000html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000457","V8RuntimeHeapInfo Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000276","V8Runtime.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_DocumentSettings.htm\u0000143","V8ScriptEngine.MaxRuntimeHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeHeapSize.htm\u0000278","V8CpuProfile Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000291","ContinuationCallback Delegate\u0000html/T_Microsoft_ClearScript_ContinuationCallback.htm\u0000127","DocumentInfo Structure\u0000html/T_Microsoft_ClearScript_DocumentInfo.htm\u0000310","IHostWindow.OwnerHandle Property\u0000html/P_Microsoft_ClearScript_Windows_IHostWindow_OwnerHandle.htm\u0000124","V8RuntimeConstraints.MaxNewSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxNewSpaceSize.htm\u0000196","ScriptEngineException Class\u0000html/T_Microsoft_ClearScript_ScriptEngineException.htm\u0000675","ModuleCategory Class\u0000html/T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u0000146","V8CpuProfile.Node.ScriptId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptId.htm\u0000146","V8CpuProfileFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfileFlags.htm\u0000134","V8Script Class\u0000html/T_Microsoft_ClearScript_V8_V8Script.htm\u0000287","DocumentLoadCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentLoadCallback.htm\u0000160","V8RuntimeConstraints.MaxOldSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxOldSpaceSize.htm\u0000196","DefaultScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000517","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00002191","V8CpuProfile.Node.ScriptName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptName.htm\u0000133","NoDefaultScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000563","V8CpuProfile.Node Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000362","ScriptInterruptedException Class\u0000html/T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000691","DocumentLoader Class\u0000html/T_Microsoft_ClearScript_DocumentLoader.htm\u0000267","Nothing Class\u0000html/T_Microsoft_ClearScript_Windows_Nothing.htm\u0000292","NoScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000599","V8CpuProfile.Node.HitLine Structure\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000253","ScriptMemberAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000645","ScriptMemberFlags Enumeration\u0000html/T_Microsoft_ClearScript_ScriptMemberFlags.htm\u0000216","PropertyBag Class\u0000html/T_Microsoft_ClearScript_PropertyBag.htm\u0000592","V8CpuProfile.Sample Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000259","ExtendedHostFunctions Class\u0000html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001325","ScriptAccess Enumeration\u0000html/T_Microsoft_ClearScript_ScriptAccess.htm\u0000197","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00002191","Extensions Class\u0000html/T_Microsoft_ClearScript_Extensions.htm\u0000243","ScriptObject Class\u0000html/T_Microsoft_ClearScript_ScriptObject.htm\u0000950","ScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000555","IPropertyBag Interface\u0000html/T_Microsoft_ClearScript_IPropertyBag.htm\u0000743","V8ScriptEngine Class\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002867","IScriptableObject Interface\u0000html/T_Microsoft_ClearScript_IScriptableObject.htm\u0000121","V8ScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm\u0000302","StringDocument Class\u0000html/T_Microsoft_ClearScript_StringDocument.htm\u0000304","V8Runtime Class\u0000html/T_Microsoft_ClearScript_V8_V8Runtime.htm\u00001154","IScriptEngineException Interface\u0000html/T_Microsoft_ClearScript_IScriptEngineException.htm\u0000220","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00002158","IArrayBuffer Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000153","VoidResult Class\u0000html/T_Microsoft_ClearScript_VoidResult.htm\u0000280","WindowsScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngineFlags.htm\u0000427","IArrayBufferView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000170","IHostWindow Interface\u0000html/T_Microsoft_ClearScript_Windows_IHostWindow.htm\u0000138","HostFunctions Class\u0000html/T_Microsoft_ClearScript_HostFunctions.htm\u0000961","IDataView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000218","HostItemFlags Enumeration\u0000html/T_Microsoft_ClearScript_HostItemFlags.htm\u0000239","HostSettings Class\u0000html/T_Microsoft_ClearScript_HostSettings.htm\u0000132"] \ No newline at end of file +["ClearScript Library - Redirect\u0000index.html\u000018","General Error\u0000html/GeneralError.htm\u000032","Undefined Fields\u0000html/Fields_T_Microsoft_ClearScript_Undefined.htm\u000052","HitLine Fields\u0000html/Fields_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u000066","DocumentInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentInfo.htm\u0000159","Extensions Methods\u0000html/Methods_T_Microsoft_ClearScript_Extensions.htm\u0000143","V8CpuProfile.Node.HitLine.HitCount Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_HitCount.htm\u0000130","ClearScript Library - Search\u0000search.html\u000011","DocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentLoader.htm\u0000175","IScriptableObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm\u000057","EventConnection(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm\u0000174","ImmutableValueAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000221","EventSource(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource_1.htm\u0000175","HostTypeCollection Methods\u0000html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000441","DocumentSettings Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentSettings.htm\u0000231","HostTypeCollection Events\u0000html/Events_T_Microsoft_ClearScript_HostTypeCollection.htm\u000067","PropertyBag Events\u0000html/Events_T_Microsoft_ClearScript_PropertyBag.htm\u000060","Undefined.Value Field\u0000html/F_Microsoft_ClearScript_Undefined_Value.htm\u0000105","DocumentCategory Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentCategory.htm\u0000158","V8CpuProfile.Node.HitLine.LineNumber Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_LineNumber.htm\u0000103","Nothing.Value Field\u0000html/F_Microsoft_ClearScript_Windows_Nothing_Value.htm\u0000107","Document Methods\u0000html/Methods_T_Microsoft_ClearScript_Document.htm\u0000158","PropertyBag.PropertyChanged Event\u0000html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm\u0000161","IPropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm\u0000305","DefaultScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000221","ScriptInterruptedException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u000071","IArrayBuffer Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u000084","ITypedArray Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000102","IDataView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000102","IArrayBufferView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u000081","NoDefaultScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000221","JavaScriptExtensions Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000138","ITypedArray(T) Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000143","StringDocument Methods\u0000html/Methods_T_Microsoft_ClearScript_StringDocument.htm\u0000158","PropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_PropertyBag.htm\u0000240","Node Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000161","Sample Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000161","V8CpuProfile Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000182","Undefined Methods\u0000html/Methods_T_Microsoft_ClearScript_Undefined.htm\u0000158","V8RuntimeConstraints Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000159","V8Script Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm\u0000169","ScriptMemberAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000221","V8RuntimeHeapInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000159","ScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000221","HitLine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000164","NoScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000221","ExtendedHostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001233","ScriptInterruptedException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000214","VoidResult Methods\u0000html/Methods_T_Microsoft_ClearScript_VoidResult.htm\u0000158","ScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptObject.htm\u0000798","ScriptEngineException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000214","V8Runtime Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000739","HostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_HostFunctions.htm\u0000852","IHostWindow Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000053","IWindowsScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u000054","DocumentInfo Constructor (String)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm\u0000132","DocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_DiscardCachedDocuments.htm\u0000109","DefaultScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm\u0000138","DocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DocumentLoader__ctor.htm\u000094","DocumentInfo Constructor (Uri)\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm\u0000132","DocumentSettings.AddSystemDocument Method (String, Document)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000221","DocumentLoader.LoadDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocument.htm\u0000401","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_1.htm\u0000250","ScriptEngineException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptEngineException.htm\u000071","Nothing Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Nothing.htm\u000053","DocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocumentAsync.htm\u0000399","ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm\u00001258","Document Constructor\u0000html/M_Microsoft_ClearScript_Document__ctor.htm\u000094","DocumentSettings Constructor\u0000html/M_Microsoft_ClearScript_DocumentSettings__ctor.htm\u000094","DocumentSettings.AddSystemDocument Method (String, DocumentCategory, String, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_2.htm\u0000290","EventConnection(T).disconnect Method\u0000html/M_Microsoft_ClearScript_EventConnection_1_disconnect.htm\u0000105","V8ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002089","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00001646","ExtendedHostFunctions.arrType(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_arrType__1.htm\u0000211","ExtendedHostFunctions.comType Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_comType.htm\u0000359","ExtendedHostFunctions.lib Method (String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib_1.htm\u0000362","EventSource(T).connect Method\u0000html/M_Microsoft_ClearScript_EventSource_1_connect.htm\u0000171","Nothing Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Nothing.htm\u0000159","ExtendedHostFunctions.typeLibEnums(T) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_typeLibEnums__1.htm\u0000285","DocumentSettings.AddSystemDocument Method (String, String)\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_3.htm\u0000210","ExtendedHostFunctions.newComObj Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_newComObj.htm\u0000363","Extensions.ToHostType Method (Type, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType_1.htm\u0000294","ExtendedHostFunctions Constructor\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm\u000094","Extensions.ToRestrictedHostObject(T) Method (T, ScriptEngine)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1_1.htm\u0000333","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00001634","ExtendedHostFunctions.lib Method (HostTypeCollection, String[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u0000437","Extensions.ToHostType Method (Type)\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType.htm\u0000253","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00001646","DefaultScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000096","HostFunctions.isTypeObj(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj__1.htm\u0000196","Extensions.ToRestrictedHostObject(T) Method (T)\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1.htm\u0000293","HostFunctions.cast(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_cast__1.htm\u0000261","HostFunctions.isType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm\u0000276","HostFunctions.func Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func.htm\u0000285","HostFunctions.flags(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_flags__1.htm\u0000380","ExtendedHostFunctions.type Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u0000420","HostFunctions.func(T) Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_func__1.htm\u0000484","HostFunctions.asType(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_asType__1.htm\u0000315","ExtendedHostFunctions.type Method (String, String, Object[])\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_1.htm\u0000490","HostFunctions.newObj Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000217","HostFunctions.del(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_del__1.htm\u0000419","HostFunctions.newObj Method (IDynamicMetaObjectProvider, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_1.htm\u0000230","HostFunctions.newArr Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr.htm\u0000211","HostFunctions.newArr(T) Method (Int32[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr__1.htm\u0000304","HostFunctions.removeElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeElement.htm\u0000232","HostFunctions.toDecimal Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDecimal.htm\u0000313","HostFunctions.newObj Method (Object, Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_2.htm\u0000302","HostFunctions.newVar(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newVar__1.htm\u0000468","HostFunctions.setProperty Method (IPropertyBag, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty.htm\u0000260","HostFunctions.toChar Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toChar.htm\u0000313","HostFunctions.getElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getElement.htm\u0000232","ExtendedHostFunctions.type Method (Type)\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_2.htm\u0000224","HostFunctions.removeProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u0000216","HostFunctions.toDouble Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDouble.htm\u0000313","HostFunctions.toSByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSByte.htm\u0000313","HostFunctions.toSingle Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSingle.htm\u0000313","HostFunctions.toInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt32.htm\u0000313","HostFunctions.toUInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt16.htm\u0000313","HostFunctions.toInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt64.htm\u0000313","HostFunctions.getProperty Method (IPropertyBag, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty.htm\u0000216","HostFunctions Constructor\u0000html/M_Microsoft_ClearScript_HostFunctions__ctor.htm\u000094","HostTypeCollection.AddAssembly Method (Assembly)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000142","HostFunctions.proc Method\u0000html/M_Microsoft_ClearScript_HostFunctions_proc.htm\u0000423","HostFunctions.newObj(T) Method (Object[])\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj__1.htm\u0000361","HostTypeCollection.AddType Method (Type)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_2.htm\u0000135","HostFunctions.removeProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty_1.htm\u0000216","HostTypeCollection.GetNamespaceNode Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_GetNamespaceNode.htm\u0000157","HostFunctions.typeOf Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf.htm\u0000310","HostFunctions.toStaticType Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toStaticType.htm\u0000196","HostTypeCollection.AddType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000245","HostTypeCollection.AddType Method (String, Type[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_1.htm\u0000201","HostFunctions.toUInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt64.htm\u0000313","HostFunctions.getProperty Method (IDynamicMetaObjectProvider, String)\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty_1.htm\u0000216","HostTypeCollection.AddAssembly Method (String)\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_2.htm\u0000151","HostFunctions.setProperty Method (IDynamicMetaObjectProvider, String, Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty_1.htm\u0000260","HostTypeCollection.AddAssembly Method (Assembly, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_1.htm\u0000204","HostTypeCollection Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u000097","HostTypeCollection Constructor (Predicate(Type), Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_1.htm\u0000227","HostFunctions.isTypeObj Method (Object)\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u0000210","HostFunctions.isNull Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isNull.htm\u0000180","HostFunctions.setElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setElement.htm\u0000273","HostFunctions.toInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt16.htm\u0000313","HostTypeCollection.AddAssembly Method (String, Predicate(Type))\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_3.htm\u0000213","HostFunctions.toUInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt32.htm\u0000313","HostFunctions.typeOf(T) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf__1.htm\u0000282","ImmutableValueAttribute Constructor\u0000html/M_Microsoft_ClearScript_ImmutableValueAttribute__ctor.htm\u000094","HostTypeCollection Constructor (Predicate(Type), String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_2.htm\u0000236","HostFunctions.toByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toByte.htm\u0000313","IScriptableObject.OnExposedToScriptCode Method\u0000html/M_Microsoft_ClearScript_IScriptableObject_OnExposedToScriptCode.htm\u0000191","HostTypeCollection Constructor (Assembly[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_3.htm\u0000167","IArrayBufferView.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_GetBytes.htm\u0000136","HostFunctions.tryCatch Method\u0000html/M_Microsoft_ClearScript_HostFunctions_tryCatch.htm\u0000555","IArrayBuffer.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_WriteBytes.htm\u0000274","NoDefaultScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoDefaultScriptAccessAttribute__ctor.htm\u000094","PropertyBag.ContainsKey Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ContainsKey.htm\u0000180","PropertyBag.RemovePropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_RemovePropertyNoCheck.htm\u0000165","ITypedArray(T).Write Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm\u0000269","ITypedArray(T).Read Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm\u0000269","ScriptEngineException Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000096","HostTypeCollection Constructor (String[])\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_4.htm\u0000176","JavaScriptExtensions.ToPromise Method (Task, ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_1.htm\u0000296","NoScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoScriptAccessAttribute__ctor.htm\u000094","PropertyBag.TryGetValue Method\u0000html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm\u0000235","IArrayBufferView.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_ReadBytes.htm\u0000273","JavaScriptExtensions.ToPromise(TResult) Method (Task(TResult), ScriptEngine)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_1.htm\u0000336","IArrayBuffer.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm\u0000273","ScriptEngineException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_GetObjectData.htm\u0000210","PropertyBag.Remove Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Remove.htm\u0000174","ITypedArray(T).ToArray Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm\u0000133","PropertyBag Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor.htm\u000097","PropertyBag.SetPropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm\u0000177","PropertyBag Constructor (Boolean)\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_1.htm\u0000156","JavaScriptExtensions.ToPromise Method (Task)\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000256","ScriptEngineException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_1.htm\u0000172","ScriptEngineException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_ToString.htm\u0000134","JavaScriptExtensions.ToPromise(TResult) Method (Task(TResult))\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1.htm\u0000297","IArrayBufferView.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_WriteBytes.htm\u0000273","ScriptEngineException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_2.htm\u0000131","ScriptEngine.AddCOMObject Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_5.htm\u0000268","ScriptEngine.AddCOMType Method (String, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_5.htm\u0000268","ScriptEngine.AddCOMObject Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_7.htm\u0000303","IArrayBuffer.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_GetBytes.htm\u0000140","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_1.htm\u0000308","ScriptEngine.AddCOMType Method (String, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_7.htm\u0000303","ScriptEngine.AddHostType Method (String, HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_3.htm\u0000292","ScriptEngine.AddCOMType Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_3.htm\u0000343","ScriptEngine.AddHostType Method (Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_7.htm\u0000232","ScriptEngine.AddHostType Method (String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_5.htm\u0000318","ScriptEngineException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_3.htm\u0000173","ScriptEngine.AddHostType Method (String, HostItemFlags, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_1.htm\u0000402","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_2.htm\u0000299","PropertyBag.Add Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Add.htm\u0000192","ScriptEngine.AddCOMType Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_6.htm\u0000259","ScriptEngine.AddRestrictedHostObject(T) Method (String, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1_1.htm\u0000256","ScriptEngine.AddCOMType Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_4.htm\u0000224","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_1.htm\u0000308","ScriptEngine.AddCOMType Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000264","ScriptEngine.AddCOMObject Method (String, HostItemFlags, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000264","ScriptEngine.AddCOMType Method (String, HostItemFlags, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_2.htm\u0000299","ScriptEngine.AddHostType Method (String, String, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_4.htm\u0000362","PropertyBag.ClearNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ClearNoCheck.htm\u0000114","ScriptEngine.AddRestrictedHostObject(T) Method (String, HostItemFlags, T)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1.htm\u0000294","ScriptEngine.AddHostType Method (String, HostItemFlags, String, Type[])\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_2.htm\u0000358","ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_CollectGarbage.htm\u0000136","ScriptEngine.AddCOMObject Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_6.htm\u0000259","ScriptEngine.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u0000174","ScriptEngine.ExecuteDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u0000174","ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Interrupt.htm\u0000120","ScriptEngine.EvaluateDocument Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u0000211","ScriptEngine.AddCOMObject Method (String, HostItemFlags, String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_3.htm\u0000343","ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor.htm\u0000232","ScriptEngine.EvaluateDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_2.htm\u0000292","ScriptEngine.Evaluate Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u0000243","ScriptEngine.Execute Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_2.htm\u0000315","ScriptEngine.ExecuteDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_2.htm\u0000255","ScriptInterruptedException Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000096","ScriptInterruptedException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm\u0000210","ScriptEngine.Evaluate Method (String, Boolean, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm\u0000550","ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose_1.htm\u0000199","ScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm\u0000207","ScriptEngine.ExecuteDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_1.htm\u0000214","ScriptEngine.AddCOMObject Method (String, Guid)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_4.htm\u0000224","ScriptEngine Constructor (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor_1.htm\u0000197","ScriptInterruptedException Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_2.htm\u0000131","ScriptEngine.EvaluateDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_1.htm\u0000251","ScriptEngine.Evaluate Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_1.htm\u0000233","ScriptEngine.AddHostObject Method (String, HostItemFlags, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u0000487","ScriptEngine.Execute Method (String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_1.htm\u0000197","ScriptInterruptedException Constructor (SerializationInfo, StreamingContext)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_1.htm\u0000172","ScriptInterruptedException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_ToString.htm\u0000134","ScriptInterruptedException Constructor (String, Exception)\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_3.htm\u0000173","ScriptEngine.Evaluate Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_3.htm\u0000291","ScriptMemberAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u000096","ScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000096","ScriptMemberAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_1.htm\u0000138","ScriptObject.GetProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u0000157","ScriptObject.DeleteProperty Method (Int32)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u0000156","ScriptMemberAttribute Constructor (ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_2.htm\u0000177","ScriptObject.SetProperty Method (Int32, Object)\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u0000174","V8RuntimeConstraints Constructor\u0000html/M_Microsoft_ClearScript_V8_V8RuntimeConstraints__ctor.htm\u000096","V8CpuProfile.ToJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_ToJson.htm\u0000133","StringDocument Constructor\u0000html/M_Microsoft_ClearScript_StringDocument__ctor.htm\u0000159","ScriptEngine.AddHostObject Method (String, Object)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject_1.htm\u0000202","ScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm\u0000201","ScriptMemberAttribute Constructor (String, ScriptAccess, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_6.htm\u0000222","V8Runtime.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectGarbage.htm\u0000134","ScriptMemberAttribute Constructor (ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_3.htm\u0000136","ScriptEngine.Execute Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute.htm\u0000206","ScriptUsageAttribute Constructor (ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor_1.htm\u0000138","ScriptObject.DeleteProperty Method (String)\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty_1.htm\u0000158","V8Runtime.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000200","V8Runtime.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u0000165","Undefined.ToString Method\u0000html/M_Microsoft_ClearScript_Undefined_ToString.htm\u0000145","V8Runtime.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000164","V8CpuProfile.WriteJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_WriteJson.htm\u0000153","ScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm\u0000200","ScriptObject.SetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty_1.htm\u0000227","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_2.htm\u0000245","ScriptEngine.AddHostType Method (HostItemFlags, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000272","ScriptMemberAttribute Constructor (String, ScriptMemberFlags)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_7.htm\u0000180","ScriptObject.GetProperty Method (String, Object[])\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty_1.htm\u0000214","V8Runtime.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_6.htm\u0000216","V8Runtime.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_4.htm\u0000330","ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteCommand.htm\u0000211","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_6.htm\u0000331","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_8.htm\u0000291","V8Runtime Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u000099","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_1.htm\u0000226","V8Runtime.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_1.htm\u0000204","V8Runtime.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_EndCpuProfile.htm\u0000166","V8Runtime Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_6.htm\u0000156","V8ScriptEngine.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectCpuProfileSample.htm\u0000107","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_2.htm\u0000178","ScriptEngine.Execute Method (String, String)\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_3.htm\u0000255","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_2.htm\u0000341","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_5.htm\u0000324","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_8.htm\u0000235","V8ScriptEngine.CompileDocument Method (String, DocumentCategory)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_1.htm\u0000204","V8Runtime Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_1.htm\u0000139","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_3.htm\u0000409","V8Runtime.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_7.htm\u0000328","V8Runtime.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_5.htm\u0000296","V8Runtime.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_1.htm\u0000375","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_7.htm\u0000391","V8Runtime.CreateScriptEngine Method (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_2.htm\u0000267","V8ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectGarbage.htm\u0000150","V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_3.htm\u0000220","ScriptEngine.Finalize Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Finalize.htm\u0000172","V8Runtime.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_3.htm\u0000157","V8Runtime.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Dispose.htm\u0000174","ScriptEngine.AddHostType Method (String, Type)\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_6.htm\u0000252","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_5.htm\u0000368","V8Runtime Constructor (String, V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_10.htm\u0000195","V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_9.htm\u0000276","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_2.htm\u0000245","V8Runtime.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile_1.htm\u0000203","V8Runtime Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_7.htm\u0000195","V8Runtime.CreateScriptEngine Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_3.htm\u0000200","V8ScriptEngine.Compile Method (DocumentInfo, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000198","V8Runtime Constructor (V8RuntimeFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_4.htm\u0000139","V8Runtime.GetHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_GetHeapInfo.htm\u0000116","ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_GetStackTrace.htm\u0000153","V8Runtime.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_4.htm\u0000372","V8Runtime.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_8.htm\u0000357","V8ScriptEngine.BeginCpuProfile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u0000166","V8Runtime Constructor (String, V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_11.htm\u0000237","V8Runtime Constructor (V8RuntimeFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_5.htm\u0000180","V8Runtime.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectCpuProfileSample.htm\u0000107","V8ScriptEngine.CompileDocument Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000164","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_6.htm\u0000331","V8ScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000114","V8ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetStackTrace.htm\u0000164","V8ScriptEngine.Evaluate Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000174","V8Runtime.CreateScriptEngine Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000143","JScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u000099","V8ScriptEngine Constructor (V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_4.htm\u0000154","V8ScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u0000213","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_2.htm\u0000198","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_3.htm\u0000409","V8ScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_6.htm\u0000171","V8Script.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Script_Dispose.htm\u0000167","VBScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u000099","JScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_1.htm\u0000139","V8Runtime.CompileDocument Method (String, DocumentCategory, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_5.htm\u0000368","V8ScriptEngine Constructor (V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_1.htm\u0000159","V8ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Interrupt.htm\u0000131","JScriptEngine Constructor (String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_4.htm\u0000273","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_7.htm\u0000328","IHostWindow.EnableModeless Method\u0000html/M_Microsoft_ClearScript_Windows_IHostWindow_EnableModeless.htm\u0000130","V8ScriptEngine.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_EndCpuProfile.htm\u0000166","V8ScriptEngine Constructor (String, V8RuntimeConstraints)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_7.htm\u0000215","WindowsScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_Interrupt.htm\u0000131","DefaultScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000059","JScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_2.htm\u0000156","VBScriptEngine Constructor (WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_1.htm\u0000139","V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_3.htm\u0000240","VBScriptEngine Constructor (String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_4.htm\u0000273","DocumentSettings.AddSystemDocument Method\u0000html/Overload_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000110","DocumentInfo Constructor\u0000html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm\u000064","ExtendedHostFunctions.type Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u000082","WindowsScriptEngine.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_VerifyAccess.htm\u0000107","IWindowsScriptObject.GetUnderlyingObject Method\u0000html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm\u0000117","V8ScriptEngine Constructor (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_10.htm\u0000210","JScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_5.htm\u0000318","VBScriptEngine Constructor (String)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_2.htm\u0000156","V8ScriptEngine.CompileDocument Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_8.htm\u0000291","ExtendedHostFunctions.lib Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u000075","Extensions.ToHostType Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToHostType.htm\u000083","JScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_3.htm\u0000195","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_8.htm\u0000255","V8Runtime.CreateScriptEngine Method (String, V8ScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_4.htm\u0000282","WindowsScriptEngine.Dispose Method (Boolean)\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispose.htm\u0000213","Microsoft.ClearScript Namespace\u0000html/N_Microsoft_ClearScript.htm\u0000466","Nothing.ToString Method\u0000html/M_Microsoft_ClearScript_Windows_Nothing_ToString.htm\u0000147","VBScriptEngine Constructor (String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_3.htm\u0000195","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_5.htm\u0000295","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine_ExecuteCommand.htm\u0000230","V8ScriptEngine Constructor (String, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_11.htm\u0000252","VBScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_5.htm\u0000318","WindowsScriptEngine Constructor (String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u0000371","ScriptMemberAttribute Constructor (String)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_4.htm\u0000141","HostFunctions.func Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_func.htm\u000080","HostFunctions.isTypeObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u000092","V8ScriptEngine Constructor (V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_5.htm\u0000195","WindowsScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_GetStackTrace.htm\u0000186","ScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u000069","Microsoft.ClearScript.JavaScript Namespace\u0000html/N_Microsoft_ClearScript_JavaScript.htm\u0000111","WindowsScriptEngine.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_CheckAccess.htm\u0000130","HostFunctions.getProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm\u000079","V8ScriptEngine.Compile Method (String, String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_6.htm\u0000214","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine_ExecuteCommand.htm\u0000277","ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngine__ctor.htm\u000069","ScriptMemberAttribute Constructor (String, ScriptAccess)\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_5.htm\u0000182","ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u000096","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_1.htm\u0000372","ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm\u000096","ScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u000066","ScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u000068","ScriptMemberAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u0000167","V8Runtime.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u000064","WindowsScriptEngine Constructor (String, String, String, WindowsScriptEngineFlags)\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor_1.htm\u0000312","ScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000221","HostFunctions.newObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000117","WindowsScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_CollectGarbage.htm\u0000150","V8ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u000083","Microsoft.ClearScript.V8 Namespace\u0000html/N_Microsoft_ClearScript_V8.htm\u0000191","ScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm\u000067","ScriptInterruptedException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000087","ScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u000082","ScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000058","HostFunctions.newArr Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm\u000070","ScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u000057","V8ScriptEngine.BeginCpuProfile Method (String, V8CpuProfileFlags)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile_1.htm\u0000204","V8ScriptEngine.CompileDocument Method (String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_4.htm\u0000372","V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags, Int32)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_9.htm\u0000296","V8Runtime.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000233","V8ScriptEngine.Execute Method (V8Script)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000174","HostFunctions.removeProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u000073","ScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm\u000081","V8ScriptEngine.Compile Method (DocumentInfo, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_2.htm\u0000340","V8Runtime Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u0000265","V8ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000133","Microsoft.ClearScript.Windows Namespace\u0000html/N_Microsoft_ClearScript_Windows.htm\u0000123","ScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u000082","V8ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000133","Extensions.ToRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u000099","ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u000066","HostFunctions.setProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm\u000079","V8ScriptEngine.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u000064","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_7.htm\u0000389","V8ScriptEngine.Compile Method (String)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_3.htm\u0000155","HostFunctions.typeOf Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm\u000092","HostTypeCollection Properties\u0000html/Properties_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000100","PropertyBag Constructor\u0000html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm\u000053","ITypedArray(T) Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000109","IDataView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u000091","Document Properties\u0000html/Properties_T_Microsoft_ClearScript_Document.htm\u000073","DocumentSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentSettings.htm\u0000117","V8ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_ExecuteCommand.htm\u0000230","V8ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000277","V8Runtime.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000251","ImmutableValueAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u000067","ModuleCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u000064","DocumentCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentCategory.htm\u000052","HostSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_HostSettings.htm\u000051","PropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_PropertyBag.htm\u000079","ITypedArray Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u000098","ScriptEngineException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000087","V8ScriptEngine.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000232","V8ScriptEngine.GetRuntimeHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetRuntimeHeapInfo.htm\u0000124","NoDefaultScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u000085","ScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000292","V8Runtime.CreateScriptEngine Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000141","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u0000148","DocumentInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm\u000096","V8ScriptEngine.Compile Method (String, V8CacheKind, Byte[], Boolean)\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_4.htm\u0000328","V8ScriptEngine.Compile Method (String, String, V8CacheKind, Byte[])\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_8.htm\u0000356","ScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000317","IPropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_IPropertyBag.htm\u0000169","ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm\u0000283","V8CpuProfile Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u000086","ScriptMemberAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000117","V8RuntimeConstraints Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000112","IHostWindow Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000061","NoScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u000086","DocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentLoader.htm\u000050","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u0000148","V8ScriptEngine.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000251","DocumentLoader.Default Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_Default.htm\u0000125","DefaultScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_DefaultScriptUsageAttribute_Access.htm\u0000121","V8RuntimeHeapInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u000091","ScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptObject.htm\u000099","DocumentSettings.SearchPath Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_SearchPath.htm\u0000149","IScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm\u0000165","HostSettings.UseAssemblyTable Property\u0000html/P_Microsoft_ClearScript_HostSettings_UseAssemblyTable.htm\u0000212","DocumentSettings.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_ContextCallback.htm\u0000230","ScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000317","ScriptInterruptedException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000311","WindowsScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispose.htm\u000083","Node Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000164","V8Script Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm\u000068","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u0000430","IArrayBuffer Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u000054","HostTypeCollection.AddAssembly Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000117","ScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u000079","DocumentCategory.Script Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_Script.htm\u0000127","DocumentSettings.AccessFlags Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_AccessFlags.htm\u0000133","Document.Contents Property\u0000html/P_Microsoft_ClearScript_Document_Contents.htm\u0000131","IScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_EngineName.htm\u0000120","Sample Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u000065","WindowsScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u000080","DocumentSettings.FileNameExtensions Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_FileNameExtensions.htm\u0000145","StringDocument Properties\u0000html/Properties_T_Microsoft_ClearScript_StringDocument.htm\u000094","IArrayBufferView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u000070","Page Not Found\u0000html/PageNotFound.htm\u000066","HostTypeCollection.AddType Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u000099","IScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ErrorDetails.htm\u0000123","V8Runtime Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000138","IScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptException.htm\u0000131","DefaultScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u000078","Document.Encoding Property\u0000html/P_Microsoft_ClearScript_Document_Encoding.htm\u0000150","IScriptEngineException.HResult Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_HResult.htm\u0000119","V8ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u0000471","IArrayBuffer.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBuffer_Size.htm\u0000121","DocumentSettings.LoadCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_LoadCallback.htm\u0000147","ModuleCategory.CommonJS Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_CommonJS.htm\u0000129","HostTypeCollection Constructor\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u0000142","PropertyBag.Values Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Values.htm\u0000174","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u0000430","IArrayBufferView.ArrayBuffer Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_ArrayBuffer.htm\u0000118","IScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ExecutionStarted.htm\u0000124","ScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_IsFatal.htm\u0000137","IScriptEngineException.InnerException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_InnerException.htm\u0000131","Document.Info Property\u0000html/P_Microsoft_ClearScript_Document_Info.htm\u0000126","ITypedArray.Length Property\u0000html/P_Microsoft_ClearScript_JavaScript_ITypedArray_Length.htm\u0000118","DocumentSettings.Loader Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_Loader.htm\u0000139","ModuleCategory.Standard Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_Standard.htm\u0000131","ScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ContinuationCallback.htm\u0000182","ScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnforceAnonymousTypeAccess.htm\u0000221","ScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_EngineName.htm\u0000138","ScriptInterruptedException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_EngineName.htm\u0000138","IArrayBufferView.Offset Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Offset.htm\u0000122","JavaScriptExtensions.ToPromise Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000140","IScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_IsFatal.htm\u0000119","ScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptException.htm\u0000149","ScriptInterruptedException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ExecutionStarted.htm\u0000142","V8CpuProfile.EndTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_EndTimestamp.htm\u0000152","ScriptEngine.Current Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Current.htm\u0000180","IArrayBufferView.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Size.htm\u0000119","ScriptEngine.ExposeHostObjectStaticMembers Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ExposeHostObjectStaticMembers.htm\u0000144","V8CpuProfile.Node.ColumnNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ColumnNumber.htm\u0000149","ScriptInterruptedException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ErrorDetails.htm\u0000141","PropertyBag.Item Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Item.htm\u0000218","ScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm\u0000152","StringDocument.Encoding Property\u0000html/P_Microsoft_ClearScript_StringDocument_Encoding.htm\u0000142","IScriptEngineException.Message Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_Message.htm\u0000115","ScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ErrorDetails.htm\u0000141","V8CpuProfile.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Name.htm\u0000122","ScriptInterruptedException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_IsFatal.htm\u0000137","V8CpuProfile.Node.FunctionName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_FunctionName.htm\u0000128","ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FileNameExtension.htm\u0000132","ScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DefaultAccess.htm\u0000207","PropertyBag.Keys Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Keys.htm\u0000174","ScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm\u0000154","StringDocument.Info Property\u0000html/P_Microsoft_ClearScript_StringDocument_Info.htm\u0000133","ScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ExecutionStarted.htm\u0000142","V8CpuProfile.Node.BailoutReason Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_BailoutReason.htm\u0000135","ScriptInterruptedException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptException.htm\u0000149","V8CpuProfile.Node.HitCount Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitCount.htm\u0000149","ScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FormatCode.htm\u0000180","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u0000416","ScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm\u0000122","ScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableListIndexTypeRestriction.htm\u0000197","DocumentInfo.Category Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Category.htm\u0000139","ScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Name.htm\u0000125","ScriptMemberAttribute.Flags Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Flags.htm\u0000138","V8CpuProfile.Node.ChildNodes Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ChildNodes.htm\u0000172","StringDocument.Contents Property\u0000html/P_Microsoft_ClearScript_StringDocument_Contents.htm\u0000150","V8CpuProfile.Node.HitLines Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLines.htm\u0000176","ScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableTypeRestriction.htm\u0000205","ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Script.htm\u0000163","DocumentInfo.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_ContextCallback.htm\u0000229","ScriptMemberAttribute.Name Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Name.htm\u0000208","V8RuntimeHeapInfo.TotalPhysicalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalPhysicalSize.htm\u0000126","V8CpuProfile.StartTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_StartTimestamp.htm\u0000152","V8Runtime.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_CpuProfileSampleInterval.htm\u0000169","V8ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_FileNameExtension.htm\u0000152","V8ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Script.htm\u0000172","V8RuntimeConstraints.MaxYoungSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxYoungSpaceSize.htm\u0000254","V8Runtime.MaxHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxHeapSize.htm\u0000278","ContinuationCallback Delegate\u0000html/T_Microsoft_ClearScript_ContinuationCallback.htm\u0000127","V8Script.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_Name.htm\u0000185","ScriptEngine.UndefinedImportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UndefinedImportValue.htm\u0000195","V8CpuProfile.Node.LineNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_LineNumber.htm\u0000149","ScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DocumentSettings.htm\u0000141","DocumentInfo.Flags Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Flags.htm\u0000165","V8RuntimeHeapInfo.UsedHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_UsedHeapSize.htm\u0000125","V8Runtime.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_DocumentSettings.htm\u0000143","V8RuntimeHeapInfo.HeapSizeLimit Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm\u0000125","V8RuntimeConstraints.MaxExecutableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxExecutableSize.htm\u0000286","V8ScriptEngine.MaxRuntimeHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeHeapSize.htm\u0000278","IHostWindow.OwnerHandle Property\u0000html/P_Microsoft_ClearScript_Windows_IHostWindow_OwnerHandle.htm\u0000124","V8CpuProfile.Node.NodeId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_NodeId.htm\u0000151","V8Runtime.MaxStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxStackUsage.htm\u0000216","V8ScriptEngine.SuppressExtensionMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressExtensionMethodEnumeration.htm\u0000211","ScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UseReflectionBindFallback.htm\u0000195","DocumentInfo.Name Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Name.htm\u0000151","ScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableAutoHostVariables.htm\u0000192","V8RuntimeHeapInfo.TotalHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSize.htm\u0000125","V8Runtime.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_Name.htm\u0000127","V8CpuProfile.Node.ScriptId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptId.htm\u0000146","V8ScriptEngine.MaxRuntimeStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeStackUsage.htm\u0000219","V8RuntimeConstraints.MaxNewSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxNewSpaceSize.htm\u0000196","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_JScriptEngine_FileNameExtension.htm\u0000152","DocumentInfo.SourceMapUri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_SourceMapUri.htm\u0000144","V8ScriptEngine.SuppressInstanceMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressInstanceMethodEnumeration.htm\u0000192","DefaultScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000517","V8RuntimeHeapInfo.TotalHeapSizeExecutable Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSizeExecutable.htm\u0000126","V8CpuProfile.Node.ScriptName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptName.htm\u0000133","ScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableNullResultWrapping.htm\u0000222","V8ScriptEngine.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_CpuProfileSampleInterval.htm\u0000169","V8RuntimeConstraints.MaxOldSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxOldSpaceSize.htm\u0000196","V8ScriptEngine.RuntimeHeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeSampleInterval.htm\u0000159","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_VBScriptEngine_FileNameExtension.htm\u0000152","V8Runtime.FormatCode Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_FormatCode.htm\u0000182","DocumentInfo.Uri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Uri.htm\u0000135","V8Script.DocumentInfo Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_DocumentInfo.htm\u0000123","ScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Engine.htm\u0000129","V8CpuProfile.RootNode Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_RootNode.htm\u0000133","WindowsScriptEngine.Dispatcher Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispatcher.htm\u0000127","V8Runtime.HeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm\u0000159","ScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AccessContext.htm\u0000204","Document Class\u0000html/T_Microsoft_ClearScript_Document.htm\u0000279","ScriptObject.Item Property (Int32)\u0000html/P_Microsoft_ClearScript_ScriptObject_Item.htm\u0000199","WindowsScriptEngine.HostWindow Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_HostWindow.htm\u0000151","V8CpuProfile.Samples Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Samples.htm\u0000168","ScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AllowReflection.htm\u0000203","DocumentAccessFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentAccessFlags.htm\u0000201","WindowsScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Script.htm\u0000172","ScriptObject.Item Property (String, Object[])\u0000html/P_Microsoft_ClearScript_ScriptObject_Item_1.htm\u0000281","V8CpuProfile.Sample.Node Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Node.htm\u0000135","ClearScript Library Reference\u0000html/R_Project_Reference.htm\u0000120","ScriptMemberFlags Enumeration\u0000html/T_Microsoft_ClearScript_ScriptMemberFlags.htm\u0000216","Extensions Class\u0000html/T_Microsoft_ClearScript_Extensions.htm\u0000243","ITypedArray Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000231","IWindowsScriptObject Interface\u0000html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000109","JavaScriptExtensions Class\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000239","V8CpuProfile.Sample.Timestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Timestamp.htm\u0000153","DocumentSettings Class\u0000html/T_Microsoft_ClearScript_DocumentSettings.htm\u0000393","V8RuntimeConstraints Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000317","DocumentFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentFlags.htm\u0000138","ModuleCategory Class\u0000html/T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u0000146","Undefined Class\u0000html/T_Microsoft_ClearScript_Undefined.htm\u0000268","PropertyBag Class\u0000html/T_Microsoft_ClearScript_PropertyBag.htm\u0000592","ITypedArray(T) Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000373","V8CpuProfile.Node Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000362","V8CacheKind Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CacheKind.htm\u0000186","HostTypeCollection Class\u0000html/T_Microsoft_ClearScript_HostTypeCollection.htm\u0000825","ScriptAccess Enumeration\u0000html/T_Microsoft_ClearScript_ScriptAccess.htm\u0000197","V8RuntimeFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeFlags.htm\u0000183","DocumentInfo Structure\u0000html/T_Microsoft_ClearScript_DocumentInfo.htm\u0000310","DocumentCategory Class\u0000html/T_Microsoft_ClearScript_DocumentCategory.htm\u0000241","ScriptObject Class\u0000html/T_Microsoft_ClearScript_ScriptObject.htm\u0000950","NoDefaultScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000563","V8CpuProfile.Node.HitLine Structure\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000253","DocumentLoadCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentLoadCallback.htm\u0000160","HostFunctions Class\u0000html/T_Microsoft_ClearScript_HostFunctions.htm\u0000961","V8CpuProfile Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000291","V8RuntimeHeapInfo Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000276","DocumentContextCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentContextCallback.htm\u0000192","ImmutableValueAttribute Class\u0000html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000457","V8CpuProfile.Sample Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000259","ScriptEngine Class\u0000html/T_Microsoft_ClearScript_ScriptEngine.htm\u00001631","V8CpuProfileFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfileFlags.htm\u0000134","DocumentLoader Class\u0000html/T_Microsoft_ClearScript_DocumentLoader.htm\u0000267","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00002234","HostItemFlags Enumeration\u0000html/T_Microsoft_ClearScript_HostItemFlags.htm\u0000242","EventConnection(T) Class\u0000html/T_Microsoft_ClearScript_EventConnection_1.htm\u0000269","NoScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000599","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00002201","V8Script Class\u0000html/T_Microsoft_ClearScript_V8_V8Script.htm\u0000287","ScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000555","HostSettings Class\u0000html/T_Microsoft_ClearScript_HostSettings.htm\u0000132","V8Runtime Class\u0000html/T_Microsoft_ClearScript_V8_V8Runtime.htm\u00001154","EventSource(T) Class\u0000html/T_Microsoft_ClearScript_EventSource_1.htm\u0000262","Nothing Class\u0000html/T_Microsoft_ClearScript_Windows_Nothing.htm\u0000292","StringDocument Class\u0000html/T_Microsoft_ClearScript_StringDocument.htm\u0000304","WindowsScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngineFlags.htm\u0000427","ScriptEngineException Class\u0000html/T_Microsoft_ClearScript_ScriptEngineException.htm\u0000675","IPropertyBag Interface\u0000html/T_Microsoft_ClearScript_IPropertyBag.htm\u0000743","IScriptableObject Interface\u0000html/T_Microsoft_ClearScript_IScriptableObject.htm\u0000121","IScriptEngineException Interface\u0000html/T_Microsoft_ClearScript_IScriptEngineException.htm\u0000220","ScriptInterruptedException Class\u0000html/T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000691","IArrayBuffer Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000153","IArrayBufferView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000170","ExtendedHostFunctions Class\u0000html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001331","V8ScriptEngine Class\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002910","ScriptMemberAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000645","IDataView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000218","V8ScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm\u0000302","VoidResult Class\u0000html/T_Microsoft_ClearScript_VoidResult.htm\u0000280","IHostWindow Interface\u0000html/T_Microsoft_ClearScript_Windows_IHostWindow.htm\u0000138","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00002234"] \ No newline at end of file diff --git a/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm b/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm index f6dc074e9..c81232195 100644 --- a/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm +++ b/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm @@ -1,17 +1,17 @@ -PropertyBag.PropertyChanged Event

PropertyBagPropertyChanged Event

+PropertyBag.PropertyChanged Event

PropertyBagPropertyChanged Event

Occurs when a property is added or replaced, or when the collection is cleared.

Namespace:  Microsoft.ClearScript
Assembly: -  ClearScript (in ClearScript.dll) Version: 6.0.0.0 (6.0.0.0)
Syntax
public event PropertyChangedEventHandler PropertyChanged

Value

Type: System.ComponentModelPropertyChangedEventHandler

Implements

INotifyPropertyChangedPropertyChanged
See Also