diff --git a/Asterisk.2013/Asterisk.NET/AsterNET.csproj b/Asterisk.2013/Asterisk.NET/AsterNET.csproj index ca0337c..7301a75 100644 --- a/Asterisk.2013/Asterisk.NET/AsterNET.csproj +++ b/Asterisk.2013/Asterisk.NET/AsterNET.csproj @@ -57,6 +57,7 @@ prompt 4 false + bin\Release\AsterNET.XML bin\Travis\ @@ -66,6 +67,7 @@ AnyCPU prompt MinimumRecommendedRules.ruleset + bin\Travis\AsterNET.XML @@ -253,6 +255,7 @@ + diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs b/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs index dc0b38d..f1bbc4f 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs @@ -43,7 +43,7 @@ namespace AsterNET.FastAGI #region SetCallerId /// /// Sets the caller id on the current channel.
- /// The raw caller id to set, for example "John Doe<1234>". + /// The raw caller id to set, for example "John Doe<1234>". ///
protected internal void SetCallerId(string callerId) { @@ -65,7 +65,7 @@ namespace AsterNET.FastAGI /// /// Plays music on hold from the given music on hold class. /// - /// the music on hold class to play music from as configures in Asterisk's . + /// the music on hold class to play music from as configures in Asterisk's <musiconhold.conf/code$gt;. protected internal void PlayMusicOnHold(string musicOnHoldClass) { this.Channel.SendCommand(new Command.SetMusicOnCommand(musicOnHoldClass)); @@ -87,16 +87,15 @@ namespace AsterNET.FastAGI /// Returns the status of the channel.
/// Return values: ///
    - ///
  • 0 Channel is down and available - ///
  • 1 Channel is down, but reserved - ///
  • 2 Channel is off hook - ///
  • 3 Digits (or equivalent) have been dialed - ///
  • 4 Line is ringing - ///
  • 5 Remote end is ringing - ///
  • 6 Line is up - ///
  • 7 Line is busy + ///
  • 0 Channel is down and available
  • + ///
  • 1 Channel is down, but reserved
  • + ///
  • 2 Channel is off hook
  • + ///
  • 3 Digits (or equivalent) have been dialed
  • + ///
  • 4 Line is ringing
  • + ///
  • 5 Remote end is ringing
  • + ///
  • 6 Line is up
  • + ///
  • 7 Line is busy
  • ///
- /// /// /// the status of the channel. /// diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/ChannelStatusCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/ChannelStatusCommand.cs index 30dbcbd..4dddf40 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/ChannelStatusCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/ChannelStatusCommand.cs @@ -1,22 +1,22 @@ using System; namespace AsterNET.FastAGI.Command { - /// - /// Returns the status of the specified channel. - /// If no channel name is given the returns the status of the current channel.
- /// Return values: - ///
    - ///
  • 0 Channel is down and available - ///
  • 1 Channel is down, but reserved - ///
  • 2 Channel is off hook - ///
  • 3 Digits (or equivalent) have been dialed - ///
  • 4 Line is ringing - ///
  • 5 Remote end is ringing - ///
  • 6 Line is up - ///
  • 7 Line is busy - ///
- ///
- public class ChannelStatusCommand : AGICommand + /// + /// Returns the status of the specified channel. + /// If no channel name is given the returns the status of the current channel.
+ /// Return values: + ///
    + ///
  • 0 Channel is down and available
  • + ///
  • 1 Channel is down, but reserved
  • + ///
  • 2 Channel is off hook
  • + ///
  • 3 Digits (or equivalent) have been dialed
  • + ///
  • 4 Line is ringing
  • + ///
  • 5 Remote end is ringing
  • + ///
  • 6 Line is up
  • + ///
  • 7 Line is busy
  • + ///
+ ///
+ public class ChannelStatusCommand : AGICommand { private string channel; public string Channel diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/GetVariableCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/GetVariableCommand.cs index 9c0d8f6..a9cd0b1 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/GetVariableCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/GetVariableCommand.cs @@ -12,7 +12,7 @@ namespace AsterNET.FastAGI.Command private string varName; /// - /// Get/Set the name of the variable to retrieve.
+ /// Get/Set the name of the variable to retrieve.
/// Since Asterisk 1.2 you can also use custom dialplan functions (like "func(args)") as variable. ///
public string Variable diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/ReceiveTextCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/ReceiveTextCommand.cs index 0c3716d..52d45ee 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/ReceiveTextCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/ReceiveTextCommand.cs @@ -25,7 +25,7 @@ namespace AsterNET.FastAGI.Command /// /// Creates a new ReceiveTextCommand. - /// the milliseconds to wait for the channel to receive the text. + /// the milliseconds to wait for the channel to receive the text. /// public ReceiveTextCommand(int timeout) { diff --git a/Asterisk.2013/Asterisk.NET/Helper.cs b/Asterisk.2013/Asterisk.NET/Helper.cs index 4eaf4aa..80c9830 100644 --- a/Asterisk.2013/Asterisk.NET/Helper.cs +++ b/Asterisk.2013/Asterisk.NET/Helper.cs @@ -171,6 +171,7 @@ namespace AsterNET /// Obtains an array containing all the elements of the collection. /// /// The array into which the elements of the collection will be stored. + /// /// The array containing all the elements of the collection. internal static object[] ToArray(ICollection c, object[] objects) { @@ -242,6 +243,7 @@ namespace AsterNET /// /// /// + /// /// internal static string JoinVariables(IDictionary dictionary, char[] delim, string delimKeyValue) { @@ -743,6 +745,7 @@ namespace AsterNET /// Builds the event based on the given map of attributes and the registered event classes. /// /// source attribute for the event + /// /// map containing event attributes /// a concrete instance of ManagerEvent or null if no event class was registered for the event type. internal static ManagerEvent BuildEvent(IDictionary list, ManagerConnection source, diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/ManagerAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/ManagerAction.cs index ee2f920..7f42c87 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/ManagerAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/ManagerAction.cs @@ -44,7 +44,7 @@ namespace AsterNET.Manager.Action /// /// You can use this as a simple authentication mechanism.
- /// Rather than have to login with a username & password, + /// Rather than have to login with a username & password, /// you can specify a ProxyKey that must be passed from /// a client before requests are processed.
/// This is helpful in situations where you would like to authenticate and diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs index ddb0ec7..6dc88bb 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs @@ -11,10 +11,10 @@ namespace AsterNET.Manager.Action /// Since Asterisk 1.2 a QueueStatusCompleteEvent is sent to denote the end of the generated dump.
/// This action is implemented in apps/app_queue.c ///
- /// - /// - /// - /// + /// + /// + /// + /// public class QueueStatusAction : ManagerActionEvent { #region Action diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/RedirectAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/RedirectAction.cs index 7a0d96c..b971f5c 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/RedirectAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/RedirectAction.cs @@ -54,6 +54,7 @@ namespace AsterNET.Manager.Action /// /// Get/Set name of the channel to redirect. + /// public string Channel { get; set; } /// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/SIPPeersAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/SIPPeersAction.cs index 1ab6e88..d3f9493 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/SIPPeersAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/SIPPeersAction.cs @@ -9,8 +9,8 @@ namespace AsterNET.Manager.Action /// the details. When all peers have been reported a PeerlistCompleteEvent is sent.
/// Available since Asterisk 1.2 ///
- /// - /// + /// + /// public class SIPPeersAction : ManagerActionEvent { public override string Action diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/SIPShowPeerAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/SIPShowPeerAction.cs index 5b584a9..137fe8c 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/SIPShowPeerAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/SIPShowPeerAction.cs @@ -9,8 +9,8 @@ namespace AsterNET.Manager.Action /// followed by a PeerlistCompleteEvent.
/// Available since Asterisk 1.2 /// - /// - /// + /// + /// public class SIPShowPeerAction : ManagerActionEvent { /// Creates a new empty SIPShowPeerAction. diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/StatusAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/StatusAction.cs index e013ddc..51d9d56 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/StatusAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/StatusAction.cs @@ -8,8 +8,8 @@ namespace AsterNET.Manager.Action /// For each active channel a StatusEvent is generated. After the state of all /// channels has been reported a StatusCompleteEvent is generated. /// - /// - /// + /// + /// public class StatusAction : ManagerActionEvent { /// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/ZapShowChannelsAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/ZapShowChannelsAction.cs index d94aa77..7dff675 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/ZapShowChannelsAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/ZapShowChannelsAction.cs @@ -8,8 +8,8 @@ namespace AsterNET.Manager.Action /// For each zap channel a ZapShowChannelsEvent is generated. After all zap /// channels have been listed a ZapShowChannelsCompleteEvent is generated. /// - /// - /// + /// + /// public class ZapShowChannelsAction : ManagerActionEvent { /// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractChannelEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractChannelEvent.cs index 72256f8..52c423f 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractChannelEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractChannelEvent.cs @@ -50,7 +50,7 @@ namespace AsterNET.Manager.Event set { this.callerIdNum = value; } } /// - /// Get/Set the Caller*ID Name of the channel if set or ≶unknown> if none has been set. + /// Get/Set the Caller*ID Name of the channel if set or <unknown> if none has been set. /// public string CallerIdName { @@ -68,7 +68,7 @@ namespace AsterNET.Manager.Event ///
  • Ringing
  • ///
  • Up
  • ///
  • Busy
  • - ///
      + ///
    ///
    public string State { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs index 6d58523..d5c0eef 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs @@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event /// An AgentCallbackLoginEvent is triggered when an agent is successfully logged in using AgentCallbackLogin.
    /// It is implemented in channels/chan_agent.c /// - /// + /// public class AgentCallbackLoginEvent : ManagerEvent { public AgentCallbackLoginEvent(ManagerConnection source) diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs index 1e7dfff..4b2dfbf 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs @@ -5,7 +5,7 @@ namespace AsterNET.Manager.Event /// AgentCallbackLogin is logged of.
    /// It is implemented in channels/chan_agent.c /// - /// + /// public class AgentCallbackLogoffEvent : ManagerEvent { #region Agent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs index e70652f..c1b2051 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs @@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event /// An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin.
    /// It is implemented in channels/chan_agent.c /// - /// + /// public class AgentLoginEvent : ManagerEvent { public AgentLoginEvent(ManagerConnection source) diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs index 68c287a..1b91b3a 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs @@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event /// An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of. /// It is implemented in channels/chan_agent.c /// - /// + /// public class AgentLogoffEvent : ManagerEvent { public AgentLogoffEvent(ManagerConnection source) diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs index 1aeeb59..5c28ea8 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs @@ -5,7 +5,7 @@ namespace AsterNET.Manager.Event /// It is implemented in channels/chan_sip.c.
    /// Available since Asterisk 1.2 /// - /// + /// public class HoldEvent : ManagerEvent { public HoldEvent(ManagerConnection source) diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs index b2a99f1..f8df592 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs @@ -22,7 +22,7 @@ namespace AsterNET.Manager.Event public string CallerId { get; set; } /// - /// Get/Set the new Caller*ID Name if set or "≶Unknown>" if none has been set. + /// Get/Set the new Caller*ID Name if set or "<Unknown>" if none has been set. /// public string CallerIdName { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallsCompleteEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallsCompleteEvent.cs index 0ea05c2..d24f0f3 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallsCompleteEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallsCompleteEvent.cs @@ -1,11 +1,11 @@ namespace AsterNET.Manager.Event { - /// - /// A ParkedCallsCompleteEvent is triggered after all parked calls have been reported in response to a ParkedCallsAction. - /// - /// - /// - public class ParkedCallsCompleteEvent : ResponseEvent + /// + /// A ParkedCallsCompleteEvent is triggered after all parked calls have been reported in response to a ParkedCallsAction. + /// + /// + /// + public class ParkedCallsCompleteEvent : ResponseEvent { public ParkedCallsCompleteEvent(ManagerConnection source) : base(source) diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/PeerlistCompleteEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/PeerlistCompleteEvent.cs index e65a005..8f32325 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/PeerlistCompleteEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/PeerlistCompleteEvent.cs @@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event /// A PeerlistCompleteEvent is triggered after the details of all peers has been reported in response to an SIPPeersAction or SIPShowPeerAction.
    /// Available since Asterisk 1.2 /// - /// + /// /// /// public class PeerlistCompleteEvent : ResponseEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs index ca73a15..ccee25b 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs @@ -112,12 +112,13 @@ namespace AsterNET.Manager.Event get { return this.status; } set { this.status = value; } } - /// - /// Is this queue member paused (not accepting calls)?
    - /// Available since Asterisk 1.2.
    - /// true if this member has been paused, - /// false if not - public bool Paused + /// + /// Is this queue member paused (not accepting calls)?
    + /// Available since Asterisk 1.2.
    + /// true if this member has been paused, + /// false if not + ///
    + public bool Paused { get { return this.paused; } set { this.paused = value; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/StatusCompleteEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/StatusCompleteEvent.cs index 7e3a935..9b38fe7 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/StatusCompleteEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/StatusCompleteEvent.cs @@ -1,12 +1,12 @@ namespace AsterNET.Manager.Event { - /// - /// A StatusCompleteEvent is triggered after the state of all channels has been reported in response - /// to a StatusAction. - /// - /// - /// - public class StatusCompleteEvent : ResponseEvent + /// + /// A StatusCompleteEvent is triggered after the state of all channels has been reported in response + /// to a StatusAction. + /// + /// + /// + public class StatusCompleteEvent : ResponseEvent { private int items; diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs index 273a3c9..666570e 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs @@ -1,12 +1,12 @@ namespace AsterNET.Manager.Event { - /// - /// An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold.
    - /// It is implemented in channels/chan_sip.c.
    - /// Available since Asterisk 1.2 - ///
    - /// - public class UnholdEvent : ManagerEvent + /// + /// An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold.
    + /// It is implemented in channels/chan_sip.c.
    + /// Available since Asterisk 1.2 + ///
    + /// + public class UnholdEvent : ManagerEvent { /// /// Creates a new UnholdEvent. diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs index 6fc4c1c..9c4d363 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs @@ -35,7 +35,7 @@ namespace AsterNET.Manager.Event /// The UserEvent is implemented in apps/app_userevent.c.
    /// Note that you must register your UserEvent with the ManagerConnection you are using in order to be recognized. ///
    - /// + /// public class UserEvent : ManagerEvent { private string userEventName; diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsCompleteEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsCompleteEvent.cs index fb3ce79..261535e 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsCompleteEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsCompleteEvent.cs @@ -5,7 +5,7 @@ namespace AsterNET.Manager.Event /// in response to a ZapShowChannelsAction. ///
    /// - /// + /// public class ZapShowChannelsCompleteEvent : ResponseEvent { public ZapShowChannelsCompleteEvent(ManagerConnection source) diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs index 5149bf7..087e2b3 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs @@ -10,36 +10,36 @@ namespace AsterNET.Manager.Event private string context; private string alarm; - /// - /// Get/Set the signalling of this zap channel.
    - /// Possible values are: - ///
      - ///
    • E & M Immediate
    • - ///
    • E & M Wink
    • - ///
    • E & M E1
    • - ///
    • Feature Group D (DTMF)
    • - ///
    • Feature Group D (MF)
    • - ///
    • Feature Group B (MF)
    • - ///
    • E911 (MF)
    • - ///
    • FXS Loopstart
    • - ///
    • FXS Groundstart
    • - ///
    • FXS Kewlstart
    • - ///
    • FXO Loopstart
    • - ///
    • FXO Groundstart
    • - ///
    • FXO Kewlstart
    • - ///
    • PRI Signalling
    • - ///
    • R2 Signalling
    • - ///
    • SF (Tone) Signalling Immediate
    • - ///
    • SF (Tone) Signalling Wink
    • - ///
    • SF (Tone) Signalling with Feature Group D (DTMF)
    • - ///
    • SF (Tone) Signalling with Feature Group D (MF)
    • - ///
    • SF (Tone) Signalling with Feature Group B (MF)
    • - ///
    • GR-303 Signalling with FXOKS
    • - ///
    • GR-303 Signalling with FXSKS
    • - ///
    • Pseudo Signalling
    • - ///
    - ///
    - public string Signalling + /// + /// Get/Set the signalling of this zap channel.
    + /// Possible values are: + ///
      + ///
    • E & M Immediate
    • + ///
    • E & M Wink
    • + ///
    • E & M E1
    • + ///
    • Feature Group D (DTMF)
    • + ///
    • Feature Group D (MF)
    • + ///
    • Feature Group B (MF)
    • + ///
    • E911 (MF)
    • + ///
    • FXS Loopstart
    • + ///
    • FXS Groundstart
    • + ///
    • FXS Kewlstart
    • + ///
    • FXO Loopstart
    • + ///
    • FXO Groundstart
    • + ///
    • FXO Kewlstart
    • + ///
    • PRI Signalling
    • + ///
    • R2 Signalling
    • + ///
    • SF (Tone) Signalling Immediate
    • + ///
    • SF (Tone) Signalling Wink
    • + ///
    • SF (Tone) Signalling with Feature Group D (DTMF)
    • + ///
    • SF (Tone) Signalling with Feature Group D (MF)
    • + ///
    • SF (Tone) Signalling with Feature Group B (MF)
    • + ///
    • GR-303 Signalling with FXOKS
    • + ///
    • GR-303 Signalling with FXSKS
    • + ///
    • Pseudo Signalling
    • + ///
    + ///
    + public string Signalling { get { return signalling; } set { this.signalling = value; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs index 549b74f..cd594b1 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs @@ -373,10 +373,12 @@ namespace AsterNET.Manager /// A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue. /// public event QueueMemberEventHandler QueueMember; - /// - /// A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused. - /// - public event QueueMemberPausedEventHandler QueueMemberPaused; + /// + /// A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused. + /// Replaced by : since Asterisk 12.
    + /// Removed since : Asterisk 13.
    + ///
    + public event QueueMemberPausedEventHandler QueueMemberPaused; /// /// A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue. /// @@ -513,7 +515,7 @@ namespace AsterNET.Manager /// /// A QueueMemberPauseEvent is triggered when a queue member is paused or unpaused.
    - /// Available since Asterisk 12 + /// Available since : Asterisk 12. ///
    public event QueueMemberPauseEventHandler QueueMemberPause; diff --git a/Asterisk.2013/Asterisk.NET/Manager/ManagerReader.cs b/Asterisk.2013/Asterisk.NET/Manager/ManagerReader.cs index b106b9c..0e80b5b 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/ManagerReader.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/ManagerReader.cs @@ -90,7 +90,7 @@ namespace AsterNET.Manager #region mrReaderCallbback(IAsyncResult ar) - //// + /// /// Async Read callback /// /// IAsyncResult @@ -184,7 +184,7 @@ namespace AsterNET.Manager #region Run() - //// + /// /// Reads line by line from the asterisk server, sets the protocol identifier as soon as it is /// received and dispatches the received events and responses via the associated dispatcher. /// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs b/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs index de9da6a..0e305b8 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs @@ -40,7 +40,7 @@ namespace AsterNET.Manager.Response /// /// Store all unknown (without setter) keys from manager event.
    - /// Use in default Parse method . + /// Use in default Parse method . ///
    public Dictionary Attributes { diff --git a/docs/WebKI.xml b/docs/WebKI.xml index f81ace2..aee86b8 100644 --- a/docs/WebKI.xml +++ b/docs/WebKI.xml @@ -92,8 +92,20 @@ + + + + + + + + + + + + @@ -227,7 +239,6 @@ - @@ -253,7 +264,6 @@ - @@ -267,7 +277,6 @@ - @@ -289,7 +298,6 @@ - @@ -302,7 +310,6 @@ - @@ -315,7 +322,6 @@ - @@ -325,7 +331,6 @@ - @@ -337,7 +342,6 @@ - @@ -361,7 +365,6 @@ - @@ -372,7 +375,6 @@ - @@ -445,7 +447,6 @@ - @@ -607,12 +608,10 @@ - - @@ -983,6 +982,7 @@ + @@ -1046,6 +1046,7 @@ + @@ -1093,7 +1094,6 @@ - @@ -1204,7 +1204,6 @@ - @@ -1249,7 +1248,6 @@ - @@ -1287,7 +1285,6 @@ - @@ -1303,7 +1300,6 @@ - @@ -1313,7 +1309,6 @@ - @@ -1345,7 +1340,6 @@ - @@ -1464,11 +1458,6 @@ - - - - - @@ -1482,16 +1471,17 @@ - + - - - + + + + - + @@ -1502,6 +1492,10 @@ + + + + @@ -1509,8 +1503,10 @@ + + @@ -1519,7 +1515,6 @@ - @@ -1748,7 +1743,6 @@ - @@ -1758,7 +1752,6 @@ - @@ -1781,7 +1774,6 @@ - @@ -1885,7 +1877,6 @@ - @@ -1915,7 +1906,6 @@ - @@ -1975,7 +1965,6 @@ - @@ -2157,7 +2146,6 @@ - @@ -2209,8 +2197,6 @@ - - @@ -2220,7 +2206,6 @@ - @@ -2265,9 +2250,8 @@ - - + @@ -2282,7 +2266,6 @@ - @@ -2410,7 +2393,6 @@ - @@ -2426,7 +2408,6 @@ - @@ -2629,7 +2610,6 @@ - @@ -2672,8 +2652,6 @@ - - @@ -2719,12 +2697,17 @@ - + + + + + + @@ -2816,7 +2799,6 @@ - @@ -2852,13 +2834,14 @@ + + - @@ -2876,7 +2859,6 @@ - @@ -2923,7 +2905,6 @@ - @@ -3076,124 +3057,41 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -3298,7 +3196,6 @@ - @@ -3310,7 +3207,6 @@ - @@ -3340,7 +3236,6 @@ - @@ -3366,17 +3261,19 @@ + - - + + + @@ -3384,7 +3281,6 @@ - @@ -3475,7 +3371,6 @@ - @@ -3490,7 +3385,6 @@ - @@ -3500,7 +3394,6 @@ - @@ -3519,7 +3412,6 @@ - @@ -3613,7 +3505,6 @@ - @@ -3675,7 +3566,6 @@ - @@ -3691,7 +3581,6 @@ - @@ -3711,7 +3600,6 @@ - @@ -3721,7 +3609,6 @@ - @@ -3746,21 +3633,23 @@ + - - + - + + + + - @@ -3782,7 +3671,6 @@ - @@ -3794,7 +3682,6 @@ - @@ -3811,10 +3698,12 @@ + + @@ -3912,7 +3801,6 @@ - @@ -3926,7 +3814,6 @@ - @@ -3937,7 +3824,6 @@ - @@ -3948,7 +3834,6 @@ - @@ -3987,8 +3872,6 @@ - - @@ -4024,7 +3907,6 @@ - @@ -4032,8 +3914,8 @@ - - + + @@ -4044,12 +3926,9 @@ - - - - + @@ -4059,7 +3938,6 @@ - @@ -4070,7 +3948,15 @@ - + + + + + + + + + @@ -4078,9 +3964,17 @@ + + + + + + + + + - @@ -4180,7 +4074,6 @@ - @@ -4264,7 +4157,6 @@ - @@ -4311,7 +4203,6 @@ - @@ -4419,6 +4310,10 @@ + + + + @@ -4909,8 +4804,12 @@ - + + + + + @@ -4923,6 +4822,7 @@ + @@ -4936,7 +4836,6 @@ - @@ -5088,17 +4987,16 @@ - - - + + @@ -5107,8 +5005,8 @@ - + @@ -5184,8 +5082,6 @@ - - @@ -5195,13 +5091,13 @@ - + @@ -5222,7 +5118,6 @@ - @@ -5232,7 +5127,6 @@ - @@ -5282,7 +5176,6 @@ - @@ -5314,7 +5207,6 @@ - @@ -5425,7 +5317,6 @@ - @@ -5436,7 +5327,6 @@ - diff --git a/docs/WebTOC.xml b/docs/WebTOC.xml index 1891689..5c34a5e 100644 --- a/docs/WebTOC.xml +++ b/docs/WebTOC.xml @@ -2,12 +2,12 @@ - + - - - + + + @@ -35,22 +35,22 @@ - + - - + + - + - + @@ -58,11 +58,11 @@ - + - + @@ -72,27 +72,27 @@ - - - + + + - + - + - + - + - - + + @@ -101,31 +101,31 @@ - + - + - + - + - - + + - + @@ -133,7 +133,7 @@ - + @@ -142,15 +142,15 @@ - + - + - + @@ -177,74 +177,74 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -253,31 +253,31 @@ - + - + - + - + - + - - + + @@ -286,98 +286,98 @@ - + - + - + - - + + - + - + - + - - + + - + - + - - + + - + - + - + - - + + - + - + - - + + - + - + - + @@ -386,168 +386,168 @@ - - + + - + - + - - + + - + - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - + - + - + - - + + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + @@ -556,263 +556,263 @@ - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - - + + - + - + - - - + + + - + - - + + - + - + - + - + - + @@ -820,23 +820,23 @@ - - + + - + - + - + - + @@ -849,7 +849,7 @@ - + @@ -865,8 +865,8 @@ - - + + @@ -893,10 +893,10 @@ - + - + @@ -906,12 +906,12 @@ - - + + - + @@ -920,18 +920,18 @@ - - + + - + - - + + @@ -939,23 +939,23 @@ - + - + - + - + @@ -975,94 +975,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -1070,7 +986,7 @@ - + @@ -1082,15 +998,15 @@ - + - + - + @@ -1117,43 +1033,44 @@ + - + - + - + - + - + - + - + - + - + @@ -1161,7 +1078,7 @@ - + @@ -1176,27 +1093,27 @@ - - - + + + - + - - + + - + @@ -1205,44 +1122,44 @@ - - + + - + - + - + - + - + - + - - + + - + @@ -1260,13 +1177,13 @@ - - + + - + @@ -1274,316 +1191,316 @@ - - + + - + - - + + - + - - + + - + - - + + - + - + - - + + - + - + - + - + - + - + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + - + - + - + - + - + - - + + - + - - + + - + - - + + - + - - + + - + - + - - + + - + - - + + - + - + - + - - + + - + - + - - + + - + - - + + - + - - + + - + @@ -1592,70 +1509,70 @@ - + - + - - + + - + - - + + - + - + - + - + - + - + - + - + - - + + - + @@ -1663,16 +1580,16 @@ - + - + - + @@ -1687,13 +1604,13 @@ - - + + - + @@ -1701,36 +1618,36 @@ - + - + - + - + - + - + - - + + - + @@ -1739,13 +1656,13 @@ - - + + - + @@ -1754,8 +1671,8 @@ - - + + @@ -1763,33 +1680,33 @@ - + - - + + - + - - + + - + @@ -1797,59 +1714,59 @@ - - + + - + - - + + - + - - + + - + - + - + - + - - + + - + @@ -1858,89 +1775,89 @@ - - + + - + - - + + - + - + - + - + - + - - + + - + - + - + - + - + - - + + - + - - + + - + @@ -1948,9 +1865,9 @@ - + - + @@ -1959,7 +1876,7 @@ - + @@ -1967,95 +1884,95 @@ - - + + - + - - + + - + - - + + - + - - + + - + - + - + - + - + - + - - + + - + - + - + - + - + - + @@ -2067,64 +1984,76 @@ - - + + - + - + - + - + - + - + - + + + + + + + + + + + + + - + - + - + - + - + - + @@ -2138,54 +2067,54 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -2194,10 +2123,10 @@ - + - + @@ -2205,32 +2134,32 @@ - + - + - + - + - + - + - + @@ -2299,10 +2228,10 @@ - + - + @@ -2340,10 +2269,10 @@ - + - + @@ -2363,27 +2292,27 @@ - + - + - + - + - + - + @@ -2398,15 +2327,15 @@ - + - + - + @@ -2415,10 +2344,10 @@ - + - + @@ -2437,10 +2366,10 @@ - + - + @@ -2448,10 +2377,10 @@ - + - + @@ -2462,107 +2391,107 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2575,55 +2504,55 @@ - + - + - + - + - + - + - + - - + + - + - + - + @@ -2634,43 +2563,43 @@ - + - + - + - + - + - + - + - + - + - + @@ -2689,45 +2618,45 @@ - + - + - + - + - + - + - - + + - + - + @@ -2738,103 +2667,103 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2842,15 +2771,15 @@ - + - + - + @@ -2859,15 +2788,15 @@ - + - + - + @@ -2877,10 +2806,10 @@ - + - + @@ -2889,25 +2818,25 @@ - + - + - + - + - + @@ -2922,17 +2851,17 @@ - + - + - + - + @@ -2940,44 +2869,44 @@ - + - + - + - + - + - + - + - + - + - + @@ -2985,18 +2914,18 @@ - + - + - + - + @@ -3006,10 +2935,10 @@ - + - + @@ -3022,49 +2951,62 @@ - + - - - + + + - + - - - - - + - + - + - + - + - + + + + + + + + - + + + + + + + + + + + - + - + @@ -3077,15 +3019,15 @@ - + - + - + @@ -3094,39 +3036,39 @@ - + - + - + - + - + - + - + - + - + @@ -3141,10 +3083,10 @@ - + - + @@ -3159,10 +3101,10 @@ - + - + @@ -3171,10 +3113,10 @@ - + - + @@ -3183,10 +3125,10 @@ - + - + @@ -3194,10 +3136,10 @@ - + - + @@ -3206,17 +3148,17 @@ - + - + - + - + @@ -3229,10 +3171,10 @@ - + - + @@ -3243,41 +3185,41 @@ - + - + - + - + - + - + - + - + - + - + @@ -3286,82 +3228,82 @@ - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + @@ -3369,22 +3311,22 @@ - - + + - + - + - + @@ -3395,13 +3337,13 @@ - + - + - + @@ -3413,41 +3355,41 @@ - - + + - - + + - + - - + + - + - + - + - + diff --git a/docs/fti/FTI_100.json b/docs/fti/FTI_100.json index 52aee8f..12dd2d0 100644 --- a/docs/fti/FTI_100.json +++ b/docs/fti/FTI_100.json @@ -1 +1 @@ -{"default":[1,6356995,6422530,6750209,7471105,7536641,7995393,8978433,9043969,9895937,10682370,27000833,31195137,31457281,35061761,35127297,35192833,35258369,36241409,36700161,37355521,37552129,40173569,40239105,41222145,46858241,46923777,49414145,49545217,65142785,69074949,69206018,69337090,69468161,70189057,70254593,71106564,71368705,71499777,71630849,71696385,72220674,72417281,73859074,76677121,77660163,80478209,82706433,82771969,83099649,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718786,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93323276,93454337,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,96534529,96600065,96665601,100466689,103153666,109510657,109641729,110952449,136511489,137560065,150667265,150732801,150798337,150863873,150994945,151191553,151257089,151322625,151388161,151453697,151519233,151584769,152305665,153812993,155058179,155123713,155516929,155648001,155713538,155779073,155844613,156106756,156499969,156631041,156893185,156958721,157941762,158334977,158597121,158662657,158793729,159252481,160235522,161480705,161546241,161873921,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852354,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129154,174194689,174260225,174325761,175046671,175243265,175833089,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"documentation":[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,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752514,2818049,2883585,2949121,3014657,3080194,3145729,3211266,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,5767170,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340034,7405570,7471105,7536641,7602178,7667714,7733250,7798786,7864322,7929858,7995393,8060930,8126466,8192002,8257538,8323074,8388610,8454145,8519681,8585218,8650753,8716290,8781826,8847362,8912898,8978433,9043969,9109506,9175041,9240577,9306113,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895937,9961474,10027010,10092546,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,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,28311556,28377093,28442628,28508162,28573699,28639233,28704769,28770305,28835841,28901379,28966915,29032451,29097986,29163521,29229057,29294593,29360129,29425665,29491203,29556737,29622274,29687812,29753347,29818884,29884419,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539778,30605313,30670849,30736385,30801923,30867457,30932993,30998529,31064065,31129602,31195137,31260673,31326209,31391745,31457281,31522819,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636932,32702466,32768003,32833538,32899074,32964610,33030146,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554435,33619970,33685506,33751042,33816577,33882114,33947653,34013185,34078722,34144257,34209798,34275331,34340868,34406403,34471937,34537475,34603009,34668547,34734081,34799617,34865155,34930689,34996225,35061761,35127297,35192833,35258369,35323907,35389441,35454977,35520515,35586049,35651585,35717123,35782657,35848195,35913729,35979267,36044801,36110337,36175875,36241409,36306945,36372481,36438019,36503553,36569089,36634627,36700161,36765697,36831235,36896769,36962307,37027841,37093377,37158915,37224449,37289987,37355521,37421057,37486595,37552129,37617666,37683203,37748737,37814273,37879811,37945345,38010881,38076419,38141954,38207489,38273025,38338561,38404099,38469633,38535169,38600707,38666241,38731777,38797315,38862849,38928385,38993923,39059457,39124993,39190531,39256065,39321603,39387137,39452675,39518209,39583747,39649281,39714819,39780353,39845891,39911425,39976963,40042497,40108035,40173569,40239105,40304643,40370177,40435713,40501251,40566786,40632323,40697857,40763393,40828929,40894467,40960002,41025539,41091073,41156611,41222145,41287681,41353220,41418754,41484289,41549825,41615364,41680898,41746433,41811970,41877506,41943044,42008578,42074113,42139650,42205188,42270724,42336257,42401796,42467330,42532865,42598402,42663939,42729474,42795012,42860545,42926081,42991617,43057153,43122689,43188227,43253763,43319300,43384836,43450371,43515907,43581444,43646980,43712515,43778051,43843588,43909124,43974657,44040196,44105729,44171265,44236803,44302339,44367876,44433412,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088771,45154305,45219843,45285377,45350927,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137347,46202883,46268418,46333955,46399489,46465025,46530562,46596097,46661635,46727169,46792707,46858241,46923778,46989313,47054850,47120385,47185922,47251457,47316995,47382529,47448065,47513601,47579137,47644674,47710209,47775745,47841281,47906817,47972355,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496643,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610754,49676289,49741826,49807361,49872899,49938433,50003969,50069505,50135041,50200577,50266115,50331651,50397186,50462723,50528258,50593793,50659332,50724865,50790403,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380230,51445761,51511297,51576833,51642369,51707905,51773441,51838980,51904513,51970053,52035585,52101121,52166657,52232194,52297729,52363266,52428803,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149699,53215233,53280771,53346305,53411842,53477379,53542913,53608449,53673986,53739523,53805058,53870595,53936132,54001669,54067206,54132737,54198273,54263811,54329348,54394884,54460417,54525955,54591489,54657026,54722561,54788098,54853633,54919170,54984707,55050241,55115777,55181313,55246849,55312385,55377922,55443459,55508994,55574531,55640066,55705602,55771138,55836673,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950786,57016322,57081858,57147394,57212930,57278466,57344002,57409538,57475073,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720258,58785794,58851330,58916866,58982402,59047938,59113474,59179009,59244546,59310082,59375618,59441154,59506690,59572226,59637762,59703298,59768834,59834370,59899906,59965441,60030977,60096513,60162049,60227585,60293122,60358658,60424194,60489730,60555266,60620802,60686338,60751874,60817410,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472770,61538306,61603842,61669378,61734914,61800450,61865986,61931522,61997058,62062594,62128130,62193666,62259202,62324738,62390274,62455810,62521346,62586882,62652418,62717954,62783490,62849026,62914562,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504386,63569922,63635458,63700994,63766530,63832066,63897602,63963138,64028677,64094210,64159746,64225282,64290818,64356354,64421889,64487428,64552965,64618499,64684035,64749571,64815105,64880641,64946177,65011713,65077250,65142787,65208325,65273859,65339396,65404932,65470465,65536001,65601538,65667073,65732609,65798146,65863683,65929218,65994755,66060290,66125825,66191362,66256899,66322435,66387972,66453505,66519041,66584578,66650115,66715651,66781185,66846721,66912257,66977795,67043329,67108865,67174401,67239937,67305474,67371009,67436546,67502081,67567617,67633155,67698689,67764226,67829762,67895299,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812802,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402626,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633986,94699522,94765057,94830593,94896129,94961666,95027202,95092738,95158274,95223810,95289346,95354881,95420417,95485954,95551489,95617025,95682561,95748098,95813634,95879169,95944706,96010242,96075778,96141314,96206849,96272385,96337921,96403457,96468994,96534529,96600065,96665601,96731138,96796674,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500610,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449730,101515266,101580801,101646337,101711873,101777410,101842946,101908482,101974017,102039554,102105090,102170626,102236162,102301698,102367234,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529921,104595457,104660993,104726529,104792066,104857602,104923138,104988674,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413505,107479041,107544578,107610113,107675649,107741186,107806721,107872257,107937794,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772802,109838338,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935490,112001026,112066562,112132098,112197634,112263170,112328705,112394241,112459777,112525313,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180673,113246209,113311745,113377282,113442818,113508354,113573890,113639425,113704961,113770497,113836033,113901570,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753538,114819074,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719618,116785153,116850689,116916225,116981762,117047298,117112834,117178370,117243905,117309442,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833730,117899265,117964802,118030338,118095873,118161410,118226946,118292482,118358017,118423553,118489090,118554626,118620162,118685698,118751234,118816770,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341058,119406593,119472130,119537665,119603201,119668737,119734273,119799809,119865345,119930882,119996418,120061954,120127490,120193026,120258561,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319489,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416641,130482178,130547714,130613249,130678786,130744321,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055041,132120577,132186113,132251649,132317185,132382722,132448257,132513793,132579329,132644865,132710401,132775938,132841474,132907009,132972545,133038082,133103617,133169153,133234690,133300226,133365762,133431298,133496833,133562369,133627905,133693441,133758978,133824514,133890050,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560065,137625601,137691137,137756673,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280961,138346498,138412033,138477569,138543105,138608641,138674178,138739713,138805249,138870785,138936321,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460609,139526145,139591681,139657217,139722753,139788289,139853826,139919361,139984897,140050434,140115969,140181506,140247042,140312578,140378114,140443649,140509186,140574722,140640257,140705793,140771329,140836865,140902401,140967937,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999554,143065089,143130625,143196161,143261697,143327233,143392770,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307969,148373506,148439041,148504578,148570113,148635649,148701185,148766721,148832258,148897794,148963329,149028866,149094401,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618689,149684225,149749761,149815298,149880834,149946370,150011906,150077442,150142977,150208513,150274049,150339585,150405122,150470658,150536194,150601730,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715842,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371202,152436738,152502274,152567809,152633346,152698882,152764418,152829954,152895490,152961025,153026561,153092098,153157634,153223170,153288706,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271746,154337282,154402818,154468354,154533890,154599426,154664962,154730498,154796033,154861569,154927105,154992641,155058178,155123713,155189249,155254785,155320321,155385857,155451394,155516929,155582466,155648001,155713537,155779073,155844610,155910146,155975682,156041218,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400514,158466049,158531585,158597121,158662657,158728194,158793729,158859265,158924802,158990337,159055874,159121409,159186945,159252481,159318017,159383553,159449090,159514626,159580162,159645697,159711233,159776769,159842306,159907841,159973377,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497666,160563202,160628738,160694274,160759810,160825346,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136066,162201601,162267138,162332673,162398210,162463746,162529281,162594818,162660354,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250178,163315713,163381249,163446785,163512321,163577857,163643393,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691969,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002689,166068225,166133762,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837697,167903234,167968770,168034306,168099842,168165377,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476098,169541633,169607170,169672705,169738241,169803777,169869313,169934850,170000386,170065921,170131457,170196993,170262529,170328065,170393602,170459137,170524673,170590210,170655745,170721281,170786818,170852353,170917890,170983426,171048962,171114498,171180034,171245569,171311105,171376641,171442177,171507714,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032002,172097538,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277186,173342722,173408258,173473794,173539330,173604865,173670401,173735937,173801474,173867009,173932545,173998081,174063617,174129153,174194690,174260225,174325761,174391298,174456834,174522370,174587906,174653442,174718977,174784514,174850050,174915586,174981122,175046657,175112194,175177729,175243265,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,175964162,176029698,176095234,176160770,176226306,176291842,176357378,176422914,176488450,176553986,176619522,176685058,176750594,176816130,176881666,176947202,177012738,177078274,177143810,177209346,177274881,177340417,177405953,177471489,177537025,177602562,177668097,177733633,177799169,177864705,177930241,177995778,178061314,178126850,178192385,178257922,178323458,178388994,178454530,178520066,178585602,178651138,178716674,178782209,178847745,178913281],"describe":[131073],"description":[131073,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,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,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,69009410,69074947,69140481,69206017,69271553,69337092,69402625,69468162,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953922,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196802,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604674,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177538,90243073,90308610,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,101384194,116916225,155058177,155123715,155189250,155254788,155320324,155385860,155451394,155516931,155582465,155648003,155713539,155779074,155844612,155910146,155975682,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827650,156893187,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876226,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400513,158466053,158531588,158597122,158662659,158728195,158793731,158859266,158924803,158990338,159055873,159121411,159186947,159252483,159318019,159383555,159449091,159514627,159580163,159645699,159711235,159776772,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563203,160628739,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939459,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922500,162988035,163053571,163119107,163184643,163250180,163315715,163381251,163446787,163512323,163577859,163643395,164560897,164691972,166002692,166068227,166133763,166199300,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903233,167968769,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738244,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311108,171376643,171442180,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146116,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174718978,175046661,175177732,175243266,175833091,177274883,177340419,177405955,177471492,177537028,177602564,177668100,177733636,177799172,177864708,177930244,177995779,178192388,178782211,178847747,178913282],"date":[262145],"data":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,3604481,28114946,36306945,36372481,45875202,50069506,50135042,50200578,68222978,69140481,69402626,69468163,73465857,74907651,77266945,77332481,77398017,78184449,79953921,80019457,80936961,83034113,83099651,84934657,85000193,93388801,93454337,94306305,94371841,98107393,105316353,110100481,110428161,110755846,152109061,154796033,155254786,155320322,155385858,156499970,158466050,158531586,159711234,159973377,161808388,161873924,164691970,166002690,170196993,170328065,174129153,175046657,175177730,175833089,178192386,178782211],"dumps":[786433,1310721,69468161,166854657,175046657],"detail":[786433,2293761,52822017,52887553,69402626,69468161,75628546,83099649,93454337,110297089,151781377,161873922,162856963,168165377,175046657,175833089],"detects":[786433,2621441,175046657],"disconnect":[786433,2686977,93323265,151126017,175046658],"dbgetresponse":[786433,2752518,175046657],"dial":[786437,2818055,2883585,2949121,30670849,30736385,69468166,77529091,83099649,84541441,95420417,95617025,95879169,110624769,115539969,155648003,161873921,163315713,169148418,169213954,169279490,175046661],"dialbegin":[786433,2883589,175046657],"dialend":[786433,2949125,175046657],"dndstate":[786433,3014661,175046657],"dndstateevent":[786433,3014658,21954563,58982407,61931521,61997057,69468162,88276995,133103618,133169154,165871621,169410570,170328065,172032001,172097537,175046657],"driver":[786435,3014657,3342337,5898241,69468163,169410561,169869313,173867009,175046659],"dnd":[786433,3014657,69468161,84606977,84672513,88276994,115736577,115867649,133103617,133169153,163381249,163446785,169410563,175046657],"disturb":[786433,3014657,54657025,54788097,69402626,69468161,76087297,76152833,88276994,133103617,133169153,163381250,163446786,169410563,175046657],"dtmf":[786433,3080198,10682381,30867458,30932994,30998530,31195137,31260673,31588354,31653891,31784963,31916033,31981569,32047105,32178179,32309251,32440323,32571395,33292290,33423363,37814273,41287681,69140490,70057987,70320132,70385665,70516737,70582273,70647809,70713345,79888385,101253121,155713549,156499969,157024258,157089793,157155329,157220865,157286401,157351937,157417473,158334978,175046657],"detection":[786433,3866625,175046657],"details":[786433,4653057,18153473,53411841,54132737,55312385,60096513,68026369,69009409,69402627,69468162,69533698,75759617,75890689,158990337,162988033,163053571,163250177,169672705,171900929,175046657,177537025,177668097],"discontinued":[786433,5963777,69468162,167837697,173998081,175046657],"dialplan":[786433,6094849,69402626,69468161,88539137,91357185,91684865,134021121,142868481,159121409,159186945,169672705,172490753,172818433,174129153,175046657],"dll":[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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281],"dbgetresponseeventhandler":[2752519,69337089,165609478],"dbgetresponseevent":[2752513,21626883,58654727,69402625,69468162,87949315,132186114,132251650,132317186,160890882,165609477,169082890,173211649],"dialeventhandler":[2818055,69337089,165806086],"dialevent":[2818049,21823491,58851335,59047937,69468161,88014858,88080394,88145923,132448258,132513794,132579330,132644866,132710402,132775939,132841475,132907010,132972546,133038083,165806085,169148431,169213967,169279497,169476097,170328065],"dialbegineventhandler":[2883591,69337089,165675014],"dialbeginevent":[2883585,21692419,58720263,69468161,88014851,165675013,169148425,169279489],"dialendeventhandler":[2949127,69337089,165740550],"dialendevent":[2949121,21757955,58785799,69468161,88080387,132382723,165740549,169213961,169279489],"dndstateeventhandler":[3014663,69337089,165871622],"dtmfeventhandler":[3080199,69337089,165937158],"dtmfevent":[3080193,22020099,59047942,69468161,88342531,133234691,133300227,133365763,133431299,165937157,169476105,170328065],"default_hostname":[6356993,8454149,155058177],"default_port":[6356993,8519685,155058177],"dead":[6422529,8978433,155582465,155844609],"dictionary":[10092549,16777219,18743299,18808835,19333123,19398659,19464195,19529731,20512769,22216707,27197443,29753349,50397191,50462721,50528264,55508999,55574529,55640072,57475086,60030990,65929222,65994753,66060295,66977797,67305479,67567630,67764231,76939265,77004801,84475905,115212295,136511496,153354246,153812999,161873923,163250177,166068227,166133763,166658051,166723587,166789123,166854659,167837697,169672707,175833091,177864705,177930241],"determines":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"derived":[10289154,10354690,10420226,13434882,13500418,18612226,18677762,27066370,28049410,69468161,155254786,155320322,155385858,158466050,158531586,164691970,166002690,170328065,175177730,178192386],"directly":[10551297,29229057,69402625,69468163,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,136642561,155516929,161873921,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837698,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951810,169017345,169082881,169148417,169213953,169279489,169345026,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"different":[10551298,29360129,29425665,155516930],"digits":[10682388,11075586,30081025,30146562,30212098,30277634,30867458,30932994,30998532,31195139,31260676,31588354,31653891,31784961,31916034,31981570,32047106,32112645,32178182,32309249,32440321,32571393,33292289,34930689,34996225,35127297,35192833,35258369,36372481,36700161,36765698,37748737,37814274,38010881,38207490,38273026,38338562,38469638,38535175,38928385,39124993,40763393,40828929,69140493,69861380,70057991,70189060,70320130,70451203,71041026,71892995,77791233,78184450,78315522,78643201,78708737,78774273,78839811,78970881,79036417,79691777,96862209,98041858,98304001,98435073,98828289,99155969,99352577,99549190,99614721,99811329,99942401,100794369,155713556,156106756,156499973,156631044,157024258,157089794,157155333,157220868,157351938,157417474,158138370],"digit":[10682383,30081026,30146562,30212098,30277637,31195138,31260674,31588353,31653889,31784961,31916033,31981569,32047105,32112642,32178178,32309249,32440321,32571393,33292290,33423363,34930690,34996227,35061761,35127297,35192833,35258372,41287681,69140504,69861384,70189058,70320130,70516737,70844417,71106564,77791235,79888385,88342529,96993281,97124353,97189889,101253121,133300230,155713551,156106761,156631043,157024257,157089794,157155330,157220867,157286402,157351938,157417474,158138370,158334980,169476097],"disconnected":[10682372,30081025,30146561,30212097,30277633,69140483,69861380,155713540,156106753,156631041,158138369],"databasedel":[10682369,30343173,155713537],"deletes":[10682371,30343169,30408705,30474241,47775745,47906817,69140482,69926914,74186753,74252289,155713539,156172289,156237825,160759809,160825345],"database":[10682373,30343169,30408705,30474241,30539777,30605313,47775745,47906817,48103425,48234497,69140484,69402626,69926914,74186753,74252289,74317825,74383361,87949315,132186113,132251649,132317185,155713541,156172289,156237825,156303361,156368897,160759809,160825345,160890882,160956418,169082883],"databasedeltree":[10682370,30408710,30474246,69926915,155713538],"databaseget":[10682369,30539782,155713537],"databaseput":[10682369,30605317,155713537],"despite":[10682370,31588353,31653890,37814273,69140481,70320130,155713538,157024257],"disables":[10682369,32702465,39518209,54657025,76087297,155713537,163381249],"databasedelcommand":[11141123,35323908,35389447,35454983,35586049,35651585,69140481,71172102,71237634,77856771,97255426,97320962,155910145,156172299,156237826],"databasedeltreecommand":[11206659,35520516,35586054,35651590,69140481,71237636,77922307,97386498,97452034,155910145,156237833],"databasegetcommand":[11272195,35717124,35782662,69140481,77987843,97517570,97583106,155910145,156303369],"databaseputcommand":[11337731,35848196,35913734,69140481,78053379,97648642,97714178,97779714,155910145,156368905],"determinescript":[13369345,13565953,13631489,13762561,41353224,41615370,41943050,42401802,158400513,158597121,158662657,158793729],"debug":[13959172,43188232,43253768,43319305,43384841,72679429,158990340,159055873],"dbdelaction":[15663107,47710215,47775751,69402625,74186758,81985539,107347971,107413506,107479042,160759820,161611777],"dbdeltreeaction":[15728643,47841287,47906823,69402625,74252294,82051075,107544579,107610114,107675650,160825356,161611777],"dbgetaction":[15794179,47972356,48037895,48103431,69402625,69468161,74317830,82116611,107741187,107806722,107872258,160890891,161677313,169082882],"dbputaction":[15859715,48168967,48234503,69402625,74383366,82182147,107937795,108003330,108068866,108134402,160956427,161611777],"disconnectevent":[21889027,58916871,69468162,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211460,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,136642561,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345035,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"determineversion":[27000833,64684039,175046657],"delayed":[27000834,64880641,64946177,76611586,175046658],"disconnects":[27000833,65011713,175046657],"dependent":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"duration":[27983874,67829762,87031809,89391105,129957894,137297926,168165377,170524673,177995778],"digest":[28114945,45744130,49152002,49217538,68222977,68288513,69599233,73400321,80871425,82575362,94371841,105119745,109051906,154796033,159645698,161349634,178782212],"determine":[28573697],"decribing":[28704769,28770305],"delete":[30343170,30408705,30474242,35389442,35454979,35586049,35651586,54132737,69402625,71172098,77856770,77922306,81985538,82051074,97255425,97320961,97386497,97452033,107413505,107479041,107610113,107675649,156172292,156237826,160759810,160825346,163250177],"defined":[31260673,36765697,69402626,77266945,77332481,77398017,78315521,79953921,80019457,80412674,84934657,85000193,91357185,91684865,91750401,93192193,93388801,94306305,98435073,102629377,102957057,142868481,144310273,150339585,155254785,155320321,155385857,156631041,158466049,158531585,159186946,162725889,162988033,164691969,166002689,172490753,172818433,172883969,174325761,175177729,178192385],"defaults":[34209793,80412674,83034114,102629377,102957057,110100481,110166017,159186946,161808386],"defaultarg":[34209797],"directory":[46858241,46923777,47579138,47644674,73859074,74121220,160235522,160694276],"distributed":[51249153,83427329,91291649,91357185,91684865,111804417,142475265,143065089,162201601,172425217,172490753,172818433],"destination":[52625411,52690947,69402625,84017155,84475905,87031809,88014850,88080386,88145922,113967105,114032641,114163713,115277825,129695750,132644870,159186945,162791427,163250177,168165377,169148418,169213954,169279490],"delcat":[54132737,69402625,163250177],"dstfilename":[54263814,54329350,54394886,69402625,84475905,115277829,163250178],"dials":[54525953,69402625,76021761,163315714],"describing":[55181313,55246849,65667073,65732609],"delegate":[68681729,68747265,69337089,163708933,163774469,163840005,163905541,163971077,164036613,164102149,164167685,164233221,164298757,164364293,164429829,164495365,164626437,164757509,164823045,164888581,164954117,165019653,165085189,165150725,165216261,165281797,165347333,165412869,165478405,165543941,165609477,165675013,165740549,165806085,165871621,165937157,174391301,174456837,174522373,174587909,174653445,174784517,174850053,174915589,174981125,175112197,175308805,175374341,175439877,175505413,175570949,175636485,175702021,175767557,175898629,175964165,176029701,176095237,176160773,176226309,176291845,176357381,176422917,176488453,176553989,176619525,176685061,176750597,176816133,176881669,176947205,177012741,177078277,177143813,177209349,178061317,178126853,178257925,178323461,178388997,178454533,178520069,178585605,178651141,178716677],"denoting":[69074945,155385857],"decimal":[69140481,156893185],"disabled":[69140481,88276994,89128961,133103617,133169153,136314881,157614081,169410562,170262529],"disable":[69140481,93323265,151126017,158203905,175046657],"desire":[69140481,158334977],"delegates":[69337089],"denote":[69402625,162725889],"dump":[69402626,162725889,163250177],"depending":[69402625,162856961],"describes":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"depends":[77463553,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94568449,153944065,154075137,155516929,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"dnid":[77529089,95485958,155648001],"disconnecting":[80412673,102957057,159186945],"def":[83099650,85065729,85131265,85655553,85721089,85786625,85852161,88539137,111017986,116523009,161873922,166068225,166133761,166658049,166723585,166789121,166854657,169672705],"desired":[84475905,115212289,163250177],"datereceived":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136642565,153878533,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"destinationchannel":[85655553,87031809,118620166,129761286,166658049,168165377],"destbridgeuniqueid":[86441985,120586246,167444481],"desttype":[86441985,120651782,167444481],"destinationcontext":[87031809,129826822,168165377],"disposition":[87031809,129892358,168165377],"destuniqueid":[88014849,88080385,88145921,132710405,169148417,169213953,169279489],"distination":[88014849,88080385,88145921,132710401,169148417,169213953,169279489],"dialstatus":[88014849,88080385,88145921,132775942,169148417,169213953,169279489],"dialstring":[88014849,88080385,88145921,132841478,169148417,169213953,169279489],"direction":[88342529,133365766,169476097],"disabling":[89128962,136380417,136445953,170262530],"device":[89784321,137822214,170917889],"dynamic":[90701825,91291651,91357186,91684866,140050438,142344195,142868482,171835393,172425219,172490754,172818434],"dchannel":[90898433,141033478,172032001],"dynamically":[91357185,91684865,142868481,172490753,172818433],"deliver":[91750401,144506881,172883969],"delays":[91750401,144506881,172883969],"domain":[91881474,144703494,173015042],"dnsmgr":[91947010,144965633,145031169,173080578],"dlsr":[92143617,92209153,145424390,146276358,173277185,173342721],"defaulteventtimeout":[93323265,150667269,175046657],"defaultresponsetimeout":[93323265,150732805,175046657],"digestdata":[94371841,154796037,178782209],"delimiter":[111017988,116523012],"datetime":[136642567,153878535,154402823,154664967],"double":[136904710,144375814,146407430,146997254,147324934,147521542],"depreciated":[158793732]} \ No newline at end of file +{"default":[1,917507,983042,1310721,2031617,2097153,2555905,3538945,3604481,4456449,5242882,21626881,25821185,26083329,29687809,29753345,29818881,29884417,30867457,31326209,31981569,32178177,34799617,34865153,35848193,41484289,41549825,44040193,44171265,59834369,63766533,63897602,64028674,64159745,64880641,64946177,65798148,66060289,66191361,66322433,66387969,66912258,67108865,68550658,71368705,72351747,75169793,77398017,77463553,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410370,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080396,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,91291649,91357185,91422721,95223809,97910786,104267777,104398849,105709569,132055041,133103617,146604033,146669569,146735105,146800641,146931713,147128321,147193857,147259393,147324929,147390465,147456001,147521537,148242433,149749761,150994947,151060481,151453697,151584769,151650306,151715841,151781381,152043524,152436737,152567809,152829953,152895489,153878530,154271745,154533889,154599425,154730497,155189249,156172290,157417473,157483009,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789122,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,171048975,171245569,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"documentation":[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,1900546,1966082,2031617,2097153,2162690,2228226,2293762,2359298,2424834,2490370,2555905,2621442,2686978,2752514,2818050,2883586,2949122,3014657,3080193,3145730,3211265,3276802,3342338,3407874,3473410,3538945,3604481,3670018,3735553,3801089,3866625,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456449,4521986,4587522,4653058,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,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,22937604,23003141,23068676,23134210,23199747,23265281,23330817,23396353,23461889,23527427,23592963,23658499,23724034,23789569,23855105,23920641,23986177,24051713,24117251,24182785,24248322,24313860,24379395,24444932,24510467,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165826,25231361,25296897,25362433,25427971,25493505,25559041,25624577,25690113,25755650,25821185,25886721,25952257,26017793,26083329,26148867,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262980,27328514,27394051,27459586,27525122,27590658,27656194,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180483,28246018,28311554,28377090,28442625,28508162,28573701,28639233,28704770,28770305,28835846,28901379,28966916,29032451,29097985,29163523,29229057,29294595,29360129,29425665,29491203,29556737,29622273,29687809,29753345,29818881,29884417,29949955,30015489,30081025,30146563,30212097,30277633,30343171,30408705,30474243,30539777,30605315,30670849,30736385,30801923,30867457,30932993,30998529,31064067,31129601,31195137,31260675,31326209,31391745,31457283,31522817,31588355,31653889,31719425,31784963,31850497,31916035,31981569,32047105,32112643,32178177,32243714,32309251,32374785,32440321,32505859,32571393,32636929,32702467,32768002,32833537,32899073,32964609,33030147,33095681,33161217,33226755,33292289,33357825,33423363,33488897,33554433,33619971,33685505,33751041,33816579,33882113,33947651,34013185,34078723,34144257,34209795,34275329,34340867,34406401,34471939,34537473,34603011,34668545,34734083,34799617,34865153,34930691,34996225,35061761,35127299,35192834,35258371,35323905,35389441,35454977,35520515,35586050,35651587,35717121,35782659,35848193,35913729,35979268,36044802,36110337,36175873,36241412,36306946,36372481,36438018,36503554,36569092,36634626,36700161,36765698,36831236,36896772,36962305,37027844,37093378,37158913,37224450,37289987,37355522,37421060,37486593,37552129,37617665,37683201,37748737,37814275,37879811,37945348,38010884,38076419,38141955,38207492,38273028,38338563,38404099,38469636,38535172,38600705,38666244,38731777,38797313,38862851,38928387,38993924,39059460,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714819,39780353,39845891,39911425,39976975,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763395,40828931,40894466,40960003,41025537,41091073,41156610,41222145,41287683,41353217,41418755,41484289,41549826,41615361,41680898,41746433,41811970,41877505,41943043,42008577,42074113,42139649,42205185,42270722,42336257,42401793,42467329,42532865,42598403,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122691,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236802,44302337,44367874,44433409,44498947,44564481,44630017,44695553,44761089,44826625,44892163,44957699,45023234,45088771,45154306,45219841,45285380,45350913,45416451,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006278,46071809,46137345,46202881,46268417,46333953,46399489,46465028,46530561,46596101,46661633,46727169,46792705,46858242,46923777,46989314,47054851,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775747,47841281,47906819,47972353,48037890,48103427,48168961,48234497,48300034,48365571,48431106,48496643,48562180,48627717,48693254,48758785,48824321,48889859,48955396,49020932,49086465,49152003,49217537,49283074,49348609,49414146,49479681,49545218,49610755,49676289,49741825,49807361,49872897,49938433,50003970,50069507,50135042,50200579,50266114,50331650,50397186,50462721,50528258,50593794,50659330,50724865,50790402,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101121,52166658,52232194,52297730,52363266,52428802,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346306,53411842,53477378,53542914,53608450,53673986,53739522,53805057,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591489,54657025,54722561,54788097,54853633,54919170,54984706,55050242,55115778,55181314,55246850,55312386,55377922,55443458,55508994,55574530,55640066,55705602,55771138,55836674,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950785,57016322,57081857,57147393,57212929,57278465,57344001,57409537,57475074,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720261,58785794,58851330,58916866,58982402,59047938,59113473,59179012,59244549,59310083,59375619,59441155,59506689,59572225,59637761,59703297,59768834,59834371,59899909,59965443,60030980,60096516,60162049,60227585,60293122,60358657,60424193,60489730,60555267,60620802,60686339,60751874,60817409,60882946,60948483,61014019,61079556,61145089,61210625,61276162,61341699,61407235,61472769,61538305,61603841,61669379,61734913,61800449,61865985,61931521,61997058,62062593,62128130,62193665,62259201,62324739,62390273,62455810,62521346,62586883,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504386,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094210,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391106,89456642,89522177,89587713,89653249,89718786,89784322,89849858,89915394,89980930,90046466,90112001,90177537,90243074,90308609,90374145,90439681,90505218,90570754,90636289,90701826,90767362,90832898,90898434,90963969,91029505,91095041,91160577,91226114,91291649,91357185,91422721,91488258,91553794,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257730,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206850,96272386,96337921,96403457,96468993,96534530,96600066,96665602,96731137,96796674,96862210,96927746,96993282,97058818,97124354,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287041,99352577,99418113,99483649,99549186,99614722,99680258,99745794,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170625,102236161,102301698,102367233,102432769,102498306,102563841,102629377,102694914,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529922,104595458,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692610,106758146,106823682,106889218,106954754,107020290,107085825,107151361,107216897,107282433,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937793,108003329,108068865,108134402,108199938,108265474,108331010,108396545,108462081,108527617,108593153,108658690,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510658,109576194,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476738,111542273,111607809,111673345,111738882,111804418,111869954,111935490,112001025,112066562,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377282,113442817,113508354,113573890,113639425,113704962,113770498,113836034,113901569,113967105,114032642,114098178,114163714,114229250,114294786,114360322,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884610,114950145,115015682,115081217,115146753,115212289,115277825,115343361,115408897,115474434,115539970,115605506,115671042,115736578,115802113,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863041,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960193,126025730,126091266,126156801,126222338,126287873,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598593,127664129,127729665,127795201,127860737,127926274,127991809,128057345,128122881,128188417,128253953,128319490,128385026,128450561,128516097,128581634,128647169,128712705,128778242,128843778,128909314,128974850,129040385,129105921,129171457,129236993,129302530,129368066,129433602,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103617,133169153,133234689,133300225,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824513,133890050,133955585,134021121,134086657,134152193,134217730,134283265,134348801,134414337,134479873,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004161,135069697,135135233,135200769,135266305,135331841,135397378,135462913,135528449,135593986,135659521,135725058,135790594,135856130,135921666,135987201,136052738,136118274,136183809,136249345,136314881,136380417,136445953,136511489,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543106,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244737,144310274,144375809,144441346,144506881,144572417,144637953,144703489,144769026,144834562,144900097,144965634,145031169,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555457,145620993,145686529,145752066,145817602,145883138,145948674,146014210,146079745,146145281,146210817,146276353,146341890,146407426,146472962,146538498,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652610,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307970,148373506,148439042,148504577,148570114,148635650,148701186,148766722,148832258,148897793,148963329,149028866,149094402,149159938,149225474,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732801,150798337,150863873,150929409,150994946,151060481,151126017,151191553,151257089,151322625,151388162,151453697,151519234,151584769,151650305,151715841,151781378,151846914,151912450,151977986,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337282,154402817,154468353,154533889,154599425,154664962,154730497,154796033,154861570,154927105,154992642,155058177,155123713,155189249,155254785,155320321,155385858,155451394,155516930,155582465,155648001,155713537,155779074,155844609,155910145,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072834,158138369,158203906,158269441,158334978,158400514,158466049,158531586,158597122,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497666,160563202,160628737,160694274,160759810,160825346,160890882,160956418,161021954,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546242,161611777,161677313,161742849,161808385,161873922,161939457,162004993,162070530,162136065,162201602,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774465,163840002,163905538,163971074,164036610,164102145,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412866,165478401,165543938,165609473,165675009,165740545,165806081,165871618,165937154,166002689,166068225,166133761,166199297,166264833,166330370,166395905,166461441,166526978,166592513,166658049,166723586,166789121,166854658,166920194,166985730,167051266,167116802,167182337,167247873,167313409,167378945,167444482,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968770,168034306,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279490,169345026,169410562,169476098,169541634,169607169,169672705,169738241,169803778,169869313,169934849,170000385,170065921,170131457,170196994,170262529,170328065,170393601,170459138,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425218,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670402,173735937,173801473,173867009,173932545,173998081,174063618,174129153,174194690,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"describe":[131073],"description":[131073,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,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,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,63700994,63766531,63832065,63897601,63963137,64028676,64094209,64159746,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645506,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888386,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296258,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869122,84934657,85000194,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,96141314,111673345,150994945,151060483,151126018,151191556,151257092,151322628,151388162,151453699,151519233,151584771,151650307,151715842,151781380,151846914,151912450,151977987,152043523,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698883,152764418,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616387,153681923,153747459,153812994,153878531,153944067,154009603,154075139,154140675,154206211,154271747,154337281,154402821,154468356,154533890,154599427,154664963,154730499,154796034,154861571,154927106,154992641,155058179,155123715,155189251,155254787,155320323,155385859,155451395,155516931,155582467,155648003,155713540,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827651,156893187,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859268,158924803,158990339,159055875,159121411,159186948,159252483,159318019,159383555,159449091,159514627,159580163,160497665,160628740,161939460,162004995,162070531,162136068,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163840001,163905537,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675012,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247876,167313411,167378948,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148420,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170721282,171048964,171180036,171245570,171835395,173342723,173408259,173473795,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063619,174260228,174850051,174915587,174981122],"date":[262145],"data":[327681,393217,458753,524289,589825,655361,720897,786433,851969,22740994,30932993,30998529,40501250,44695554,44761090,44826626,62914562,63832065,64028673,64094210,64159747,68157441,69599235,71958529,72024065,72089601,72876033,74645505,74711041,75628545,77725697,77791235,79626241,79691777,88145921,88211457,89063425,89128961,92864513,100073473,104857601,105185281,105512966,148045829,150732801,151191554,151257090,151322626,152436738,154402818,154468354,155648002,155910145,157745156,157810692,160628738,161939458,166133761,166264833,170131457,170917889,171180034,171835393,174260226,174850051],"default_hostname":[917505,3014661,150994945],"default_port":[917505,3080197,150994945],"dead":[983041,3538945,151519233,151781377],"dll":[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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"dictionary":[4653061,11337731,13303811,13369347,13893635,13959171,14024707,14090243,15073281,16777219,21823491,24379397,45023239,45088769,45154312,50135047,50200577,50266120,52101134,54657038,60620806,60686337,60751879,61669381,61997063,62259214,62455815,71630849,71696385,79167489,109969415,132055048,149291014,149749767,157810691,159186945,162004995,162070531,162594819,162660355,162725891,162791427,163774465,165609475,171835395,173932545,173998081],"determines":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"derived":[4849666,4915202,4980738,7995394,8060930,13172738,13238274,21692418,22675458,64159745,151191554,151257090,151322626,154402818,154468354,160628738,161939458,166264833,171180034,174260226],"directly":[5111809,23855105,64094209,64159747,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132186113,151453697,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774466,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281794,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"different":[5111810,23986177,24051713,151453698],"digits":[5242900,5636098,24707073,24772610,24838146,24903682,25493506,25559042,25624580,25821187,25886724,26214402,26279939,26411009,26542082,26607618,26673154,26738693,26804230,26935297,27066369,27197441,27918337,29556737,29622273,29753345,29818881,29884417,30998529,31326209,31391746,32374785,32440322,32636929,32833538,32899074,32964610,33095686,33161223,33554433,33751041,35389441,35454977,63832077,64552964,64749575,64880644,65011714,65142787,65732610,66584579,72482817,72876034,73007106,73334785,73400321,73465857,73531395,73662465,73728001,74383361,91619329,92798978,93061121,93192193,93585409,93913089,94109697,94306310,94371841,94568449,94699521,95551489,151650324,152043524,152436741,152567812,152961026,153026562,153092101,153157636,153288706,153354242,154075138],"digit":[5242895,24707074,24772610,24838146,24903685,25821186,25886722,26214401,26279937,26411009,26542081,26607617,26673153,26738690,26804226,26935297,27066369,27197441,27918338,28049411,29556738,29622275,29687809,29753345,29818881,29884420,35913729,63832088,64552968,64880642,65011714,65208321,65536001,65798148,72482819,74579969,83034113,91750401,91881473,91947009,96010241,128843782,151650319,152043529,152567811,152961025,153026562,153092098,153157635,153223170,153288706,153354242,154075138,154271748,165412865],"disconnected":[5242884,24707073,24772609,24838145,24903681,63832067,64552964,151650308,152043521,152567809,154075137],"databasedel":[5242881,24969221,151650305],"deletes":[5242883,24969217,25034753,25100289,42401793,42532865,63832066,64618498,68878337,68943873,151650307,152109057,152174593,156696577,156762113],"database":[5242885,24969217,25034753,25100289,25165825,25231361,42401793,42532865,42729473,42860545,63832068,64094210,64618498,68878337,68943873,69009409,69074945,82640899,127729665,127795201,127860737,151650309,152109057,152174593,152240129,152305665,156696577,156762113,156827650,156893186,165019651],"databasedeltree":[5242882,25034758,25100294,64618499,151650306],"databaseget":[5242881,25165830,151650305],"databaseput":[5242881,25231365,151650305],"dtmf":[5242893,25493506,25559042,25624578,25821185,25886721,26214402,26279939,26411011,26542081,26607617,26673153,26804227,26935299,27066371,27197443,27918338,28049411,32440321,35913729,63832074,64749571,65011716,65077249,65208321,65273857,65339393,65404929,74579969,96010241,151650317,152436737,152961026,153026561,153092097,153157633,153223169,153288705,153354241,154271746],"despite":[5242882,26214401,26279938,32440321,63832065,65011714,151650306,152961025],"disables":[5242881,27328513,34144257,49283073,70778881,151650305,159318017],"databasedelcommand":[5701635,29949956,30015495,30081031,30212097,30277633,63832065,65863686,65929218,72548355,92012546,92078082,151846913,152109067,152174594],"databasedeltreecommand":[5767171,30146564,30212102,30277638,63832065,65929220,72613891,92143618,92209154,151846913,152174601],"databasegetcommand":[5832707,30343172,30408710,63832065,72679427,92274690,92340226,151846913,152240137],"databaseputcommand":[5898243,30474244,30539782,63832065,72744963,92405762,92471298,92536834,151846913,152305673],"determinescript":[7929857,8126465,8192001,8323073,35979272,36241418,36569098,37027850,154337281,154533889,154599425,154730497],"debug":[8519684,37814280,37879816,37945353,38010889,67371013,154927108,154992641],"dbdelaction":[10223619,42336263,42401799,64094209,68878342,76677123,102105091,102170626,102236162,156696588,157548545],"dbdeltreeaction":[10289155,42467335,42532871,64094209,68943878,76742659,102301699,102367234,102432770,156762124,157548545],"dbgetaction":[10354691,42598404,42663943,42729479,64094209,64159745,69009414,76808195,102498307,102563842,102629378,156827659,157614081,165019650],"dbputaction":[10420227,42795015,42860551,64094209,69074950,76873731,102694915,102760450,102825986,102891522,156893195,157548545],"details":[12713985,48037889,48758785,49938433,54722561,62717953,63700993,64028673,64094211,64159746,64225282,70451201,70582273,154927105,158924801,158990339,159186945,165609473,167837697,172294145,173604865,173735937],"dbgetresponseevent":[16187395,53280775,64094209,64159746,82640899,127729666,127795202,127860738,156827650,161546245,165019658,169213953],"dialbeginevent":[16252931,53346311,64159745,82706435,161611781,165085193,165216257],"dialendevent":[16318467,53411847,64159745,82771971,127926275,161677317,165150729,165216257],"dialevent":[16384003,53477383,53673985,64159745,82706442,82771978,82837507,127991810,128057346,128122882,128188418,128253954,128319491,128385027,128450562,128516098,128581635,161742853,165085199,165150735,165216265,165412865,166264833],"disconnectevent":[16449539,53542919,64159746,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903044,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132186113,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954114,165019649,165085185,165150721,165216257,165281803,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"dndstateevent":[16515075,53608455,56557569,56623105,64028673,64159746,82968579,128647170,128712706,161808390,165347338,166264833,167968769,168034305],"dtmfevent":[16580611,53673990,64159745,83034115,128778243,128843779,128909315,128974851,161873925,165412873,166264833],"determineversion":[21626881,59375623,171048961],"delayed":[21626882,59572225,59637761,71303170,171048962],"disconnects":[21626881,59703297,171048961],"dependent":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"duration":[22609922,62521346,81723393,84082689,125501446,132841478,164102145,166461441,174063618],"digest":[22740993,40370178,43778050,43843586,62914561,62980097,64290817,68091905,75563009,77266946,89128961,99876865,103809026,150732801,155582466,157286402,174850052],"determine":[23199745],"decribing":[23330817,23396353],"delete":[24969218,25034753,25100290,30015490,30081027,30212097,30277634,48758785,64094209,65863682,72548354,72613890,76677122,76742658,92012545,92078081,92143617,92209153,102170625,102236161,102367233,102432769,152109060,152174594,156696578,156762114,159186945],"dial":[25296897,25362433,64028676,64159750,72220675,77791233,79233025,90177537,90374145,90636289,105381889,110297089,151584771,157810689,159252481,161611777,161677313,161742850,165085186,165150722,165216258],"defined":[25886721,31391745,64094210,71958529,72024065,72089601,73007105,74645505,74711041,75104258,79626241,79691777,86048769,86507521,87949313,88145921,89063425,93192193,97386497,97714177,138412033,140247041,146276353,151191553,151257089,151322625,152567809,154402817,154468353,155123714,158662657,158924801,160628737,161939457,168427521,168886273,170328065,171180033,174260225],"defaults":[28835841,75104258,77725698,97386497,97714177,104857601,104923137,155123714,157745154],"defaultarg":[28835845],"directory":[41484289,41549825,42205186,42270722,68550658,68812804,156172290,156631044],"distributed":[45875201,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,106561537,112984065,138018817,138608641,139657217,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737],"destination":[47251459,47316995,64094209,78708739,79167489,81723393,82706434,82771970,82837506,108724225,108789761,108920833,110034945,125239302,128188422,155123713,158728195,159186945,164102145,165085186,165150722,165216258],"detail":[47448065,47513601,64028673,64094210,64159745,70320130,77791233,88211457,105054209,147718145,157810690,158793731,161087489,164102145,171835393],"delcat":[48758785,64094209,159186945],"dstfilename":[48889862,48955398,49020934,64094209,79167489,110034949,159186946],"dials":[49152001,64094209,70713345,159252482],"disturb":[49283073,49414145,64028673,64094210,64159745,70778881,70844417,82968578,128647169,128712705,159318018,159383554,161808385,165347331],"describing":[49807361,49872897,60358657,60424193],"delegate":[63373313,63438849,64028673,159645701,159711237,159776773,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160563205,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153029,161218565,161284101,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,170393605,170459141,170524677,170590213,170655749,170786821,170852357,170917893,170983429,171114501,171311109,171376645,171442181,171507717,171573253,171638789,171704325,171769861,171900933,171966469,172032005,172097541,172163077,172228613,172294149,172359685,172425221,172490757,172556293,172621829,172687365,172752901,172818437,172883973,172949509,173015045,173080581,173146117,173211653,173277189,174129157,174194693,174325765,174391301,174456837,174522373,174587909,174653445,174718981,174784517],"denoting":[63766529,151322625],"decimal":[63832065,152829953],"disabled":[63832065,82968578,83820545,128647169,128712705,131858433,153550849,165347330,166199297],"disable":[63832065,88080385,147062785,154140673,171048961],"desire":[63832065,154271745],"delegates":[64028673],"dumps":[64028673,64159745,159973377,162791425],"detects":[64028673,161415169],"disconnect":[64028673,88080385,147062785,161480705,171048961],"dbgetresponseeventhandler":[64028673,161546246],"dialbegineventhandler":[64028673,161611781],"dialendeventhandler":[64028673,161677317],"dialeventhandler":[64028673,161742853],"dndstateeventhandler":[64028673,161808389],"driver":[64028675,64159747,161808385,165347329,165806081,169869313,170655745,174391297],"dnd":[64028673,64159745,79298561,79364097,82968578,110493697,110624769,128647169,128712705,159318017,159383553,161808385,165347331],"dtmfeventhandler":[64028673,161873926],"detection":[64028673,171442177],"discontinued":[64028673,64159746,163774465,170000385,174456833],"dialplan":[64028673,64094210,64159745,83230721,86048769,129564673,138412033,155058177,155123713,165609473,168427521,170131457,174587905],"denote":[64094209,158662657],"dump":[64094210,158662657,159186945],"depending":[64094209,158793729],"describes":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"depends":[72155137,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,89325569,149880833,150011905,151453697,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"dnid":[72220673,90243078,151584769],"disconnecting":[75104257,97714177,155123713],"def":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"desired":[79167489,109969409,159186945],"datereceived":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132186117,149815301,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"dynamic":[80150530,85393409,85983235,86048770,86114306,86179842,86245378,86310914,86376450,86441987,112787458,135593990,137887747,138412034,139526147,162398210,167772161,168361987,168427522,168493058,168558594,168624130,168689666,168755202,168820739],"device":[80150530,84475905,85983233,86114306,86179842,86245378,86310914,86376450,86441985,113180673,113246209,133365766,139722753,162398210,166854657,168361985,168493058,168558594,168624130,168689666,168755202,168820737],"destinationchannel":[80347137,81723393,114163718,125304838,162594817,164102145],"destbridgeuniqueid":[81133569,116129798,163381249],"desttype":[81133569,116195334,163381249],"destinationcontext":[81723393,125370374,164102145],"disposition":[81723393,125435910,164102145],"destuniqueid":[82706433,82771969,82837505,128253957,165085185,165150721,165216257],"distination":[82706433,82771969,82837505,128253953,165085185,165150721,165216257],"dialstatus":[82706433,82771969,82837505,128319494,165085185,165150721,165216257],"dialstring":[82706433,82771969,82837505,128385030,165085185,165150721,165216257],"direction":[83034113,128909318,165412865],"disabling":[83820546,131923969,131989505,166199298],"dchannel":[85590017,136577030,167968769],"dynamically":[86048769,138412033,168427521],"deliver":[86507521,140443649,168886273],"delays":[86507521,140443649,168886273],"domain":[86638594,140640262,169017346],"dnsmgr":[86704130,140902401,140967937,169082882],"dlsr":[86900737,86966273,141361158,142213126,169279489,169345025],"defaulteventtimeout":[88080385,146604037,171048961],"defaultresponsetimeout":[88080385,146669573,171048961],"digestdata":[89128961,150732805,174850049],"delimiter":[105775108,111280132],"datetime":[132186119,149815303,150339591,150601735],"double":[132448262,140312582,142344198,142934022,143261702,143458310],"depreciated":[154730500]} \ No newline at end of file diff --git a/docs/fti/FTI_101.json b/docs/fti/FTI_101.json index ee1c527..cae61ae 100644 --- a/docs/fti/FTI_101.json +++ b/docs/fti/FTI_101.json @@ -1 +1 @@ -{"events":[327682,393218,458754,524290,589826,655362,720898,786436,851970,917506,2686977,3604481,6750211,9895939,16580609,46268417,48365571,49217544,49610753,69337091,69402629,69468176,82247684,82575364,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93323266,93585410,108199937,108265475,109117448,136642561,150798338,152567809,152633350,155254785,155320321,155385857,158466049,158531585,159907842,159973377,161021957,161349636,161677314,161873921,164691969,166002690,166068226,166133761,166199297,166264833,166330370,166395906,166461442,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182338,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837699,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196994,170262529,170328068,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211650,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129156,174194689,174260225,174325761,175046664,175177729,177274881,177340419,178192385],"exposes":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,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,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,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174718977,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"exception":[327684,393220,458756,524292,589828,655364,720900,851972,917508,6422530,8978433,9043969,10289159,10354695,10420231,13434887,13500423,13959172,18612231,18677767,27066375,28049415,28770311,28901383,43319305,43581449,43843593,44367881,55246855,65667073,65732617,69337089,69730305,72679425,72744961,72810497,72941569,76283905,76873729,77266959,77332495,77398031,79953935,80019471,84934671,85000207,93388815,94306319,155254816,155320347,155385883,155844610,158466075,158531611,158990340,164692000,166002716,175177760,178192415],"eventtimeoutexception":[720899,18677763,55312390,69337090,85000195,116260866,166002698,178192385],"enable":[786434,1114113,3866625,69140481,69468162,158203905,166658049,168165377,175046658],"eventwhencalled":[786433,1114113,69468161,166658049,175046657],"end":[786434,1179649,2293761,10682370,31588354,31653890,37748737,37814273,50200577,50724865,69140482,69402625,69468163,69533698,70320130,78643201,83034113,83165185,84410369,88342529,98828289,110231553,111214593,115081217,133431302,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713539,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499970,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024259,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808386,161873921,161939458,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725890,162791425,162856961,162922497,162988033,163053569,163119105,163184642,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723586,166789121,166854657,166920193,166985729,167051265,167116801,167182338,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476098,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174718977,175046659,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537027,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"execute":[786433,1638401,30670849,30736385,36044801,36110337,46006273,69402625,77529089,78118913,96272385,97845249,155648001,156434433,159383553,175046657],"enters":[786434,1703937,3014657,69468162,167313409,169410561,175046658],"event":[786438,983044,1048580,1114116,1179652,1245188,1310724,1376260,1441796,1507332,1572868,1638404,1703940,1769476,1835012,1900548,1966084,2031620,2097156,2162692,2228228,2293764,2359301,2424837,2490373,2555909,2621445,2686980,2752516,2818052,2883588,2949124,3014660,3080196,3145732,3211268,3276804,3342340,3407876,3473412,3538948,3604484,3670020,3735556,3801092,3866628,3932164,3997700,4063236,4128772,4194308,4259844,4325380,4390916,4456452,4521988,4587524,4653060,4718596,4784132,4849668,4915204,4980740,5046276,5111812,5177348,5242884,5308420,5373956,5439492,5505028,5570564,5636100,5701636,5767172,5832709,5898244,5963780,6029316,6094852,6160388,6225924,6291460,6684673,9764867,9830403,16580609,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,27000833,46268417,48365570,49217537,49610754,51380230,55377923,55443460,55508995,55574532,55640067,55705603,55771139,55836674,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475074,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59047939,59113475,59179010,59244547,59310083,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965442,60030978,60096515,60162050,60227587,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766531,63832067,63897603,63963139,64028678,64094211,64159747,64225283,64290819,65077249,66256899,66453505,69337089,69402627,69468188,74448897,76349441,76414977,76480513,82247681,82575361,83492865,85065735,85131271,85196807,85262343,85327879,85393415,85458951,85524487,85590023,85655559,85721095,85786631,85852167,85917703,85983239,86048777,86114313,86179847,86245383,86310919,86376455,86441991,86507527,86573063,86638599,86704135,86769671,86835207,86900743,86966279,87031815,87097351,87162887,87228423,87293959,87359495,87425033,87490567,87556105,87621639,87687175,87752711,87818247,87883783,87949321,88014855,88080391,88145927,88211463,88276999,88342535,88408071,88473607,88539143,88604679,88670215,88735751,88801287,88866823,88932359,88997895,89063431,89128967,89194503,89260039,89325575,89391111,89456647,89522183,89587719,89653255,89718791,89784327,89849863,89915399,89980935,90046471,90112007,90177543,90243079,90308615,90374153,90439689,90505223,90570761,90636295,90701833,90767369,90832903,90898439,90963975,91029511,91095047,91160585,91226119,91291655,91357193,91422727,91488263,91553799,91619335,91684873,91750409,91815945,91881479,91947016,92012551,92078089,92143623,92209159,92274695,92340231,92405767,92471303,92536841,92602377,92667911,92733447,92798983,92864519,92930055,92995591,93061127,93126665,93192201,93323266,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,108265473,109117441,112001030,116326402,116391938,116457474,116523010,116588546,116654082,116719619,116785154,116850690,116916226,116981763,117047299,117112835,117178371,117243906,117309443,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833731,117899266,117964803,118030339,118095874,118161411,118226947,118292483,118358018,118423554,118489091,118554627,118620163,118685699,118751235,118816771,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341059,119406594,119472131,119537666,119603202,119668738,119734274,119799810,119865346,119930883,119996419,120061955,120127491,120193027,120258562,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253955,128319490,128385027,128450563,128516099,128581635,128647171,128712707,128778243,128843779,128909315,128974851,129040387,129105923,129171459,129236995,129302531,129368067,129433603,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416642,130482179,130547715,130613250,130678787,130744322,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661827,131727363,131792899,131858435,131923971,131989507,132055042,132120578,132186114,132251650,132317186,132382723,132448258,132513794,132579330,132644866,132710402,132775939,132841475,132907010,132972546,133038083,133103618,133169154,133234691,133300227,133365763,133431299,133496834,133562370,133627906,133693442,133758979,133824515,133890051,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873091,134938627,135004163,135069699,135135235,135200771,135266307,135331843,135397379,135462915,135528451,135593987,135659523,135725059,135790595,135856131,135921667,135987203,136052739,136118274,136183810,136249346,136314882,136380418,136445954,136511491,136577026,136642563,136708099,136773634,136839171,136904708,136970242,137035779,137101315,137166851,137232387,137297923,137363459,137428995,137494531,137560066,137625602,137691138,137756674,137822211,137887747,137953283,138018819,138084355,138149891,138215427,138280962,138346499,138412034,138477570,138543106,138608642,138674179,138739714,138805250,138870786,138936322,139001859,139067395,139132931,139198467,139264003,139329539,139395075,139460610,139526146,139591682,139657218,139722754,139788290,139853827,139919362,139984898,140050435,140115970,140181507,140247043,140312579,140378115,140443650,140509187,140574723,140640258,140705794,140771330,140836866,140902402,140967938,141033475,141099011,141164547,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999555,143065090,143130626,143196162,143261698,143327234,143392771,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096707,145162242,145227778,145293315,145358851,145424387,145489923,145555459,145620995,145686531,145752067,145817603,145883139,145948675,146014211,146079747,146145283,146210819,146276355,146341891,146407427,146472963,146538499,146604035,146669571,146735107,146800643,146866179,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307970,148373507,148439042,148504579,148570114,148635650,148701186,148766722,148832259,148897795,148963330,149028867,149094402,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618690,149684226,149749762,149815299,149880835,149946371,150011907,150077443,150142978,150208514,150274050,150339586,150405123,150667265,151126017,153812993,154009601,159318018,159907842,159973377,160890881,161021954,161349633,161677315,161742849,161873922,162004994,162267137,162725892,162988034,163053570,163119106,163577858,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164626433,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166068239,166133773,166199309,166264852,166330387,166395917,166461455,166526987,166592523,166658060,166723596,166789132,166854668,166920203,166985739,167051277,167116813,167182346,167247882,167313418,167378955,167444491,167510027,167575565,167641100,167706636,167772172,167837710,167903235,167968771,168034316,168099853,168165387,168230923,168296459,168361996,168427532,168493068,168558606,168624140,168689678,168755212,168820748,168886284,168951821,169017358,169082893,169148428,169213964,169279502,169345037,169410570,169476107,169541642,169607179,169672716,169738251,169803786,169869323,169934859,170000395,170065931,170131467,170197003,170262538,170328135,170393612,170459147,170524683,170590220,170655755,170721291,170786828,170852362,170917899,170983435,171048971,171114507,171180043,171245578,171311115,171376650,171442187,171507726,171573261,171638795,171704334,171769867,171835405,171900942,171966475,172032011,172097547,172163083,172228619,172294157,172359694,172425227,172490766,172556299,172621835,172687371,172752907,172818446,172883981,172949517,173015051,173080588,173146122,173211681,173277195,173342731,173408267,173473803,173539339,173604875,173670414,173735949,173801483,173867019,173932555,173998091,174063627,174129169,174194699,174260238,174325773,174391297,174456833,174522369,174587905,174653441,174784513,174850049,174915585,174981121,175046665,175112193,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242,178061313,178126849,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673],"extensionstatus":[786434,3145734,175046658],"extension":[786434,3145729,4128769,10682373,30081026,30146562,30212098,30277634,31195137,31260673,31588353,31653889,32899079,35061761,35127297,35192833,35258369,36241409,36306945,36372481,36700161,36765697,37748737,37814273,39256065,39911430,40697857,40763393,40828929,44761090,44826627,45481985,52625410,52690946,69140484,69402631,69468163,69861380,73072642,75563010,77529090,78184449,79429634,79691777,80412674,80740353,82313218,83099652,84017153,85393409,85655553,86507521,88408068,88539137,90243075,90439681,90505217,90636289,92602369,92930049,93454340,95617030,97976321,100401159,100859905,102825985,102891521,104660993,108396545,108462081,110690305,110821378,110886913,114032641,117571585,118685702,125370374,133496833,133562369,133627905,133693441,134021121,138805249,138870790,139657217,148897798,152043521,152174594,152240129,155648002,155713541,156106753,156499969,156631041,157810691,158138370,159121409,159186948,159514625,161087491,161873928,162791428,166395905,166658049,167510017,169541637,169672705,170328065,171376644,171573249,171638785,171769857,173735937,174063617,175046658,175833092],"exchange":[786433,3604481,69468161,170196993,175046657],"execution":[786433,4259841,69468161,94437377,154861569,167182337,175046657,178847745],"entry":[786434,4784129,4980737,10682371,30343171,30539779,30605316,47775746,47906817,48103426,48234498,51314689,51380225,69140483,69402629,69468162,74186753,74317825,74383361,75104258,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985539,82051075,82116610,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949316,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160582,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,107413505,107479041,107610113,107675649,107872257,109903873,132186113,132251649,132317185,136773633,141688833,141754369,141819905,141885441,141950977,154140673,155713539,156237825,156303361,156368897,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759812,160825347,160890886,160956419,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267139,162332673,162398209,162463745,162529281,162594817,162660353,162725890,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082885,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294151,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046658,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"example":[786433,5963777,10551297,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,29163521,30670849,30736386,31588353,31653889,32047105,37748737,37814273,38338561,48824321,67371010,69074945,69140483,69206017,69402625,69468163,77529090,78643201,80412673,80478209,82771969,83099649,85000193,85065730,85131266,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655554,85721090,85786626,85852162,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539138,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,95682561,96337922,98959361,102760449,103088130,109641729,111017985,116260865,116523009,136642561,154206209,155516929,155648002,156303361,156565505,156696577,157024257,158662657,158793729,159186945,159252481,159383553,161546241,161873921,166002689,166068226,166133762,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658050,166723586,166789122,166854658,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174129155,174194689,174260225,174325761,175046657,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243],"extensionstatuseventhandler":[3145735,69337089,174391302],"extensionstatusevent":[3145729,22085635,59113479,69468162,88408067,133496834,133562370,133627906,133693442,169541642,170328065,174391301],"extensionstateresponse":[6946819,27590659,66912262,69533697,93847555,153092099,153157635,153223171,153288707,177602570,177930241],"equals":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,34013185,34144257,69402625,77660161,90832900,96665601,140705794,140967938,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844610,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873922,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966469,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"equal":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"exceptions":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,69074945,155254786,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"endpos":[10551298,29163522,155516930],"expected":[10551298,29360129,29425665,31195137,31260673,36700161,36765697,69337090,78315521,98304001,155516930,156631041,166002689,178192385],"error":[10682374,13959172,30081025,30146561,30212097,30277633,31588353,31653889,43450376,43515912,43581449,43646985,46858241,46923777,69140493,69337089,69533698,69861380,70320130,72744965,73859074,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94306305,154075137,155254785,155320321,155385857,155713542,156106753,156631041,156893185,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,158138369,158466049,158531585,158990340,159055873,160235522,164691969,166002689,175177730,177471489,177537025,177602561,177668097,177733633,177799169,177864707,177930241,178192385],"entries":[10682370,30408705,30474243,69402625,69926914,155713538,162725889],"exec":[10682370,30670854,30736390,69992451,155713538],"executes":[10682370,30670849,30736385,69140481,69992450,155713538,156434433],"enter":[10682374,30867458,30932994,30998531,69140481,70057990,155713542,156499969],"entered":[10682369,30867457,30932993,30998530,70057985,155713537],"esacpe":[10682370,31195137,31260674,36765697,69140481,70189058,78315521,98435073,155713538,156631042],"exceeding":[10682370,31588353,31653889,69140481,70320130,155713538,157024257],"escape":[10682372,31784961,31916033,31981569,32047105,32178177,32309249,32440321,32571393,33292290,38207489,38273025,38338561,70451203,70844417,71892995,155713540,157155331],"exiting":[10682372,32833537,32899073,32964609,33030145,39780353,39911425,40370177,40435713,69140483,70778882,79364097,79429633,79560706,100335617,100401154,100532225,100597761,155713540,157745154,157810690,158007299],"escapeandquote":[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,34340872,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977],"execcommand":[11403267,35979268,36044807,36110343,69140481,71303174,78118915,97845250,97910786,155910145,156434443],"encounters":[13893633,42926081,158924801],"eventsaction":[15925251,48300039,48365575,69402626,74448902,82247683,108199938,108265474,161021964,161611777],"extensionstateaction":[15990787,48431110,69402626,82313219,108331010,108396546,108462082,161087498,161611777],"existing":[16777218,18743298,18808834,19333122,19398658,19464194,19529730,22216706,27197442,50331649,50462721,55443457,55574529,65863681,65994753,80478210,103153667,159252482,161873922,166068226,166133762,166658050,166723586,166789122,166854658,169672706,175833090],"ended":[27983873,67829761,177995777],"exit":[28246017,68878337,178913281],"errors":[29360129,29425665],"environment":[29949958],"escapedigits":[30146565,30212101,30277637,31195141,31260677,31588357,31653893,31784965,31916037,31981573,32047109,32178181,32309253,32440325,32571397,33292293,35127301,35192837,35258373,36700165,36765701,37748741,37814277,38010885,38207493,38273029,38338565,38535173,38731781,38928389,39124997,40763397,40828933,77791233,78315521,78643201,78708737,78839809,78905345,78970881,79036417,79691777,96862213,98304005,98828293,99155973,99614725,99680261,99811333,99942405,100794373,156106753,156631041,157024257,157089793,157220865,157286401,157351937,157417473,158138369],"essentially":[30932993,30998529,36306945,36372481,78184449,98107393,156499969],"elapsed":[31850497,31916033,31981569,32047105,38141953,38207489,38273025,38338561,69140481,71892993,78774273,92602369,99418113,149094402,157155330,157417473,173735937],"europe":[32047105,38338561],"encoding":[42795022,43122699,50135041,50200577,65601549,76808193,80281601,83034113,93323265,96731143,101842956,110166017,151584776,158924801,161808385,175046658],"excluding":[42926081],"empty":[44564481,44695553,44892161,45219841,45678593,45809665,47579138,47644674,47710209,47841281,48037889,48168961,48300033,48693249,48889857,49020929,49348609,49479681,50003969,51052545,51445761,52035585,52559873,52756481,52953089,53346305,53608449,54460417,54591489,54722561,54853633,69533698,73007105,73072641,73138177,73400321,73465857,74121220,74186753,74252289,74317825,74383361,74448897,74579969,74645505,74711041,74776577,74842113,74907649,75038721,75169793,75366401,75563009,75628545,75694081,75759617,75825153,76021761,76087297,76152833,76218369,82444289,84475905,88539137,108724225,115343361,133955585,159121409,159186945,159252481,159383553,159645697,159711233,160694276,160759809,160825345,160890881,160956417,161021953,161218562,161284097,161349633,161480705,161546241,161808385,162201601,162332673,162529281,162791425,162856961,162922497,163053569,163184641,163250177,163315713,163381249,163446785,163512321,169672705,177537025,177668097],"exten":[44761093,44826629,45481989,52625413,52690949,69402625,80412673,80740353,82313217,83099651,84017153,85393409,86573057,86769665,86900737,88408065,88539137,90374145,90439681,90505217,90636289,92930049,93454339,93847553,102891525,104660997,108462085,110690305,110821381,110886913,114032645,117571589,128122886,133562373,134021125,139264006,139657221,152043521,152174597,152240129,153157638,159186945,159514625,161087489,161873924,162791425,166395905,167575553,167772161,168034305,169541633,169672705,171507713,171573249,171638785,171769857,174063617,175833091,177602561],"exisiting":[45023233],"eventmask":[48365573,82247681,108265477,161021953],"extrachannel":[52690949,84017153,114098181,162791425],"ends":[53673985,69140481,69402625,69468161,75825153,156499969,163184642,170655745],"extra":[54132737,69402625,77463553,94568453,155516929,163250177],"enables":[54788097,76152833,163446785],"executing":[68681729,68747265],"enumerations":[69009409,69074945,69337089,69468161],"enumeration":[69009409,69074945,69337089,69468161,155582466,159055874,164560898,167903234,167968770],"easier":[69074945,155713537],"extend":[69074945,155713537],"exist":[69140481,156565505],"extensions":[69140481,157483009],"explanatory":[69402625,159121409],"extentsion":[69402625,159186945],"effect":[69402625,159711233],"ellicit":[69402625,162070529],"executed":[69468162,90243074,138608641,138739713,167182337,171376642,173080577],"excution":[69468161,167182337],"established":[69468161,167837697],"enabled":[69468161,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276995,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128963,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,133103617,133169153,136314886,136904705,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410563,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262531,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"extends":[69468161,174129153],"exists":[69533697,177668097],"encapsulates":[69599233,178782209],"enhanced":[77529091,95551495,155648003],"eagi":[77529089,95551489,155648001],"extensionstate":[82313217,108331009,161087489],"exclusive":[82575361,109248513,161349633],"epoch":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,136904705,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"env":[86376449,120389638,167378945],"endtime":[87031809,94240769,130023430,154402822,168165377,177995777],"elements":[88932353,88997889,91029505,91095041,91226113,142016513,170065921,170131457,172163073,172228609,172359681],"expiration":[90832897,140705793,171966465],"expired":[90832897,140705793,171966465],"ensure":[91750401,144506881,155582465,172883969],"exposed":[91881473,144769025,173015041],"enum":[91947010,144965633,145031169,155582466,159055874,164560898,167903234,167968770,173080578],"eventlist":[92405761,147783686,173539329],"eventargs":[166068225,166133761,166199297,166264834,166330370,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328070,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211650,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761]} \ No newline at end of file +{"events":[327682,393218,458754,524290,589826,655362,720898,786434,851970,1310723,4456451,11141121,40894465,42991619,43843592,44236801,64028677,64094213,64159760,76939268,77266948,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080386,88342530,102957057,103022595,103874568,132186113,146735106,148504577,148570118,151191553,151257089,151322625,154402817,154468353,155844610,155910145,156958725,157286404,157614082,157810689,160628737,161480705,161939458,162004994,162070529,162136065,162201601,162267138,162332674,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774467,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954114,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133762,166199297,166264836,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131460,170196993,170262529,170328065,170917889,171048965,171180033,173342721,173408259,174260225],"exposes":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,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,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,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"exception":[327684,393220,458756,524292,589828,655364,720900,786436,851972,983042,3538945,3604481,4849671,4915207,4980743,7995399,8060935,8519684,13172743,13238279,21692423,22675463,23396359,23527431,37945353,38207497,38469641,38993929,49872903,60358657,60424201,64028673,64421889,67371009,67436545,67502081,67633153,70975489,71565313,71958543,72024079,72089615,74645519,74711055,79626255,79691791,88145935,89063439,151191584,151257115,151322651,151781378,154402843,154468379,154927108,160628768,161939484,171180064,174260255],"eventtimeoutexception":[720899,13238275,49938438,64028674,79691779,111017986,161939466,174260225],"event":[1245185,4325379,4390915,11141121,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,21626881,40894465,42991618,43843585,44236802,46006278,50003971,50069508,50135043,50200580,50266115,50331651,50397187,50462722,50528259,50593795,50659331,50724867,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52101122,52166659,52232195,52297731,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805058,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591490,54657026,54722563,54788098,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720262,58785795,58851331,58916867,58982403,59768833,60948483,61145089,64028679,64094211,64159772,69140481,71041025,71106561,71172097,76939265,77266945,78184449,79757319,79822855,79888391,79953927,80019463,80084999,80150535,80216071,80281607,80347143,80412679,80478215,80543751,80609287,80674823,80740361,80805897,80871431,80936967,81002503,81068039,81133575,81199111,81264647,81330183,81395719,81461255,81526791,81592327,81657863,81723399,81788935,81854471,81920007,81985543,82051079,82116617,82182151,82247689,82313223,82378759,82444295,82509831,82575367,82640905,82706439,82771975,82837511,82903047,82968583,83034119,83099655,83165191,83230727,83296263,83361799,83427335,83492871,83558407,83623943,83689479,83755015,83820551,83886087,83951623,84017159,84082695,84148231,84213767,84279303,84344839,84410375,84475911,84541447,84606983,84672519,84738055,84803591,84869127,84934663,85000199,85065737,85131273,85196807,85262345,85327879,85393417,85458953,85524487,85590023,85655559,85721095,85786631,85852169,85917703,85983239,86048777,86114311,86179847,86245383,86310919,86376455,86441991,86507529,86573065,86638599,86704136,86769671,86835209,86900743,86966279,87031815,87097351,87162887,87228423,87293961,87359497,87425031,87490567,87556103,87621639,87687175,87752711,87818247,87883785,87949321,88080386,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,103022593,103874561,106758150,111083522,111149058,111214594,111280130,111345666,111411202,111476739,111542274,111607810,111673346,111738883,111804419,111869955,111935491,112001026,112066563,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377283,113442818,113508355,113573891,113639426,113704963,113770499,113836035,113901570,113967106,114032643,114098179,114163715,114229251,114294787,114360323,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884611,114950146,115015683,115081218,115146754,115212290,115277826,115343362,115408898,115474435,115539971,115605507,115671043,115736579,115802114,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863042,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960194,126025731,126091267,126156802,126222339,126287874,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598594,127664130,127729666,127795202,127860738,127926275,127991810,128057346,128122882,128188418,128253954,128319491,128385027,128450562,128516098,128581635,128647170,128712706,128778243,128843779,128909315,128974851,129040386,129105922,129171458,129236994,129302531,129368067,129433603,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661826,131727362,131792898,131858434,131923970,131989506,132055043,132120578,132186115,132251651,132317186,132382723,132448260,132513794,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103618,133169154,133234690,133300226,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824514,133890051,133955586,134021122,134086658,134152194,134217731,134283266,134348802,134414338,134479874,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004162,135069698,135135234,135200770,135266306,135331842,135397379,135462914,135528450,135593987,135659522,135725059,135790595,135856131,135921667,135987202,136052739,136118275,136183810,136249346,136314882,136380418,136445954,136511490,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543107,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033475,141099010,141164546,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244738,144310275,144375810,144441347,144506882,144572418,144637954,144703490,144769027,144834563,144900098,144965635,145031170,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555458,145620994,145686530,145752067,145817603,145883139,145948675,146014211,146079746,146145282,146210818,146276354,146341891,146604033,147062785,149749761,149946369,155254786,155844610,155910145,156827649,156958722,157286401,157614083,157679617,157810690,157941762,158203905,158662660,158924802,158990338,159055874,159514626,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153026,161218562,161284098,161349634,161415170,161480705,161546241,161611777,161677313,161742849,161808385,161873921,162005007,162070541,162136077,162201620,162267155,162332685,162398227,162463755,162529291,162594828,162660364,162725900,162791436,162856971,162922507,162988045,163053581,163119114,163184650,163250186,163315723,163381259,163446795,163512333,163577868,163643404,163708940,163774478,163840003,163905539,163971084,164036621,164102155,164167691,164233227,164298764,164364300,164429836,164495374,164560908,164626446,164691980,164757516,164823052,164888589,164954126,165019661,165085196,165150732,165216270,165281805,165347338,165412875,165478410,165543947,165609484,165675019,165740554,165806091,165871627,165937163,166002699,166068235,166133771,166199306,166264903,166330380,166395915,166461451,166526988,166592523,166658059,166723596,166789130,166854667,166920203,166985739,167051275,167116811,167182346,167247883,167313418,167378955,167444494,167510029,167575563,167641102,167706635,167772173,167837710,167903243,167968779,168034315,168099851,168165387,168230925,168296462,168361995,168427533,168493067,168558603,168624139,168689675,168755211,168820747,168886285,168951821,169017355,169082892,169148426,169213985,169279499,169345035,169410571,169476107,169541643,169607179,169672718,169738253,169803787,169869323,169934859,170000395,170065931,170131473,170197003,170262542,170328077,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171048963,171114498,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"extensionstateresponse":[1507331,22216707,61603846,64225281,88604675,149028867,149094403,149159939,149225475,173670410,173998081],"equals":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,28639233,28770305,64094209,72351745,85524484,91422721,136249346,136511490,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781378,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903237,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"equal":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"exceptions":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,63766529,151191554,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"example":[5111809,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789569,25296897,25362434,26214401,26279937,26673153,32374785,32440321,32964609,43450369,62062594,63766529,63832067,63897601,64028673,64094209,64159747,72220674,73334785,75104257,75169793,77463553,77791233,79691777,79757314,79822850,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347138,80412674,80478210,80543746,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230722,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,90439681,91095042,93716481,97517569,97845250,104398849,105775105,111017985,111280129,132186113,150142977,151453697,151584770,152240129,152502273,152633345,152961025,154599425,154730497,155123713,155189249,155320321,157483009,157810689,161939457,162004994,162070530,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594818,162660354,162725890,162791426,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609474,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000386,170065921,170131459,170196993,170262529,170328065,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174456833],"endpos":[5111810,23789570,151453698],"expected":[5111810,23986177,24051713,25821185,25886721,31326209,31391745,64028674,73007105,93061121,151453698,152567809,161939457,174260225],"error":[5242886,8519684,24707073,24772609,24838145,24903681,26214401,26279937,38076424,38141960,38207497,38273033,41484289,41549825,63832077,64028673,64225282,64552964,65011714,67436549,68550658,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,150011905,151191553,151257089,151322625,151650310,152043521,152567809,152829953,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,154075137,154402817,154468353,154927108,154992641,156172290,160628737,161939457,171180034,173539329,173604865,173670401,173735937,173801473,173867009,173932547,173998081,174260225],"extension":[5242885,24707074,24772610,24838146,24903682,25821185,25886721,26214401,26279937,27525127,29687809,29753345,29818881,29884417,30867457,30932993,30998529,31326209,31391745,32374785,32440321,33882113,34537478,35323905,35389441,35454977,39387138,39452675,40108033,47251458,47316994,63832068,64028674,64094215,64159747,64552964,67764226,70254594,72220674,72876033,74121218,74383361,75104258,75431937,77004802,77791236,78708737,80084993,80347137,81199105,83099652,83230721,84934659,85131265,85196801,85327873,87359489,87687169,88211460,90374150,92733441,95158279,95617025,97583105,97648641,99418113,103153665,103219201,105447425,105578498,105644033,108789761,112328705,114229254,120913926,129040385,129105921,129171457,129236993,129564673,134348801,134414342,135200769,144834566,147980289,148111362,148176897,151584770,151650309,152043521,152436737,152567809,153747459,154075138,155058177,155123716,155451393,157024259,157810696,158728196,162332673,162594817,163446785,165478405,165609473,166264833,167313412,167510017,167575553,167706625,169738241,170065921,170393601,171704321,171835396],"entry":[5242883,24969219,25165827,25231364,42401794,42532865,42729474,42860546,45940737,46006273,63832067,64028673,64094213,64159746,68878337,69009409,69074945,69795842,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677123,76742659,76808194,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640900,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852166,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,102170625,102236161,102367233,102432769,102629377,104660993,127729665,127795201,127860737,132317185,137232385,137297921,137363457,137428993,137494529,150077441,151650307,152174593,152240129,152305665,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696580,156762115,156827654,156893187,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203907,158269441,158334977,158400513,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019653,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230919,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,172621825,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"entries":[5242882,25034753,25100291,64094209,64618498,151650306,158662657],"exec":[5242882,25296902,25362438,64684035,151650306],"executes":[5242882,25296897,25362433,63832065,64684034,151650306,152371201],"enter":[5242886,25493506,25559042,25624579,63832065,64749574,151650310,152436737],"entered":[5242881,25493505,25559041,25624578,64749569,151650305],"esacpe":[5242882,25821185,25886722,31391745,63832065,64880642,73007105,93192193,151650306,152567810],"exceeding":[5242882,26214401,26279937,63832065,65011714,151650306,152961025],"end":[5242882,26214402,26279938,32374785,32440321,44826625,45350913,63832066,64028674,64094209,64159747,64225282,65011714,73334785,77725697,77856769,79101953,83034113,93585409,104988673,105971713,109838337,128974854,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650307,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436738,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961027,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745154,157810689,157876226,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924801,158990337,159055873,159121410,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159842305,160628737,161087489,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660354,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412866,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604867,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"escape":[5242884,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918338,32833537,32899073,32964609,65142787,65536001,66584579,151650308,153092099],"exiting":[5242884,27459585,27525121,27590657,27656193,34406401,34537473,34996225,35061761,63832067,65470466,74055681,74121217,74252290,95092737,95158274,95289345,95354881,151650308,153681922,153747458,153944067],"escapeandquote":[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,28966920,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745],"execcommand":[5963779,30605316,30670855,30736391,63832065,65994758,72810499,92602370,92667906,151846913,152371211],"encounters":[8454145,37552129,154861569],"eventsaction":[10485763,42926087,42991623,64094210,69140486,76939267,102957058,103022594,156958732,157548545],"extensionstateaction":[10551299,43057158,64094210,77004803,103088130,103153666,103219202,157024266,157548545],"existing":[11337730,13303810,13369346,13893634,13959170,14024706,14090242,16777218,21823490,44957697,45088769,50069505,50200577,60555265,60686337,75169794,97910787,155189250,157810690,162004994,162070530,162594818,162660354,162725890,162791426,165609474,171835394],"extensionstatusevent":[16646147,53739527,64159746,83099651,129040386,129105922,129171458,129236994,165478410,166264833,170393605],"ended":[22609921,62521345,174063617],"exit":[22872065,63569921,174981121],"errors":[23986177,24051713],"environment":[24576006],"escapedigits":[24772613,24838149,24903685,25821189,25886725,26214405,26279941,26411013,26542085,26607621,26673157,26804229,26935301,27066373,27197445,27918341,29753349,29818885,29884421,31326213,31391749,32374789,32440325,32636933,32833541,32899077,32964613,33161221,33357829,33554437,33751045,35389445,35454981,72482817,73007105,73334785,73400321,73531393,73596929,73662465,73728001,74383361,91619333,93061125,93585413,93913093,94371845,94437381,94568453,94699525,95551493,152043521,152567809,152961025,153026561,153157633,153223169,153288705,153354241,154075137],"execute":[25296897,25362433,30670849,30736385,40632321,64028673,64094209,72220673,72810497,91029505,92602369,151584769,152371201,155320321,160301057],"essentially":[25559041,25624577,30932993,30998529,72876033,92864513,152436737],"elapsed":[26476545,26542081,26607617,26673153,32768001,32833537,32899073,32964609,63832065,66584577,73465857,87359489,94175233,145031170,153092098,153354241,169738241],"europe":[26673153,32964609],"encoding":[37421070,37748747,44761089,44826625,60293133,71499777,74973185,77725697,88080385,91488263,96600076,104923137,147521544,154861569,157745153,171048962],"excluding":[37552129],"empty":[39190529,39321601,39518209,39845889,40304641,40435713,42205186,42270722,42336257,42467329,42663937,42795009,42926081,43319297,43515905,43646977,43974657,44105729,44630017,45678593,46071809,46661633,47185921,47382529,47579137,47972353,48234497,49086465,49217537,49348609,49479681,64225282,67698689,67764225,67829761,68091905,68157441,68812804,68878337,68943873,69009409,69074945,69140481,69271553,69337089,69402625,69468161,69533697,69599233,69730305,69861377,70057985,70254593,70320129,70385665,70451201,70516737,70713345,70778881,70844417,70909953,77135873,79167489,83230721,103481345,110100481,129499137,155058177,155123713,155189249,155320321,155582465,155648001,156631044,156696577,156762113,156827649,156893185,156958721,157155330,157220865,157286401,157417473,157483009,157745153,158138369,158269441,158466049,158728193,158793729,158859265,158990337,159121409,159186945,159252481,159318017,159383553,159449089,165609473,173604865,173735937],"exten":[39387141,39452677,40108037,47251461,47316997,64094209,75104257,75431937,77004801,77791235,78708737,80084993,81264641,81461249,81592321,83099649,83230721,85065729,85131265,85196801,85327873,87687169,88211459,88604673,97648645,99418117,103219205,105447425,105578501,105644033,108789765,112328709,123666438,129105925,129564677,134807558,135200773,147980289,148111365,148176897,149094406,155123713,155451393,157024257,157810692,158728193,162332673,163512321,163708929,163971073,165478401,165609473,167444481,167510017,167575553,167706625,170065921,171835395,173670401],"exisiting":[39649281],"eventmask":[42991621,76939265,103022597,156958721],"extrachannel":[47316997,78708737,108855301,158728193],"ends":[48300033,63832065,64094209,64159745,70516737,152436737,159121410,166592513],"extra":[48758785,64094209,72155137,89325573,151453697,159186945],"enables":[49414145,70844417,159383553],"executing":[63373313,63438849],"enumerations":[63700993,63766529,64028673,64159745],"enumeration":[63700993,63766529,64028673,64159745,151519234,154992642,160497666,163840002,163905538],"easier":[63766529,151650305],"extend":[63766529,151650305],"exist":[63832065,152502273],"extensions":[63832065,153419777],"enable":[63832065,64028674,64159746,154140673,159776769,162594817,164102145,171442177],"eventwhencalled":[64028673,64159745,159776769,162594817],"enters":[64028674,64159746,160432129,161808385,163250177,165347329],"extensionstatuseventhandler":[64028673,170393605],"extensionstatus":[64028673,170393601],"exchange":[64028673,64159745,166133761,170917889],"execution":[64028673,64159745,89194497,150798337,163119105,171900929,174915585],"explanatory":[64094209,155058177],"extentsion":[64094209,155123713],"effect":[64094209,155648001],"ellicit":[64094209,158007297],"executed":[64159746,84934658,134152193,134283265,163119105,167313410,169082881],"excution":[64159745,163119105],"established":[64159745,163774465],"enabled":[64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968579,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820547,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,128647169,128712705,131858438,132448257,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347331,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199299,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"extends":[64159745,170131457],"exists":[64225281,173735937],"encapsulates":[64290817,174850049],"enhanced":[72220675,90308615,151584771],"eagi":[72220673,90308609,151584769],"extensionstate":[77004801,103088129,157024257],"exclusive":[77266945,104005633,157286401],"epoch":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132448257,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"evaluates":[80150531,85983234,86114306,86179843,86245379,86310915,86376451,86441986,112459777,112852993,113115137,139198465,139329537,162398211,168361986,168493058,168558595,168624131,168689667,168755203,168820738],"expressed":[80150529,86114305,86179841,86245377,86310913,86376449,112590849,162398209,168493057,168558593,168624129,168689665,168755201],"env":[81068033,115933190,163315713],"endtime":[81723393,88997889,125566982,150339590,164102145,174063617],"elements":[83623937,83689473,85721089,85786625,85917697,137560065,166002689,166068225,168099841,168165377,168296449],"expiration":[85524481,136249345,167903233],"expired":[85524481,136249345,167903233],"ensure":[86507521,140443649,151519233,168886273],"exposed":[86638593,140705793,169017345],"enum":[86704130,140902401,140967937,151519234,154992642,160497666,163840002,163905538,169082882],"eventlist":[87162881,143720454,169541633],"eventargs":[162004993,162070529,162136065,162201602,162267138,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264838,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065]} \ No newline at end of file diff --git a/docs/fti/FTI_102.json b/docs/fti/FTI_102.json index 291c78a..5520c31 100644 --- a/docs/fti/FTI_102.json +++ b/docs/fti/FTI_102.json @@ -1 +1 @@ -{"follow":[1,46268417,69402626,85000193,116260865,159907842,159973377,166002689],"framework":[196609],"fastagi":[196610,327681,393217,458753,524289,589825,6422529,8978434,9043970,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,28311561,28377104,28442629,28508163,28573703,28639234,28704770,28770306,28835842,28901380,28966916,29032452,29097987,29163522,29229058,29294594,29360130,29425666,29491204,29556738,29622275,29687813,29753348,29818885,29884420,29949954,30015490,30081027,30146563,30212099,30277635,30343170,30408706,30474242,30539779,30605314,30670850,30736386,30801924,30867458,30932994,30998530,31064066,31129603,31195138,31260674,31326210,31391746,31457282,31522820,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636941,32702467,32768004,32833539,32899075,32964611,33030147,33095682,33161218,33226754,33292290,33357826,33423362,33488898,33554439,33619971,33685507,33751043,33816578,33882117,33947659,34013186,34078723,34144258,34209799,34275332,34340869,34406404,34471938,34537476,34603010,34668548,34734082,34799618,34865156,34930690,34996226,35061762,35127298,35192834,35258370,35323908,35389442,35454978,35520516,35586050,35651586,35717124,35782658,35848196,35913730,35979268,36044802,36110338,36175876,36241410,36306946,36372482,36438020,36503554,36569090,36634628,36700162,36765698,36831236,36896770,36962308,37027842,37093378,37158916,37224450,37289988,37355522,37421058,37486596,37552130,37617667,37683204,37748738,37814274,37879812,37945346,38010882,38076420,38141955,38207490,38273026,38338562,38404100,38469634,38535170,38600708,38666242,38731778,38797316,38862850,38928386,38993924,39059458,39124994,39190532,39256066,39321604,39387138,39452676,39518210,39583748,39649282,39714820,39780354,39845892,39911426,39976964,40042498,40108036,40173570,40239106,40304644,40370178,40435714,40501252,40566787,40632324,40697858,40763394,40828930,40894468,40960003,41025540,41091074,41156612,41222146,41287682,41353225,41418755,41484290,41549826,41615369,41680899,41746434,41811972,41877507,41943049,42008579,42074114,42139651,42205189,42270728,42336258,42401801,42467331,42532866,42598403,68812802,69074947,69140482,69206019,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,77201409,77266945,77332481,77398017,77463553,77529090,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,94502914,94568450,94633987,94699523,94765058,94830594,94896130,94961667,95027203,95092739,95158275,95223811,95289347,95354882,95420418,95485955,95551491,95617026,95682562,95748099,95813635,95879170,95944707,96010243,96075779,96141315,96206850,96272386,96337922,96403458,96468995,96534530,96600066,96665602,96731139,96796675,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500611,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449731,101515267,101580802,101646338,101711875,101777411,155123715,155189251,155254791,155320324,155385860,155451396,155516931,155582467,155648004,155713539,155779075,155844612,155910186,155975685,156041221,156106756,156172292,156237828,156303364,156368900,156434436,156499972,156565508,156631045,156696580,156762116,156827652,156893188,156958724,157024260,157089796,157155332,157220868,157286404,157351940,157417476,157483012,157548548,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400515,158466052,158531588,158597123,158662660,158728197,158793732],"fork":[196609],"feel":[196609],"following":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,10158081,10223617,10289153,10354689,10420225,10485761,10551298,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,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,29229057,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516930,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174718977,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"first":[786434,2424833,2555905,29949953,52690945,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750402,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,144506881,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883970,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046658,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"failedacl":[786433,3211270,175046657],"fails":[786433,3604481,69337089,69468161,164691969,170196993,175046657],"failedacleventhandler":[3211271,69337089,174456838],"failedaclevent":[3211265,22151171,59179015,59244552,69468161,76414982,88473603,133758979,133824515,133890051,169607180,170328065,174456837],"fields":[6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,69402627,155058177,155844609,159776769,162922497,163250180,173146113,175046657,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"false":[6422530,6750209,8978433,9043969,9895937,27000833,34209800,51576833,51707905,52887553,59965441,64815106,67502081,77529089,78643201,80412673,83558401,84082689,91291649,91422721,91488257,92471297,93323269,94044161,95551489,98762753,102629377,103153665,112459777,114294785,142409729,143327233,143589377,148307969,150798338,150929410,150994945,153681921,155648001,155844610,157024257,158793732,159186945,162332673,162856961,172425217,172556289,172621825,173604865,175046663,177799169],"fired":[6750211,9895939,175046659],"field":[7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,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,52822017,52887554,69402625,75628546,84082692,114294786,114360321,114425857,162856967],"finalize":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"free":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27262978,27328513,27394050,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,64356358,66191368,66584584,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174718977,175046657,175177729,175243265,175833089,177274882,177340417,177405954,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"function":[10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682371,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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29687809,29753345,29818881,29884417,30081025,30146561,30212097,30277633,30539777,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31588354,31653890,31784961,31916033,31981569,32047105,32178177,32309249,32440321,32571393,33292289,33423361,34275329,34340865,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,41353217,41615361,41943041,42205185,42401793,42663937,42926081,43974657,44040193,45088769,46202881,46333953,47972353,48496641,49610753,49741825,49872897,50266113,50331649,50397185,50790401,52428801,53149697,53280769,53477377,53739521,54984705,55443457,55508993,57475073,59965441,60030977,60096513,64028673,64487425,64552961,64618497,64684033,64749569,64815105,65142785,65208321,65273857,65339393,65404929,65863681,65929217,66977793,67371009,67436545,67502081,67567617,67633153,67829761,67895297,68091905,68157441,69140481,70320130,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713539,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024258,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"frame":[10551297,29163521,155516929],"file":[10682391,18153473,30081032,30146568,30212104,30277640,30867463,30932999,30998535,31195144,31260680,31588362,31653898,33226759,33292295,35061766,35127302,35192838,35258374,36241414,36306950,36372486,36700166,36765702,37748743,37814279,40697862,40763398,40828934,45875207,46858241,46923777,47579138,47644674,50069511,50135047,50200583,54132737,69140491,69206017,69402626,69533697,69861384,70057987,70189060,70320134,70844418,73465857,73859074,74121220,74907651,75890689,77266945,77332481,77398017,77791234,78184450,78315522,78643203,79691779,79953921,80019457,80936962,83034114,84934657,85000193,92471297,93061121,93323267,93388801,94306305,96927750,97976326,98369542,98893830,98959361,100859911,105316358,110100486,148111366,149880838,151060481,151191553,151650305,155254785,155320321,155385857,155713559,156106756,156499971,156631045,157024262,158138373,158466049,158531585,158597121,159711235,160235522,160694276,161808389,163250179,164691969,166002689,173604865,174194689,175046659,175177729,177668097,178192385],"filename":[10682372,30081025,30146561,30212097,30277633,46858241,46923777,47644678,48627718,69140483,69402627,69861380,73859074,81920001,82378754,84475906,88539138,107282438,108593158,115277825,115408897,134086662,155713540,156106753,156631041,158138369,159711233,160235522,160694273,161153026,163250180,169672706],"family":[10682373,30343175,30408711,30474247,30539783,30605319,35389447,35454982,35586054,35651590,35782662,35913734,47775751,47906823,48103431,48234503,69140485,69402626,69926914,71172097,74186753,74252289,74317825,74383361,77856771,77922306,77987841,78053378,81985538,82051074,82116610,82182146,87949314,97255431,97386502,97517573,97648646,107413510,107610118,107806727,108003334,132186118,155713541,156172294,156237827,156303362,156368899,160759811,160825347,160890884,160956420,169082882],"format":[10682372,31588359,31653895,31981575,32047111,37748742,37814278,38273031,38338567,43384838,43646982,43909126,44433414,50135046,50200582,69140481,70320130,70451202,71892994,78643202,78774274,83034114,85065729,85131265,85655553,85721089,85786625,85852161,88539137,98959366,99287046,110166022,116523009,155713540,157024259,157155332,161808386,166068225,166133761,166658049,166723585,166789121,166854657,169672705],"future":[10682369,32702465,69140481,155713537,157614081],"feature":[10682369,32702465,39518209,69140481,155713537,157614081],"fast":[11075586,30277633,34930690,34996226,35258369,71041026,77791233,83099649,93323266,96993281,110493697,151257089,151388161,156106755,161873921,175046658],"forward":[11075586,30277633,34930690,34996226,35061761,35127297,35192833,35258370,69402625,71041026,71106564,77791233,88080385,96993281,132382726,156106759,159121409,169213953],"frees":[13893633,42860545,158924801],"finished":[16580609,16646145,28246017,49610753,49741825,68878337,69402626,161677314,161742850,178913281],"faxreceivedevent":[22216707,59310087,69468162,88539139,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,166068225,169672714],"functionality":[28180481,68419585,69599233,178782209,178847745],"forwarddigit":[30277637,34930693,34996229,35258373,77791233,96993285,156106753],"forever":[33423361],"followed":[46268417,69402628,69533697,84475905,90832897,115212289,140836865,159907842,159973377,162725889,163053569,163250177,171966465,177537025],"final":[46268417,69402626,159907842,159973377],"form":[49414145,49545217,77529089,82706433,82771969,83099649,89718785,90112001,96206849,109510657,109641729,111017985,137560065,138477569,155648001,161480705,161546241,161873921,170852353,171245569],"files":[50135041,50200578,83034114,110166017,110231553,161808386],"failure":[55181313,55246850,69140482,91881473,93323265,144900097,150929409,156958721,158334977,173015041,175046657],"filled":[55312385,116260865],"facade":[69009409,158990337],"finally":[69074945,155189249],"fully":[69074945,69206017,158662657,158793729],"functions":[69140482,156565505,156696577],"func":[69140482,92471297,93061121,148176902,149946374,156565505,156696577,173604865,174194689],"failed":[69402625,83099649,93454337,110952449,152305665,161349633,161873921,175833089],"foo":[69402626,163250178],"fax":[69468161,88539141,134021121,134086657,134152193,134283265,134348801,169672710],"firstname":[69468165,174129157],"follows":[69533697,177537025],"fixed":[69599233,178913281],"frames":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"flag":[77463553,94568449,155516929],"firstline":[77463553,94633990,155516929],"fil":[80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"finds":[80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"fine":[80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"filter":[83951618,113704961,113770497,162725890],"features":[90439681,139788289,171573249],"fractionlost":[92143617,92209153,145489926,146341894,173277185,173342721],"fireallevents":[93323265,150798341,175046657],"float":[136904705,144375809,146407425,146997249,147324929,147521537],"favour":[158793732]} \ No newline at end of file +{"follow":[1,40894465,64094210,79691777,111017985,155844610,155910145,161939457],"framework":[196609],"fastagi":[196610,327681,393217,458753,524289,589825,983041,3538946,3604482,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,22937609,23003152,23068677,23134211,23199751,23265282,23330818,23396354,23461890,23527428,23592964,23658500,23724035,23789570,23855106,23920642,23986178,24051714,24117252,24182786,24248323,24313861,24379396,24444933,24510468,24576002,24641538,24707075,24772611,24838147,24903683,24969218,25034754,25100290,25165827,25231362,25296898,25362434,25427972,25493506,25559042,25624578,25690114,25755651,25821186,25886722,25952258,26017794,26083330,26148868,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262989,27328515,27394052,27459587,27525123,27590659,27656195,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180487,28246019,28311555,28377091,28442626,28508165,28573707,28639234,28704771,28770306,28835847,28901380,28966917,29032452,29097986,29163524,29229058,29294596,29360130,29425666,29491204,29556738,29622274,29687810,29753346,29818882,29884418,29949956,30015490,30081026,30146564,30212098,30277634,30343172,30408706,30474244,30539778,30605316,30670850,30736386,30801924,30867458,30932994,30998530,31064068,31129602,31195138,31260676,31326210,31391746,31457284,31522818,31588356,31653890,31719426,31784964,31850498,31916036,31981570,32047106,32112644,32178178,32243715,32309252,32374786,32440322,32505860,32571394,32636930,32702468,32768003,32833538,32899074,32964610,33030148,33095682,33161218,33226756,33292290,33357826,33423364,33488898,33554434,33619972,33685506,33751042,33816580,33882114,33947652,34013186,34078724,34144258,34209796,34275330,34340868,34406402,34471940,34537474,34603012,34668546,34734084,34799618,34865154,34930692,34996226,35061762,35127300,35192835,35258372,35323906,35389442,35454978,35520516,35586051,35651588,35717122,35782660,35848194,35913730,35979273,36044803,36110338,36175874,36241417,36306947,36372482,36438020,36503555,36569097,36634627,36700162,36765699,36831237,36896776,36962306,37027849,37093379,37158914,37224451,63504386,63766531,63832066,63897603,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,71892993,71958529,72024065,72089601,72155137,72220674,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842114,74907649,89260034,89325570,89391107,89456643,89522178,89587714,89653250,89718787,89784323,89849859,89915395,89980931,90046467,90112002,90177538,90243075,90308611,90374146,90439682,90505219,90570755,90636290,90701827,90767363,90832899,90898435,90963970,91029506,91095042,91160578,91226115,91291650,91357186,91422722,91488259,91553795,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257731,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206851,96272387,96337922,96403458,96468995,96534531,151060483,151126019,151191559,151257092,151322628,151388164,151453699,151519235,151584772,151650307,151715843,151781380,151846954,151912453,151977989,152043524,152109060,152174596,152240132,152305668,152371204,152436740,152502276,152567813,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075140,154140676,154206212,154271748,154337283,154402820,154468356,154533891,154599428,154664965,154730500],"fork":[196609],"feel":[196609],"following":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4718593,4784129,4849665,4915201,4980737,5046273,5111810,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,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,23855105,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453698,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"fields":[917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,64094211,150994945,151781377,155713537,158859265,159186948,169148417,171048961,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"false":[983042,1310721,3538945,3604481,4456449,21626881,28835848,46202881,46333953,47513601,54591489,59506690,62193665,72220673,73334785,75104257,78249985,78774273,85983233,86441985,87228417,88080389,88801281,90308609,93519873,97386497,97910785,107216897,109051905,137953281,139591681,144244737,146735106,146866178,146931713,149618689,151584769,151781378,152961025,154730500,155123713,158269441,158793729,168361985,168820737,169607169,171048967,173867009],"fired":[1310723,4456451,171048963],"field":[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,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,47448065,47513602,64094209,70320130,78774276,109051906,109117441,109182977,158793735],"finalize":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"free":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889026,21954561,22020098,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,59047942,60882952,61276168,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342722,173408257,173473794,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"function":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242883,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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707073,24772609,24838145,24903681,25165825,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26214402,26279938,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,28049409,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,37552129,38600705,38666241,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50069505,50135041,52101121,54591489,54657025,54722561,58720257,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,61669377,62062593,62128129,62193665,62259201,62324737,62521345,62586881,62783489,62849025,63832065,65011714,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650307,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961026,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"frame":[5111809,23789569,151453697],"file":[5242903,12713985,24707080,24772616,24838152,24903688,25493511,25559047,25624583,25821192,25886728,26214410,26279946,27852807,27918343,29687814,29753350,29818886,29884422,30867462,30932998,30998534,31326214,31391750,32374791,32440327,35323910,35389446,35454982,40501255,41484289,41549825,42205186,42270722,44695559,44761095,44826631,48758785,63832075,63897601,64094210,64225281,64552968,64749571,64880644,65011718,65536002,68157441,68550658,68812804,69599235,70582273,71958529,72024065,72089601,72482818,72876034,73007106,73334787,74383363,74645505,74711041,75628546,77725698,79626241,79691777,87228417,87818241,88080387,88145921,89063425,91684870,92733446,93126662,93650950,93716481,95617031,100073478,104857606,144048134,145817606,146997249,147128321,147587073,151191553,151257089,151322625,151650327,152043524,152436739,152567813,152961030,154075141,154402817,154468353,154533889,155648003,156172290,156631044,157745157,159186947,160628737,161939457,169607169,170196993,171048963,171180033,173735937,174260225],"filename":[5242884,24707073,24772609,24838145,24903681,41484289,41549825,42270726,43253766,63832067,64094211,64552964,68550658,76611585,77070338,79167490,83230722,102039558,103350278,110034945,110166017,129630214,151650308,152043521,152567809,154075137,155648001,156172290,156631041,157089794,159186948,165609474],"family":[5242885,24969223,25034759,25100295,25165831,25231367,30015495,30081030,30212102,30277638,30408710,30539782,42401799,42532871,42729479,42860551,63832069,64094210,64618498,65863681,68878337,68943873,69009409,69074945,72548355,72613890,72679425,72744962,76677122,76742658,76808194,76873730,82640898,92012551,92143622,92274693,92405766,102170630,102367238,102563847,102760454,127729670,151650309,152109062,152174595,152240130,152305667,156696579,156762115,156827652,156893188,165019650],"format":[5242884,26214407,26279943,26607623,26673159,32374790,32440326,32899079,32964615,38010886,38273030,38535174,39059462,44761094,44826630,63832065,65011714,65142786,66584578,73334786,73465858,77725698,79757313,79822849,80347137,80412673,80478209,80543745,83230721,93716486,94044166,104923142,111280129,151650308,152961027,153092100,157745154,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"future":[5242881,27328513,63832065,151650305,153550849],"feature":[5242881,27328513,34144257,63832065,151650305,153550849],"fast":[5636098,24903681,29556738,29622274,29884417,65732610,72482817,77791233,88080386,91750401,105250817,147193857,147324929,152043523,157810689,171048962],"forward":[5636098,24903681,29556738,29622274,29687809,29753345,29818881,29884418,64094209,65732610,65798148,72482817,82771969,91750401,127926278,152043527,155058177,165150721],"frees":[8454145,37486593,154861569],"finished":[11141121,11206657,22872065,44236801,44367873,63569921,64094210,157614082,157679618,174981121],"failedaclevent":[16711683,53805063,53870600,64159745,71106566,83165187,129302531,129368067,129433603,165543948,166264833,170459141],"faxreceivedevent":[16777219,53936135,64159746,83230723,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,162004993,165609482],"functionality":[22806529,63111169,64290817,174850049,174915585],"first":[24576001,47316993,64028674,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507522,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,140443649,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,161218561,161349633,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886274,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"forwarddigit":[24903685,29556741,29622277,29884421,72482817,91750405,152043521],"forever":[28049409],"followed":[40894465,64094212,64225281,79167489,85524481,109969409,136380417,155844610,155910145,158662657,158990337,159186945,167903233,173604865],"final":[40894465,64094210,155844610,155910145],"form":[44040193,44171265,72220673,77398017,77463553,77791233,84410369,84803585,90963969,104267777,104398849,105775105,133103617,134021121,151584769,157417473,157483009,157810689,166789121,167182337],"files":[44761089,44826626,77725698,104923137,104988673,157745154],"failure":[49807361,49872898,63832066,86638593,88080385,140836865,146866177,152895489,154271745,169017345,171048961],"filled":[49938433,111017985],"facade":[63700993,154927105],"finally":[63766529,151126017],"fully":[63766529,63897601,154599425,154730497],"functions":[63832066,152502273,152633345],"func":[63832066,87228417,87818241,144113670,145883142,152502273,152633345,169607169,170196993],"fails":[64028674,64159745,160628737,166133761,170917889],"failedacleventhandler":[64028673,170459142],"failed":[64094209,77791233,88211457,105709569,148242433,157286401,157810689,171835393],"foo":[64094210,159186946],"fax":[64159745,83230725,129564673,129630209,129695745,129826817,129892353,165609478],"firstname":[64159749,170131461],"follows":[64225281,173604865],"fixed":[64290817,174981121],"frames":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"flag":[72155137,89325569,151453697],"firstline":[72155137,89391110,151453697],"fil":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"finds":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"fine":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"filter":[78643202,108462081,108527617,158662658],"features":[85131265,135331841,167510017],"fractionlost":[86900737,86966273,141426694,142278662,169279489,169345025],"fireallevents":[88080385,146735109,171048961],"float":[132448257,140312577,142344193,142934017,143261697,143458305],"favour":[154730500]} \ No newline at end of file diff --git a/docs/fti/FTI_103.json b/docs/fti/FTI_103.json index f83883f..ace3832 100644 --- a/docs/fti/FTI_103.json +++ b/docs/fti/FTI_103.json @@ -1 +1 @@ -{"good":[196609],"generated":[786433,2293761,46858241,46923777,69402634,69468164,73859074,83099651,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93454338,93716483,93782019,93847555,93913091,93978627,94044163,94109699,94175235,110297089,110493697,110952449,136904705,151781377,152305665,153747457,153944065,154075137,159318018,160235522,161873923,162004994,162725890,163119106,163577858,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951810,169017345,169082881,169148417,169213953,169279489,169345026,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175833090,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243],"given":[786433,4521985,10682423,13893634,13959169,27459585,27525121,27590657,27656194,27721729,27787265,27852801,27918337,28573697,28704769,28770305,30081026,30146562,30212098,30277634,30343169,30474242,30539777,30605313,30670849,30736385,30867457,30932993,30998529,31064065,31129602,31195138,31260674,31326210,31588353,31653889,31719425,31784962,31850497,31916034,31981571,32047107,32112641,32178178,32243713,32309250,32374785,32440322,32505857,32571394,32702465,33095681,33226753,33292290,34799617,35192833,35258369,36306945,36372481,36765697,37093377,38141953,38207490,38273027,38338563,40828929,41484289,42991617,43057153,43974657,44498945,44630017,44761090,44826627,44957697,45023233,45744129,45875202,46006273,47775746,47906818,48103426,48234498,48365569,48758785,48824321,48955393,49414145,49545217,50069506,50135042,50200578,51118082,51183618,51249155,51511297,51576833,51642370,51707906,52101122,52625410,52690946,52822018,52887554,53018625,53084162,53411841,53673985,54525954,54657025,54788097,54919169,55181313,55246849,55312385,65536001,65601537,65667073,65732609,66977793,67371009,68026369,69140512,69402637,69468161,69533697,69730306,69861384,69926914,69992450,70057987,70123521,70189060,70320130,70385667,70451209,70516739,70582275,70647811,70713347,70844419,70975489,71106562,71368706,71499777,71565313,71893001,72351745,73007105,73072645,73138178,73400321,73465858,73531393,74186754,74252290,74317826,74383362,74448897,74579970,74645505,74776577,74842113,74907654,75038727,75169798,75366402,75563012,75628548,75694083,75759617,75825153,76021762,76087297,76152833,76218369,76283906,76808194,76873730,82771970,94044161,109641730,153681921,155189249,155254786,155582465,155713591,156041217,156106756,156237825,156303361,156368897,156434433,156499971,156565505,156631043,156696577,156762114,157024257,157089794,157155339,157220866,157286402,157351938,157417474,157483009,157548545,157614081,158072834,158138371,158466049,158924802,158990338,159121410,159186949,159252482,159645697,159711234,159776769,160759810,160825346,160890883,160956419,161021953,161087489,161218562,161284098,161480705,161546243,161808390,161873924,162201607,162332678,162529282,162791429,162856965,162922500,163053570,163184641,163315714,163381249,163446785,163512321,164691970,166002689,171769857,175046659,175177730,177471489,177537025,177602561,177668098,177733633,177799170,177864706,177930241,178192385],"getconfigresponse":[7012355,27656195,66977796,67043334,69533698,93913091,153354242,177668106,177930241],"garbage":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"gethashcode":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"gettype":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"gets":[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,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,16777218,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,18743298,18808834,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333122,19398658,19464194,19529730,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,22216706,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,27000833,27066369,27131905,27197442,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,50331649,55443457,65863681,77266952,77332488,77398024,79953928,80019464,84934664,85000200,93388808,94306312,94437379,154861569,154927105,154992641,155123713,155189249,155254793,155320329,155385865,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466057,158531593,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873922,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691977,166002697,166068226,166133762,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658050,166723586,166789122,166854658,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177737,175243265,175833090,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192393,178782209,178847748,178913281],"getbaseexception":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"getobjectdata":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"getattribute":[10551298,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,29163526,67371014,155516930,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"getresult":[10551297,29229061,155516929],"getstatus":[10551299,29294597,29360129,29425665,155516931],"getsynopsis":[10551297,29360133,155516929],"getusage":[10551297,29425669,155516929],"getchannelstatus":[10682369,30801927,155713537],"getdata":[10682371,30867462,30932998,30998534,70057988,155713539],"getfullvariable":[10682370,31064070,31129607,70123523,155713538],"getvariable":[10682370,16777217,18743297,18808833,19333121,19398657,19464193,19529729,22216705,27197441,31064065,31326213,50331655,55443463,65863687,70123521,155713538,161873921,166068225,166133761,166658049,166723585,166789121,166854657,169672705,175833089],"getoption":[10682370,31195142,31260678,70189059,155713538],"getdatacommand":[11468803,36175876,36241415,36306951,36372487,69140481,71368712,78184451,97976322,98041858,98107394,155910145,156499981],"getfullvariablecommand":[11534339,36438020,36503559,36569095,69140481,71434246,78249987,98172930,98238466,155910145,156565515],"getoptioncommand":[11599875,36634628,36700167,36765703,69140481,71499782,78315523,98304002,98369538,98435074,155910145,156631051],"getvariablecommand":[11665411,36831236,36896774,40566785,69140482,77463553,78381059,94568449,98500611,155516929,155910145,156565505,156696585,158072833],"generalmappingstrategy":[13565955,41615365,41680899,41746439,41811976,41877512,69206017,72482824,158597133],"getconfigaction":[16056323,48496644,48562183,48627718,69402626,69533697,74514437,82378755,108527618,108593154,161153035,161742849,177668097],"getvaraction":[16121859,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,48693255,48758791,48824327,67371011,69402626,74579976,82444291,108658690,108724226,108789762,161218574,161611777,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243],"getvariables":[16777217,18743297,18808833,19333121,19398657,19464193,19529729,22216705,27197441,50397191,55508999,65929222,161873921,166068225,166133761,166658049,166723585,166789121,166854657,169672705,175833089],"getprotocolidentifier":[27000833,64749575,175046657],"getinstance":[28114946,68091910,68157446,77070339,178782210],"generates":[28114946,68091905,68157441,69402625,77070338,161873921,178782210],"generic":[29622274,29949953,41811970,42270724,50528258,55640066,57475073,60030977,66060290,67305474,67567617,67764226],"generate":[45285377,45350913,69402625,73203714,84475905,115212289,159449090,163250178],"global":[48758786,53018626,74579969,75694081,82444289,108724225,161218562,162922497],"group":[68943873,85458945,91291650,91357185,91422722,91488257,91553793,91619330,91684865,117637121,142278657,142737409,143261697,143851521,166461441,172425218,172490753,172556290,172621825,172687361,172752898,172818433],"general":[69206017,69468161,158597121,168165377],"generation":[69337089,177340417],"getconfig":[69402625,69533697,161153025,177668097],"getter":[69468161,174129153],"generelly":[69533697,177537025],"getescapedigits":[78774273,99352581,157155329],"getvar":[82444289,108658689,161218561],"gtalk":[87162881,130744321,168296449],"gtalksid":[87162881,130809862,168296449]} \ No newline at end of file +{"good":[196609],"getconfigresponse":[1572867,22282243,61669380,61734918,64225282,88670211,149291010,173735946,173998081],"garbage":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"gethashcode":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"gettype":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"gets":[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,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,11337730,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,13303810,13369346,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893634,13959170,14024706,14090242,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,16777218,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,21626881,21692417,21757953,21823490,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,44957697,50069505,60555265,71958536,72024072,72089608,74645512,74711048,79626248,79691784,88145928,89063432,89194499,150798337,150863873,150929409,151060481,151126017,151191561,151257097,151322633,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402825,154468361,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628745,161939465,162004994,162070530,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594818,162660354,162725890,162791426,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609474,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180041,171245569,171835394,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260233,174850049,174915588,174981121],"getbaseexception":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"getobjectdata":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"getattribute":[5111810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789574,62062598,151453698,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"getresult":[5111809,23855109,151453697],"getstatus":[5111811,23920645,23986177,24051713,151453699],"getsynopsis":[5111809,23986181,151453697],"getusage":[5111809,24051717,151453697],"given":[5242935,8454146,8519681,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22544385,23199745,23330817,23396353,24707074,24772610,24838146,24903682,24969217,25100290,25165825,25231361,25296897,25362433,25493505,25559041,25624577,25690113,25755650,25821186,25886722,25952258,26214401,26279937,26345473,26411010,26476545,26542082,26607619,26673155,26738689,26804226,26869761,26935298,27000833,27066370,27131905,27197442,27328513,27721729,27852801,27918338,29425665,29818881,29884417,30932993,30998529,31391745,31719425,32768001,32833538,32899075,32964611,35454977,36110337,37617665,37683201,38600705,39124993,39256065,39387138,39452675,39583745,39649281,40370177,40501250,40632321,42401794,42532866,42729474,42860546,42991617,43384833,43450369,43581441,44040193,44171265,44695554,44761090,44826626,45744130,45809666,45875203,46137345,46202881,46268418,46333954,46727170,47251458,47316994,47448066,47513602,47644673,47710210,48037889,48300033,49152002,49283073,49414145,49545217,49807361,49872897,49938433,60227585,60293121,60358657,60424193,61669377,62062593,62717953,63832096,64028673,64094221,64159745,64225281,64421890,64552968,64618498,64684034,64749571,64815105,64880644,65011714,65077251,65142793,65208323,65273859,65339395,65404931,65536003,65667073,65798146,66060290,66191361,66256897,66584585,67043329,67698689,67764229,67829762,68091905,68157442,68222977,68878338,68943874,69009410,69074946,69140481,69271554,69337089,69468161,69533697,69599238,69730311,69861382,70057986,70254596,70320132,70385667,70451201,70516737,70713346,70778881,70844417,70909953,70975490,71499778,71565314,77463554,88801281,104398850,149618689,151126017,151191554,151519233,151650359,151977985,152043524,152174593,152240129,152305665,152371201,152436739,152502273,152567811,152633345,152698882,152961025,153026562,153092107,153157634,153223170,153288706,153354242,153419777,153485313,153550849,154009602,154075139,154402817,154861570,154927106,155058178,155123717,155189250,155582465,155648002,155713537,156696578,156762114,156827651,156893187,156958721,157024257,157155330,157220866,157417473,157483011,157745158,157810692,158138375,158269446,158466050,158728197,158793733,158859268,158990338,159121409,159252482,159318017,159383553,159449089,160628738,161939457,167706625,171048962,171180034,172163073,173539329,173604865,173670401,173735938,173801473,173867010,173932546,173998081,174260225],"getchannelstatus":[5242881,25427975,151650305],"getdata":[5242883,25493510,25559046,25624582,64749572,151650307],"getfullvariable":[5242882,25690118,25755655,64815107,151650306],"getvariable":[5242882,11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,25690113,25952261,44957703,50069511,60555271,64815105,151650306,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393],"getoption":[5242882,25821190,25886726,64880643,151650306],"getdatacommand":[6029315,30801924,30867463,30932999,30998535,63832065,66060296,72876035,92733442,92798978,92864514,151846913,152436749],"getfullvariablecommand":[6094851,31064068,31129607,31195143,63832065,66125830,72941571,92930050,92995586,151846913,152502283],"getoptioncommand":[6160387,31260676,31326215,31391751,63832065,66191366,73007107,93061122,93126658,93192194,151846913,152567819],"getvariablecommand":[6225923,31457284,31522822,35192833,63832066,72155137,73072643,89325569,93257731,151453697,151846913,152502273,152633353,154009601],"generalmappingstrategy":[8126467,36241413,36306947,36372487,36438024,36503560,63897601,67174408,154533901],"getconfigaction":[10616835,43122692,43188231,43253766,64094210,64225281,69206021,77070339,103284738,103350274,157089803,157679617,173735937],"getvaraction":[10682371,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,43319303,43384839,43450375,62062595,64094210,69271560,77135875,103415810,103481346,103546882,157155342,157548545,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"getvariables":[11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,45023239,50135047,60620806,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393],"getprotocolidentifier":[21626881,59441159,171048961],"getinstance":[22740994,62783494,62849030,71761923,174850050],"generates":[22740994,62783489,62849025,64094209,71761922,157810689,174850050],"generic":[24248322,24576001,36438018,36896772,45154306,50266114,52101121,54657025,60751874,61997058,62259201,62455810],"generate":[39911425,39976961,64094209,67895298,79167489,109969409,155385858,159186946],"generated":[41484289,41549825,64028673,64094218,64159748,68550658,77791235,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88211458,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,105054209,105250817,105709569,132448257,147718145,148242433,149684225,149880833,150011905,155254786,156172290,157810691,157941762,158662658,159055874,159514626,161087489,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281794,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171835394,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"global":[43384834,47644674,69271553,70385665,77135873,103481345,157155330,158859265],"group":[63635457,80150529,85983234,86048769,86114305,86179841,86245377,86310914,86376449,86441986,112656385,137822209,138280961,139132929,139460609,162398209,168361986,168427521,168493057,168558593,168624129,168689666,168755201,168820738],"general":[63897601,64159745,154533889,164102145],"generation":[64028673,173408257],"getconfig":[64094209,64225281,157089793,173735937],"getter":[64159745,170131457],"generelly":[64225281,173604865],"getescapedigits":[73465857,94109701,153092097],"getvar":[77135873,103415809,157155329],"gtalk":[81854465,126287873,164233217],"gtalksid":[81854465,126353414,164233217]} \ No newline at end of file diff --git a/docs/fti/FTI_104.json b/docs/fti/FTI_104.json index 0997c6c..3b546af 100644 --- a/docs/fti/FTI_104.json +++ b/docs/fti/FTI_104.json @@ -1 +1 @@ -{"history":[131074,196610,262145],"http":[196610,69468161,169672705],"hangup":[786434,3276806,6422529,9043969,10682372,31391749,31588353,31653889,32702465,37093377,48955393,69140491,70320130,77463553,78446593,80478210,82509826,84738049,88604674,94568449,98566147,103153666,108855297,108920833,115998721,134479873,134545409,155516929,155713540,155844609,156762113,156893185,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,159252482,161284098,163512321,169738242,175046658],"hung":[786434,3276801,4390913,39518209,45023233,69468162,79233025,100204546,103153665,157614081,169738241,171638785,175046658],"hold":[786437,3342343,3407873,5898241,10682371,31457282,33161217,40173569,40239106,69140482,69468163,70254594,72220674,79495169,85721089,85786625,88670212,100466690,118882305,119144449,134610945,134676481,134742017,134807553,155713539,157876225,157941764,166723585,166789121,169803781,169869313,173867009,175046661],"holdedcall":[786434,3407878,175046658],"hangupeventhandler":[3276807,69337089,174522374],"hangupevent":[3276801,22282243,59375623,69468163,88604675,134479874,134545410,166199298,169738250,174522373],"holdeventhandler":[3342343,69337089,174653446],"holdevent":[3342337,22413315,59506695,69468162,88735747,134873091,169869322,170328065,173867009,174653445],"holdedcalleventhandler":[3407879,69337089,174587910],"holdedcallevent":[3407873,22347779,59441159,69468162,88670211,134610946,134676482,134742018,134807554,169803786,170328065,174587909],"hostname":[6356993,8454145,65536005,65601541,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93323266,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,150863878,154140673,155058177,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046658,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"handle":[6750209,9895937,28573698,69074945,69337089,69599233,85000193,116260865,155189250,166002689,174718977,175046657,178847745],"hash":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,49086465,49152001,49217537,74711041,93257729,93519873,93650945,94371841,150536198,152436744,152829960,154796034,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349634,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174718977,175046657,175177729,175243265,175833089,177274882,177340417,177405954,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782210,178847745,178913281],"hangs":[10682369,31391745,37027841,37093377,48955393,54919169,69140482,69402625,71565314,74645505,76218369,155713537,156762116,161284097,163512322],"hangupcommand":[11730947,36962308,37027847,37093383,69140481,71565318,78446595,98566146,155910145,156762123],"hangupaction":[16187395,48889863,48955399,69402626,74645510,82509827,108855298,108920834,161284108,161611777],"handleresponse":[26935297,27262977,27394049,64421893,66322441,66650121,174718977,177274881,177405953],"handleevent":[27262977,66256903,177274881],"host":[43122694,77529089,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881475,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,96206849,109903873,136773633,144703490,154140673,155648001,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015043,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"higher":[51249153,83427329,91291649,91357185,91684865,91750402,111804417,142475265,143065089,144506882,162201601,172425217,172490753,172818433,172883970],"hang":[54919169,69074945,69402625,76218369,155320321,161284097,163512321],"hosname":[65536001,65601537],"hide":[69009409,69533698,158990337,177537025,177668097],"hungup":[69140481,91291649,91357185,91684865,142213121,142671873,157614081,172425217,172490753,172818433],"handler":[69337090,93323265,150798337,175046657,177274881,177405953],"hear":[69402625,159121409],"help":[69402625,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,159776769,164691969,166002689,175177729,178192385],"handy":[69402625,163250177],"handling":[69402625,69533697,163250177,177537025],"html":[69468161,169672705],"hairy":[69533697,177537025],"helplink":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"hresult":[77266946,77332482,77398018,79953922,80019458,84934658,85000194,93388802,94306306,155254786,155320322,155385858,158466050,158531586,164691970,166002690,175177730,178192386],"hack":[85000193,116260865,166002689],"holdtime":[85721089,85786625,90963969,91750402,118882309,119144453,141295622,144113671,166723585,166789121,172097537,172883970],"happened":[86310913,120258561,167313409],"hint":[88408066,93847553,133627910,153223174,169541634,177602561],"highestsequence":[92143617,145620998,173277185],"halted":[92471297,148307969,173604865],"hierarchy":[155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611778,161677314,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264834,166330370,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211650,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930242,177995777,178192385,178782209,178847745,178913281]} \ No newline at end of file +{"history":[131074,196610,262145],"http":[196610,64159745,165609473],"hostname":[917505,3014657,60227589,60293125,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080386,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,146800646,150077441,150994945,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"hangup":[983041,3604481,5242884,26017797,26214401,26279937,27328513,31719425,43581441,63832075,64028673,65011714,72155137,73138177,75169794,77201410,79429633,83296258,89325569,93323267,97910786,103612417,103677953,110755841,130023425,130088961,151453697,151650308,151781377,152698881,152829953,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,155189250,157220866,159449089,165675010,170524673],"handle":[1310721,4456449,23199746,63766529,64028673,64290817,79691777,111017985,151126018,161939457,170721281,171048961,174915585],"hash":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,43712513,43778049,43843585,69402625,88014849,88276993,88408065,89128961,146472966,148373512,148766728,150732802,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342722,173408257,173473794,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850050,174915585,174981121],"hangs":[5242881,26017793,31653889,31719425,43581441,49545217,63832066,64094209,66256898,69337089,70909953,151650305,152698884,157220865,159449090],"hold":[5242883,26083330,27787265,34799617,34865154,63832066,64028676,64159747,64946178,66912258,74186753,80412673,80478209,83361796,95223810,114425857,114688001,130154497,130220033,130285569,130351105,151650307,153812993,153878532,162660353,162725889,165740549,165806081,169869313,170590209,170655746,174391297],"hangupcommand":[6291459,31588356,31653895,31719431,63832065,66256902,73138179,93323266,151846913,152698891],"hangupaction":[10747907,43515911,43581447,64094210,69337094,77201411,103612418,103677954,157220876,157548545],"hangupevent":[16842755,54001671,64159747,83296259,130023426,130088962,162136066,165675018,170524677],"holdedcallevent":[16908291,54067207,64159746,83361795,130154498,130220034,130285570,130351106,165740554,166264833,170590213],"holdevent":[16973827,54132743,64159746,83427331,130416643,165806090,166264833,169869313,170655749],"handleresponse":[21561345,21889025,22020097,59113477,61014025,61341705,170721281,173342721,173473793],"handleevent":[21889025,60948487,173342721],"hung":[34144257,39649281,64028674,64159746,73924609,94961666,97910785,153550849,165675009,167575553,170524673,172032001],"host":[37748742,72220673,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638595,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,90963969,104660993,132317185,140640258,150077441,151584769,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017347,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"higher":[45875201,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,86507522,106561537,112984065,138018817,138608641,139657217,140443650,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737,168886274],"hang":[49545217,63766529,64094209,70909953,151257089,157220865,159449089],"hosname":[60227585,60293121],"hide":[63700993,64225282,154927105,173604865,173735937],"hungup":[63832065,85983233,86048769,86441985,137756673,138215425,139395073,153550849,168361985,168427521,168820737],"handler":[64028674,88080385,146735105,171048961,173342721,173473793],"hangupeventhandler":[64028673,170524677],"holdedcalleventhandler":[64028673,170590213],"holdedcall":[64028673,170590209],"holdeventhandler":[64028673,170655749],"hear":[64094209,155058177],"help":[64094209,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,155713537,160628737,161939457,171180033,174260225],"handy":[64094209,159186945],"handling":[64094209,64225281,159186945,173604865],"html":[64159745,165609473],"hairy":[64225281,173604865],"helplink":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"hresult":[71958530,72024066,72089602,74645506,74711042,79626242,79691778,88145922,89063426,151191554,151257090,151322626,154402818,154468354,160628738,161939458,171180034,174260226],"hack":[79691777,111017985,161939457],"holdtime":[80412673,80478209,85655553,86507522,114425861,114688005,136839174,140050439,162660353,162725889,168034305,168886274],"happened":[81002497,115802113,163250177],"hint":[83099650,88604673,129171462,149159942,165478402,173670401],"highestsequence":[86900737,141557766,169279489],"halted":[87228417,144244737,169607169],"hierarchy":[150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548546,157614082,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201602,162267138,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174260225,174850049,174915585,174981121]} \ No newline at end of file diff --git a/docs/fti/FTI_105.json b/docs/fti/FTI_105.json index b661bc6..7e2cb0c 100644 --- a/docs/fti/FTI_105.json +++ b/docs/fti/FTI_105.json @@ -1 +1 @@ -{"items":[262145,92536833,148504582,173670401],"inherited":[327681,393217,458753,524289,589825,655361,720897,851969,917505,6815745,6881281,6946817,7012353,7077889,7143425,7208961,10158086,10223622,10289160,10354696,10420232,10485766,10551301,10616837,10682374,10747910,10813446,10878981,10944519,11010055,11075591,11141127,11206663,11272199,11337735,11403271,11468807,11534343,11599879,11665415,11730951,11796487,11862023,11927559,11993095,12058631,12124167,12189703,12255239,12320775,12386311,12451847,12517383,12582919,12648455,12713991,12779527,12845063,12910599,12976135,13041671,13107207,13172743,13238279,13303815,13434888,13500424,13565958,13631494,13697030,13762566,13828102,13893638,13959172,14024710,14090246,14155782,14221318,14286854,14352390,14417926,14483462,14548998,14614534,14680070,14745606,14811142,14876678,14942214,15007750,15073286,15138822,15204358,15269894,15335430,15400966,15466502,15532038,15597574,15663110,15728646,15794182,15859718,15925254,15990790,16056326,16121862,16187398,16252934,16318470,16384006,16449542,16515077,16580614,16646150,16711686,16777222,16842758,16908294,16973830,17039366,17104902,17170438,17235974,17301510,17367046,17432582,17498118,17563654,17629190,17694726,17760262,17825798,17891334,17956870,18022406,18087942,18153478,18219014,18284550,18350086,18415622,18481158,18546694,18612232,18677768,18743308,18808840,18874376,18939912,19005448,19070984,19136520,19202056,19267592,19333132,19398668,19464204,19529740,19595272,19660808,19726344,19791880,19857416,19922952,19988488,20054024,20119560,20185096,20250632,20316168,20381704,20447240,20512775,20578312,20643848,20709384,20774920,20840456,20905992,20971528,21037064,21102600,21168136,21233672,21299208,21364744,21430280,21495816,21561352,21626888,21692424,21757960,21823496,21889032,21954568,22020104,22085640,22151176,22216716,22282248,22347784,22413320,22478856,22544392,22609928,22675464,22741000,22806536,22872069,22937608,23003144,23068680,23134216,23199752,23265288,23330824,23396360,23461896,23527432,23592968,23658504,23724040,23789576,23855112,23920648,23986184,24051720,24117256,24182792,24248328,24313864,24379400,24444936,24510472,24576008,24641544,24707080,24772616,24838152,24903688,24969224,25034760,25100296,25165832,25231368,25296904,25362440,25427976,25493512,25559048,25624584,25690120,25755656,25821192,25886728,25952264,26017800,26083336,26148872,26214408,26279944,26345480,26411016,26476552,26542088,26607624,26673159,26738696,26804232,26869768,27000838,27066376,27131910,27197446,27262982,27328518,27394054,27459594,27525130,27590666,27656202,27721738,27787274,27852810,27918341,27983877,28049416,28114950,28180486,28246022,77266952,77332488,77398024,79953928,80019464,80347139,80412675,80478211,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82903044,82968580,83034115,83099651,83165187,83230723,83296259,83361796,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934664,85000200,85065737,85131272,85196808,85262344,85327880,85393416,85458952,85524488,85590024,85655561,85721100,85786636,85852172,85917704,85983240,86048778,86114314,86179848,86245384,86310920,86376456,86441992,86507528,86573064,86638606,86704142,86769689,86835208,86900761,86966280,87031816,87097352,87162888,87228425,87293961,87359497,87425034,87490569,87556106,87621641,87687177,87752713,87818249,87883784,87949322,88014866,88080402,88145928,88211465,88277000,88342536,88408072,88473608,88539148,88604689,88670216,88735752,88801288,88866824,88932362,88997898,89063442,89128968,89260042,89325578,89391114,89456650,89522186,89587722,89653258,89718792,89784328,89849864,89915400,89980936,90046472,90112008,90177553,90243080,90308625,90374154,90439690,90505228,90570762,90636300,90701834,90767370,90832904,90898440,90963976,91029514,91095050,91160586,91226120,91291658,91357194,91422730,91488266,91553802,91619338,91684884,91750410,91815946,91881480,91947017,92012552,92078088,92143624,92209160,92274696,92340232,92405768,92471305,92536842,92602378,92667912,92733448,92798984,92864530,92930060,92995592,93061128,93126666,93192202,93388808,93716488,93782024,93847560,93913096,93978632,94044168,94109704,94306312,155123718,155189254,155254801,155320337,155385873,155451398,155516933,155648005,155713542,155779078,155844614,155910149,155975687,156041223,156106759,156172295,156237831,156303367,156368903,156434439,156499975,156565511,156631047,156696583,156762119,156827655,156893191,156958727,157024263,157089799,157155335,157220871,157286407,157351943,157417479,157483015,157548551,157614087,157679623,157745159,157810695,157876231,157941767,158007303,158072839,158138375,158203911,158269447,158334983,158466065,158531601,158597126,158662662,158728198,158793734,158859270,158924806,158990340,159121417,159186953,159252489,159318025,159383561,159449097,159514633,159580169,159645705,159711241,159776777,159842313,159907849,159973385,160038921,160104457,160169993,160235529,160301065,160366601,160432137,160497673,160563209,160628745,160694281,160759817,160825353,160890889,160956425,161021961,161087497,161153033,161218569,161284105,161349641,161415177,161480713,161546249,161611781,161677322,161742858,161808393,161873929,161939465,162005001,162070537,162136074,162201609,162267145,162332681,162398217,162463753,162529289,162594825,162660361,162725897,162791433,162856969,162922505,162988041,163053577,163119113,163184649,163250185,163315721,163381257,163446793,163512329,163577865,163643401,164691985,166002705,166068245,166133776,166199312,166264848,166330384,166395920,166461456,166526992,166592528,166658069,166723608,166789144,166854680,166920208,166985744,167051282,167116818,167182352,167247888,167313424,167378960,167444496,167510032,167575568,167641110,167706646,167772193,167837711,168034337,168099856,168165392,168230928,168296464,168362001,168427537,168493073,168558610,168624145,168689682,168755217,168820753,168886289,168951825,169017360,169082898,169148442,169213978,169279504,169345041,169410576,169476112,169541648,169607184,169672728,169738265,169803792,169869328,169934864,170000400,170065938,170131474,170197018,170262544,170328069,170393618,170459154,170524690,170590226,170655762,170721298,170786834,170852368,170917904,170983440,171048976,171114512,171180048,171245584,171311129,171376656,171442201,171507730,171573266,171638804,171704338,171769876,171835410,171900946,171966480,172032016,172097552,172163090,172228626,172294162,172359696,172425234,172490770,172556306,172621842,172687378,172752914,172818460,172883986,172949522,173015056,173080593,173146128,173211664,173277200,173342736,173408272,173473808,173539344,173604881,173670418,173735954,173801488,173867024,173932560,173998106,174063636,174129167,174194704,174260242,174325778,175046662,175177745,175243270,175833094,177274886,177340422,177405958,177471507,177537043,177602579,177668115,177733651,177799187,177864723,177930245,177995781,178192401,178782214,178847750,178913286],"invalidcommandsyntaxexception":[524291,13434883,41484294,69074946,79953923,101318658,101384194,155254785,158466058],"invalidorunknowncommandexception":[589827,13500419,41549830,69074946,80019459,155254785,158531594],"instantiated":[786434,2424833,2555905,175046658],"information":[786436,4587521,4784129,4980737,5046273,10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,69468163,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254786,155320322,155385858,158466050,158531586,164691970,166002690,171835393,172294145,172490753,175046660,175177730,178192386],"iax":[786434,4718593,5505025,69468162,90832900,91881473,140705793,140836865,140902401,140967937,144703489,171966469,173015042,175046658],"ievent":[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],"internal_action_id_delimiter":[6356993,8585222,155058177],"int":[7536643,7602179,7733251,7995395,8519683,29294595,30081027,30146563,30212102,30277638,30670851,30736387,30801923,30998531,31260675,31588358,31653900,32702467,32964611,33357827,33423363,33947654,34013190,34144262,34209798,35192835,35258371,36372483,36765699,37421059,37617667,37748739,37814281,39518211,40370179,40828931,41091075,41287683,42795011,43122691,44630019,45350918,51249155,52625411,52690947,54525955,54657027,54788099,54919171,64946179,65208323,65273859,65404931,65536003,65601539,66977798,68943875,77463553,94765062,95092740,95158276,95223812,95289348,95813637,96075781,96534532,96665604,97058821,98041861,98435077,98631685,98697221,99024901,99090437,100204549,100597765,100925445,101122053,102105092,102301700,102563845,104333317,104398853,110952453,111804421,114163717,115605509,115736581,115867653,115998725,116195333,117309445,120127493,129105925,130482181,130547717,130678789,131858437,131923973,133693445,134217733,134348805,134414341,134479877,135069701,135135237,135200773,135266309,135331845,135397381,135462917,135593989,135659525,135725061,135790597,135856133,135921669,135987205,136052741,136249349,136445956,137625605,137691141,137756677,137953285,138543108,138936325,139329541,140181509,140640261,140967941,141295621,141361157,141426693,141819909,142016517,142147589,142475269,142540805,142606341,143065093,143196165,143785989,143917061,143982597,144048133,144113669,144179205,144310277,144506885,145817605,145948677,146145285,147849221,147914757,147980293,148045829,148242437,148373509,148504581,149028869,149094405,150011909,150077445,150536197,150667269,150732805,151126021,151191557,151257093,151322629,151388165,151453701,151519237,152240133,152436742,152829958,153288709,153354244,153485317,153550853,154533893,155516929],"integer":[7536641,7602177,7733249,7995393,8519681,29294593,30081025,30146561,30212098,30277634,30670849,30736385,30801921,30998529,31260673,31588354,31653892,32702465,32964609,33357825,33423361,33947650,34013186,34144258,34209794,35192833,35258369,36372481,36765697,37421057,37617665,37748737,37814275,39518209,40370177,40828929,41091073,41287681,42795009,43122689,44630017,45350914,51249154,52625409,52690945,54525953,54657025,54788097,54919169,64946177,65208321,65273857,65404929,65536001,65601537,66977794,68943873,83427329,94765057,95092737,95158273,95223809,95289345,95813633,96075777,96534529,96665601,97058817,98041857,98435073,98631681,98697217,99024897,99090433,100204545,100597761,100925441,101122049,102105089,102301697,102563841,104333313,104398849,110952449,111804418,114163713,115605505,115736577,115867649,115998721,116195329,117309441,120127489,129105921,130482177,130547713,130678785,131858433,131923969,133693441,134217729,134348801,134414337,134479873,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136249345,136445953,137625601,137691137,137756673,137953281,138543105,138936321,139329537,140181505,140640257,140967937,141295617,141361153,141426689,141819905,142016513,142147585,142475265,142540801,142606337,143065089,143196161,143785985,143917057,143982593,144048129,144113665,144179201,144310273,144506881,145817601,145948673,146145281,147849217,147914753,147980289,148045825,148242433,148373505,148504577,149028865,149094401,150011905,150077441,150536193,150667265,150732801,151126017,151191553,151257089,151322625,151388161,151453697,151519233,152240129,152436737,152829953,153288705,153354241,153485313,153550849,154533889,162201601],"int32":[7536641,7602177,7733249,7995393,8519681,10682377,27000835,29294593,30081025,30146561,30212099,30277635,30670849,30736385,30801921,30998530,31260674,31588355,31653895,32702466,32964611,33357825,33423361,33947660,34013188,34144260,34209806,35192834,35258370,36372482,36765698,37421058,37617667,37748738,37814278,39518209,40370178,40828930,41091073,41287682,42795012,43122689,44630018,45350944,51249154,52625410,52690946,54525956,54657027,54788099,54919171,64946178,65208321,65273860,65404933,65536002,65601539,66977796,68943873,69861378,70057985,70189057,70320132,70778881,70909960,71106562,71368705,71499777,71630849,71696385,71761924,72286209,72351745,72417281,73007105,73203714,75038721,75563010,76021761,76087297,76152833,76218369,76611585,76677121,76742657,76808194,94765057,95092737,95158273,95223809,95289345,95813633,96075777,96534529,96665601,97058817,98041857,98435073,98631681,98697217,99024897,99090433,100204545,100597761,100925441,101122049,102105089,102301697,102563841,104333313,104398849,110952449,111804417,114163713,115605505,115736577,115867649,115998721,116195329,117309441,120127489,129105921,130482177,130547713,130678785,131858433,131923969,133693441,134217729,134348801,134414337,134479873,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136249345,136445953,137625601,137691137,137756673,137953281,138543105,138936321,139329537,140181505,140640257,140967937,141295617,141361153,141426689,141819905,142016513,142147585,142475265,142540801,142606337,143065089,143196161,143785985,143917057,143982593,144048129,144113665,144179201,144310273,144506881,145817601,145948673,146145281,147849217,147914753,147980289,148045825,148242433,148373505,148504577,149028865,149094401,150011905,150077441,150536193,150667265,150732801,151126017,151191553,151257089,151322625,151388161,151453697,151519233,152240129,152436737,152829953,153288705,153354241,153485313,153550849,154533889,155713545,155844616,156106754,156499969,156631041,156893185,156958721,157024260,158007297,158138369,158334977,159121409,159449090,162201601,162791426,163315713,163381249,163446785,163512321,175046661],"iformatprovider":[8388613],"instance":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959171,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114947,28180482,28246017,28377089,28442625,28639233,28835841,28901377,29097985,29556737,29622273,33488897,33619969,33947649,34209793,34471937,34603009,34734081,37617665,41746433,41811969,41877505,42074113,42139649,42336257,42532865,42598401,42795009,43974662,45154305,46399489,47382529,47448065,47513601,48431105,49283073,49676289,49807361,49938433,50593793,50855937,50921473,50987009,52297729,52363265,52494337,53215233,53542913,55050241,55115777,55377921,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737217,57802753,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58916865,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63897601,63963137,64094209,64159745,64225281,64290817,65470465,65536001,65601537,66125825,66387969,66519041,66715649,66781185,66846721,66912257,67043329,67108865,67174401,67305473,67698689,67764225,67960833,68091906,68157442,68485121,68550657,68616193,68681729,68747265,69533697,69664770,69730305,69795842,70909954,70975489,71696385,72482819,72548354,72613890,75497474,76349442,76414978,76808195,76939265,77004802,77070338,77135876,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155123715,155189249,155254787,155320323,155385859,155451394,155516931,155648001,155713538,155779074,155844611,155910146,155975682,156041218,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958722,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466050,158531586,158597124,158662659,158728194,158793731,158859266,158924801,158990339,159121409,159186945,159252481,159318018,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973378,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497666,160563202,160628738,160694273,160759809,160825345,160890881,160956417,161021953,161087490,161153025,161218561,161284097,161349633,161415170,161480705,161546241,161611778,161677314,161742850,161808385,161873922,161939457,162004994,162070530,162136066,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660355,162725890,162791425,162856961,162922497,162988034,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577858,163643394,164691970,166002690,166068226,166133762,166199298,166264835,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182337,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296449,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148417,169213953,169279489,169345026,169410561,169476097,169541634,169607171,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328065,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032001,172097537,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867009,173932545,173998082,174063618,174129154,174194690,174260226,174325762,175046660,175177730,175243265,175833090,177274882,177340418,177405954,177471490,177537026,177602562,177668099,177733634,177799170,177864706,177930243,177995778,178192386,178782211,178847750,178913281],"indicating":[10551297,29163521,94437378,154861569,154927105,155516929,155582468,178847746],"invalid":[10551298,29294594,41549825,79953922,101318658,101384194,155516930,158466050],"interrupted":[10682372,30081025,30146561,30212097,30277633,69140482,69861380,155713540,156106753,158138369],"included":[10682372,30081025,30146561,30212097,30277633,69140483,69861380,83099649,93454337,110297089,151781377,155713540,156106753,156631041,158138369,161873921,175833089],"interrupt":[10682371,28180481,30146561,30212097,30277633,30867457,30932993,30998529,31916033,31981569,32047105,35127297,35192834,35258370,38010881,38207489,38273025,38338561,38535169,38731777,38928385,39124993,40763393,40828930,68354053,69140481,70057987,77791233,78708737,78774273,78839809,78905345,78970881,79036417,79691777,96862209,99155969,99352577,99614721,99680257,99811329,99942401,100794369,155713539,156106753,156499969,157089793,157155329,157220865,157286401,157351937,157417473,158138369,178847745],"int64":[10682376,30932995,30998531,31850499,31916035,31981571,32047107,32505859,32571395,36306947,36372483,38141956,38207491,38273027,38338563,39059459,39124995,67829762,70057986,70451204,70713346,71368706,71892996,72155138,98107394,99418114,100007938,101253122,102957058,118882306,119013378,119144450,119209986,119668738,119996418,129564674,129957890,137297922,139788290,141950978,142213122,142671874,145489922,145620994,145686530,146079746,146210818,146341890,146472962,146538498,146669570,146735106,146800642,146866178,147062786,147128322,147193858,147259394,147390466,147456002,147587074,147652610,147718146,152305666,155713544,156499970,157155332,157417474],"interruption":[10682371,31916033,31981569,32047105,38207489,38273025,38338561,70451203,71892995,155713539,157155331],"imappingstrategy":[13369347,28573703,33882119,33947658,41353221,41418755,41615361,41680897,41943041,42008577,42401793,42467329,69074945,70909954,96600070,155844610,158400519,158597124,158662660,158793732],"interface":[13369345,26935297,41353217,41418753,51118082,51183618,51249154,51380230,51511298,51576834,51642370,51707906,51838982,52101122,64356353,64421889,69074950,69206017,69337092,69402627,75038723,75169796,75366401,83427330,83492865,83558402,83623937,83755010,84475905,85065730,85458945,85721090,85786626,85852162,88539138,91291650,91357185,91422722,91488257,91553793,91619330,91684865,93257729,111607814,112066566,112394246,112656390,113246214,115212289,116326401,116391937,117637121,142278657,142737409,143261697,143851521,150470657,150536193,155123713,155516929,155648001,155779073,158400517,158597121,158662658,158793730,159383553,159776769,161611777,161873921,162201605,162267137,162332678,162398209,162529283,163250177,166068226,166133761,166461441,166723586,166789122,166854658,169672706,170328065,172425218,172490753,172556290,172621825,172687361,172752898,172818433,174718982,175046657,175243265,177274881,177405953,177930241],"including":[13893633,42860545,69533697,88539137,134086657,158924801,169672705,177537025],"input":[13893633,30932993,30998529,42860545,69140483,156499969,156893185,156958721,158924801],"ioexception":[13893634,42860545,42926081,69074945,155385857,158924802],"info":[13959172,43712520,43778056,43843593,43909129,72810501,158990340,159055873],"isvisible":[13959169,44040200,158990337],"indicates":[16580609,16646145,49610753,49741825,69402627,69533697,160890881,161677314,161742850,177799169],"index":[18153473,54132737,75890689,163250177],"incremented":[18153473,54132737,75890689,163250177],"iresponsehandler":[26935299,64356355,64421890,66191361,66322433,66584577,66650113,69337089,93257731,150470659,150536195,152371201,152436737,152764417,152829953,174718982,177274884,177405956],"isconnected":[27000833,64815109,80281601,101974021,158924801,175046657],"identifier":[27000834,64880641,64946177,76611586,88539138,134152193,134283265,169672706,175046658],"important":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,69468161,174129153,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"internally":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"issuccess":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67436550,94240769,154468358,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777],"internal":[28114945,68222977,86048769,86114305,87425025,87556097,87949313,90374145,90439681,90570753,90701825,90767361,91160577,91357185,91684865,91750401,91815937,92078081,92536833,92602369,93126657,93192193,94371841,145358849,154796033,167051265,167116801,168558593,168689665,169082881,171507713,171573249,171704321,171835393,171900929,172294145,172490753,172818433,172883969,172949505,173211649,173670401,173735937,174260225,174325761,178782210],"interrupts":[28180481,68354049,178847745],"initializes":[28377089,28442625,28639233,28835841,28901377,29097985,29556737,29622273,33488897,33619969,33947649,34209793,34471937,34603009,34734081,37617665,41746433,41811969,41877505,42074113,42139649,42336257,42532865,42598401,42795009,45154305,46399489,47382529,47448065,47513601,48431105,49283073,49676289,49807361,49938433,50593793,50855937,50921473,50987009,52297729,52363265,52494337,53215233,53542913,55050241,55115777,55377921,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737217,57802753,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58916865,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61800449,61865985,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63897601,63963137,64094209,64159745,64225281,64290817,66125825,66781185,66846721,66912257,67043329,67108865,67174401,67305473,67698689,67764225,67960833,68550657,68616193,68681729,68747265,69664770,69730305,69795842,70909954,70975489,71696385,72482819,72548354,72613890,75497474,76349442,76414978,76939265,77004802,77135876,155123714,155254785,155320321,155385857,155451393,155516930,155713537,155779073,155844610,155910145,155975681,156041217,156958721,158597123,158662658,158728193,158793730,158859265,159318017,159973377,160497665,160563201,160628737,161087489,161415169,161611777,161677313,161742849,161873921,162004993,162070529,162136065,162660354,162725889,162988033,163119105,163577857,163643393,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169345025,169541633,169607170,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173998081,174063617,174129153,174194689,174260225,174325761,175833089,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930242,177995777,178847748],"insensitive":[29163521],"include":[30081025,30146561,30212097,30277633,31195137,31260673,31588353,31653889,35061761,35127297,35192833,35258369,36241409,36306945,36372481,36700161,36765697,37748737,37814273,39256065,40697857,40763393,40828929,69140481,78184449,79691777,97976321,100859905,156499969,157483009,158138369],"ipaddress":[33947654,34144261,34209800,42795016,90701825,95748103,96010247,102039558,102236166,140115973,171835393],"image":[39256070,69140484,79101954,100073479,157483014],"indefinitely":[41222145,69140481,72417281,158334978],"implements":[41615361,41680897,41943041,42008577,42401793,42467329,66191361,66322433,66584577,66650113,69402625,152371201,152436737,152764417,152829953,158597121,158662657,158793729,161611777,161873921,166133761,170328065,177274881,177405953,177930241],"intended":[47579137,47644673,74121218,160694274],"instead":[49086465,74711041,161349633],"iface":[51118085,51183621,51249157,51511301,51576837,51642373,51707909,52101125],"internalactionid":[64552966,86048769,86114305,87425025,87556097,87949313,90374145,90439681,90570753,90701825,90767361,91160577,91357185,91684865,91750401,91815937,92078081,92536833,92602369,93126657,93192193,145358853,167051265,167116801,168558593,168689665,169082881,171507713,171573249,171704321,171835393,171900929,172294145,172490753,172818433,172883969,172949505,173211649,173670401,173735937,174260225,174325761],"incoming":[65536001,65601537],"invoked":[68681729,68747265],"implementation":[69074948,69337089,155123713,155516929,155648001,155779073,175243265],"implement":[69074945,69206017,158662657,158793729],"interfaces":[69074945,69337089],"infinite":[69140482,156893185,156958721],"images":[69140481,157483009],"incorrect":[69337089,164691969],"implemention":[69337089,175046657],"implemented":[69402634,69468204,159711233,161677313,161742849,161808385,162201601,162332673,162529281,162725889,162856961,163184641,166526977,166592513,166658049,166920193,166985729,167247873,167313409,168165377,169279489,169410561,169541633,169672705,169738241,169803777,169869313,170065921,170131457,170262529,170459137,170524673,170655745,170852353,171245569,171311105,171376641,171442177,171573249,171638785,171769857,171835393,171966465,172294145,172425217,172490753,172556289,172752897,172883969,173015041,173080577,173146113,173604865,173867009,174063617,174129153],"implementations":[69402625,161611777],"individual":[69468161,167837697],"islink":[69468161,167837697],"isunlink":[69468161,167837697],"installed":[69468161,169672705],"installing":[69468161,169672705],"innerexception":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"immediate":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"initial":[80281601,101908486,158924801],"isexternal":[86441985,86507521,120717318,125435910,167444481,167510017],"iax2":[87162881,90832898,91881477,130744321,140771329,140836865,144637953,144703489,144769026,144900097,168296449,171966466,173015045],"iax2callnolocal":[87162881,130875398,168296449],"iax2callnoremote":[87162881,130940934,168296449],"iax2peer":[87162881,131006470,168296449],"ipport":[90701825,140181510,171835393],"incall":[91488257,143458309,172621825],"iajitter":[92143617,92209153,145686534,146407430,173277185,173342721],"interval":[93323266,151257089,151322625,175046658],"identifer":[93323265,151519233,175046657],"indicats":[93585409,152567809,177340417],"isalive":[94437377,154861573,178847745],"isbackground":[94437377,154927109,178847745],"ilist":[94699526],"idictionary":[96141318],"inheritance":[155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611778,161677314,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264834,166330370,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211650,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930242,177995777,178192385,178782209,178847745,178913281],"inherits":[155254785,155320321,155385857,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175177729,177471489,177537025,177602561,177668097,177733633,177799169,177864705,178192385],"inherit":[155254785,155320321,155385857,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175177729,177471489,177537025,177602561,177668097,177733633,177799169,177864705,178192385],"iactionvariable":[161873924,166133764],"invite":[167968769],"iparsesupport":[170328068,177930244]} \ No newline at end of file +{"items":[262145,87293953,144441350,169672705],"inherited":[327681,393217,458753,524289,589825,655361,720897,786433,851969,1376257,1441793,1507329,1572865,1638401,1703937,1769473,4718598,4784134,4849672,4915208,4980744,5046278,5111813,5177349,5242886,5308422,5373958,5439493,5505031,5570567,5636103,5701639,5767175,5832711,5898247,5963783,6029319,6094855,6160391,6225927,6291463,6356999,6422535,6488071,6553607,6619143,6684679,6750215,6815751,6881287,6946823,7012359,7077895,7143431,7208967,7274503,7340039,7405575,7471111,7536647,7602183,7667719,7733255,7798791,7864327,7995400,8060936,8126470,8192006,8257542,8323078,8388614,8454150,8519684,8585222,8650758,8716294,8781830,8847366,8912902,8978438,9043974,9109510,9175046,9240582,9306118,9371654,9437190,9502726,9568262,9633798,9699334,9764870,9830406,9895942,9961478,10027014,10092550,10158086,10223622,10289158,10354694,10420230,10485766,10551302,10616838,10682374,10747910,10813446,10878982,10944518,11010054,11075589,11141126,11206662,11272198,11337734,11403270,11468806,11534342,11599878,11665414,11730950,11796486,11862022,11927558,11993094,12058630,12124166,12189702,12255238,12320774,12386310,12451846,12517382,12582918,12648454,12713990,12779526,12845062,12910598,12976134,13041670,13107206,13172744,13238280,13303820,13369352,13434888,13500424,13565960,13631496,13697032,13762568,13828104,13893644,13959180,14024716,14090252,14155784,14221320,14286856,14352392,14417928,14483464,14549000,14614536,14680072,14745608,14811144,14876680,14942216,15007752,15073287,15138824,15204360,15269896,15335432,15400968,15466504,15532040,15597576,15663112,15728648,15794184,15859720,15925256,15990792,16056328,16121864,16187400,16252936,16318472,16384008,16449544,16515080,16580616,16646152,16711688,16777228,16842760,16908296,16973832,17039368,17104904,17170440,17235976,17301512,17367048,17432581,17498120,17563656,17629192,17694728,17760264,17825800,17891336,17956872,18022408,18087944,18153480,18219016,18284552,18350088,18415624,18481160,18546696,18612232,18677768,18743304,18808840,18874376,18939912,19005448,19070984,19136520,19202056,19267592,19333128,19398664,19464200,19529736,19595272,19660808,19726344,19791880,19857416,19922952,19988488,20054024,20119560,20185096,20250632,20316168,20381704,20447240,20512776,20578312,20643848,20709384,20774920,20840456,20905992,20971528,21037064,21102600,21168136,21233672,21299207,21364744,21430280,21495816,21626886,21692424,21757958,21823494,21889030,21954566,22020102,22085642,22151178,22216714,22282250,22347786,22413322,22478858,22544389,22609925,22675464,22740998,22806534,22872070,71958536,72024072,72089608,74645512,74711048,75038723,75104259,75169795,75235331,75300867,75366403,75431939,75497475,75563011,75628547,75694083,75759619,75825155,75890691,75956227,76021763,76087299,76152835,76218371,76283907,76349443,76414979,76480515,76546051,76611587,76677123,76742659,76808195,76873731,76939267,77004803,77070339,77135875,77201411,77266947,77332483,77398019,77463555,77594628,77660164,77725699,77791235,77856771,77922307,77987843,78053380,78118915,78184451,78249987,78315523,78381059,78446595,78512131,78577667,78643203,78708739,78774275,78839811,78905347,78970883,79036419,79101955,79167491,79233027,79298563,79364099,79429635,79495171,79560707,79626248,79691784,79757321,79822856,79888392,79953928,80019464,80085000,80150536,80216072,80281608,80347145,80412684,80478220,80543756,80609288,80674824,80740362,80805898,80871432,80936968,81002504,81068040,81133576,81199112,81264648,81330190,81395726,81461273,81526792,81592345,81657864,81723400,81788936,81854472,81920009,81985545,82051081,82116618,82182153,82247690,82313225,82378761,82444297,82509833,82575368,82640906,82706450,82771986,82837512,82903049,82968584,83034120,83099656,83165192,83230732,83296273,83361800,83427336,83492872,83558408,83623946,83689482,83755026,83820552,83951626,84017162,84082698,84148234,84213770,84279306,84344842,84410376,84475912,84541448,84606984,84672520,84738056,84803592,84869137,84934664,85000209,85065738,85131274,85196812,85262346,85327884,85393418,85458954,85524488,85590024,85655560,85721098,85786634,85852170,85917704,85983247,86048778,86114324,86179862,86245397,86310933,86376469,86441997,86507530,86573066,86638600,86704137,86769672,86835208,86900744,86966280,87031816,87097352,87162888,87228425,87293962,87359498,87425032,87490568,87556104,87621650,87687180,87752712,87818248,87883786,87949322,88145928,88473608,88539144,88604680,88670216,88735752,88801288,88866824,89063432,151060486,151126022,151191569,151257105,151322641,151388166,151453701,151584773,151650310,151715846,151781382,151846917,151912455,151977991,152043527,152109063,152174599,152240135,152305671,152371207,152436743,152502279,152567815,152633351,152698887,152764423,152829959,152895495,152961031,153026567,153092103,153157639,153223175,153288711,153354247,153419783,153485319,153550855,153616391,153681927,153747463,153812999,153878535,153944071,154009607,154075143,154140679,154206215,154271751,154402833,154468369,154533894,154599430,154664966,154730502,154796038,154861574,154927108,155058185,155123721,155189257,155254793,155320329,155385865,155451401,155516937,155582473,155648009,155713545,155779081,155844617,155910153,155975689,156041225,156106761,156172297,156237833,156303369,156368905,156434441,156499977,156565513,156631049,156696585,156762121,156827657,156893193,156958729,157024265,157089801,157155337,157220873,157286409,157351945,157417481,157483017,157548549,157614090,157679626,157745161,157810697,157876233,157941769,158007305,158072842,158138377,158203913,158269449,158334985,158400521,158466057,158531593,158597129,158662665,158728201,158793737,158859273,158924809,158990345,159055881,159121417,159186953,159252489,159318025,159383561,159449097,159514633,159580169,160628753,161939473,162005013,162070544,162136080,162201616,162267152,162332688,162398224,162463760,162529296,162594837,162660376,162725912,162791448,162856976,162922512,162988050,163053586,163119120,163184656,163250192,163315728,163381264,163446800,163512336,163577878,163643414,163708961,163774479,163971105,164036624,164102160,164167696,164233232,164298769,164364305,164429841,164495378,164560913,164626450,164691985,164757521,164823057,164888593,164954128,165019666,165085210,165150746,165216272,165281809,165347344,165412880,165478416,165543952,165609496,165675033,165740560,165806096,165871632,165937168,166002706,166068242,166133786,166199312,166264837,166330386,166395922,166461458,166526994,166592530,166658066,166723602,166789136,166854672,166920208,166985744,167051280,167116816,167182352,167247897,167313424,167378969,167444498,167510034,167575572,167641106,167706644,167772178,167837714,167903248,167968784,168034320,168099858,168165394,168230930,168296464,168362007,168427538,168493084,168558622,168624157,168689693,168755229,168820757,168886290,168951826,169017360,169082897,169148432,169213968,169279504,169345040,169410576,169476112,169541648,169607185,169672722,169738258,169803792,169869328,169934864,170000410,170065940,170131471,170197008,170262546,170328082,171048966,171180049,171245574,171835398,173342726,173408262,173473798,173539347,173604883,173670419,173735955,173801491,173867027,173932563,173998085,174063621,174260241,174850054,174915590,174981126],"invalidcommandsyntaxexception":[524291,7995395,36110342,63766530,74645507,96075778,96141314,151191553,154402826],"invalidorunknowncommandexception":[589827,8060931,36175878,63766530,74711043,151191553,154468362],"internal_action_id_delimiter":[917505,3145734,150994945],"int":[2097155,2162691,2293763,2555907,3080195,23920643,24707075,24772611,24838150,24903686,25296899,25362435,25427971,25624579,25886723,26214406,26279948,27328515,27590659,27983875,28049411,28573702,28639238,28770310,28835846,29818883,29884419,30998531,31391747,32047107,32243715,32374787,32440329,34144259,34996227,35454979,35717123,35913731,37421059,37748739,39256067,39976966,45875203,47251459,47316995,49152003,49283075,49414147,49545219,59637763,59899907,59965443,60096515,60227587,60293123,61669382,63635459,72155137,89522182,89849860,89915396,89980932,90046468,90570757,90832901,91291652,91422724,91815941,92798981,93192197,93388805,93454341,93782021,93847557,94961669,95354885,95682565,95879173,96862212,97058820,97320965,99090437,99155973,105709573,106561541,108920837,110362629,110493701,110624773,110755845,110952453,112066565,112394245,112984069,113246213,115671045,124649477,126025733,126091269,126222341,127401989,127467525,129236997,129761285,129892357,129957893,130023429,130613253,130678789,130744325,130809861,130875397,130940933,131006469,131137541,131203077,131268613,131334149,131399685,131465221,131530757,131596293,131792901,131989508,133169157,133234693,133300229,133496837,134086660,134479877,134873093,135725061,136183813,136511493,136839173,136904709,136970245,137363461,137560069,137691141,138018821,138084357,138149893,138608645,138739717,139067397,139264005,139657221,139788293,139853829,139919365,139984901,140050437,140115973,140247045,140443653,141754373,141885445,142082053,143785989,143851525,143917061,143982597,144179205,144310277,144441349,144965637,145031173,145948677,146014213,146472965,146604037,146669573,147062789,147128325,147193861,147259397,147324933,147390469,147456005,148176901,148373510,148766726,149225477,149291012,149422085,149487621,150470661,151453697],"integer":[2097153,2162689,2293761,2555905,3080193,23920641,24707073,24772609,24838146,24903682,25296897,25362433,25427969,25624577,25886721,26214402,26279940,27328513,27590657,27983873,28049409,28573698,28639234,28770306,28835842,29818881,29884417,30998529,31391745,32047105,32243713,32374785,32440323,34144257,34996225,35454977,35717121,35913729,37421057,37748737,39256065,39976962,45875202,47251457,47316993,49152001,49283073,49414145,49545217,59637761,59899905,59965441,60096513,60227585,60293121,61669378,63635457,78118913,89522177,89849857,89915393,89980929,90046465,90570753,90832897,91291649,91422721,91815937,92798977,93192193,93388801,93454337,93782017,93847553,94961665,95354881,95682561,95879169,96862209,97058817,97320961,99090433,99155969,105709569,106561538,108920833,110362625,110493697,110624769,110755841,110952449,112066561,112394241,112984065,113246209,115671041,124649473,126025729,126091265,126222337,127401985,127467521,129236993,129761281,129892353,129957889,130023425,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131792897,131989505,133169153,133234689,133300225,133496833,134086657,134479873,134873089,135725057,136183809,136511489,136839169,136904705,136970241,137363457,137560065,137691137,138018817,138084353,138149889,138608641,138739713,139067393,139264001,139657217,139788289,139853825,139919361,139984897,140050433,140115969,140247041,140443649,141754369,141885441,142082049,143785985,143851521,143917057,143982593,144179201,144310273,144441345,144965633,145031169,145948673,146014209,146472961,146604033,146669569,147062785,147128321,147193857,147259393,147324929,147390465,147456001,148176897,148373505,148766721,149225473,149291009,149422081,149487617,150470657,158138369],"int32":[2097153,2162689,2293761,2555905,3080193,5242889,21626883,23920641,24707073,24772609,24838147,24903683,25296897,25362433,25427969,25624578,25886722,26214403,26279943,27328514,27590659,27983873,28049409,28573708,28639236,28770308,28835854,29818882,29884418,30998530,31391746,32047106,32243715,32374786,32440326,34144257,34996226,35454978,35717121,35913730,37421060,37748737,39256066,39976992,45875202,47251458,47316994,49152004,49283075,49414147,49545219,59637762,59899905,59965444,60096517,60227586,60293123,61669380,63635457,64552962,64749569,64880641,65011716,65470465,65601544,65798146,66060289,66191361,66322433,66387969,66453508,66977793,67043329,67108865,67698689,67895298,69730305,70254594,70713345,70778881,70844417,70909953,71303169,71368705,71434241,71499778,89522177,89849857,89915393,89980929,90046465,90570753,90832897,91291649,91422721,91815937,92798977,93192193,93388801,93454337,93782017,93847553,94961665,95354881,95682561,95879169,96862209,97058817,97320961,99090433,99155969,105709569,106561537,108920833,110362625,110493697,110624769,110755841,110952449,112066561,112394241,112984065,113246209,115671041,124649473,126025729,126091265,126222337,127401985,127467521,129236993,129761281,129892353,129957889,130023425,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131792897,131989505,133169153,133234689,133300225,133496833,134086657,134479873,134873089,135725057,136183809,136511489,136839169,136904705,136970241,137363457,137560065,137691137,138018817,138084353,138149889,138608641,138739713,139067393,139264001,139657217,139788289,139853825,139919361,139984897,140050433,140115969,140247041,140443649,141754369,141885441,142082049,143785985,143851521,143917057,143982593,144179201,144310273,144441345,144965633,145031169,145948673,146014209,146472961,146604033,146669569,147062785,147128321,147193857,147259393,147324929,147390465,147456001,148176897,148373505,148766721,149225473,149291009,149422081,149487617,150470657,151650313,151781384,152043522,152436737,152567809,152829953,152895489,152961028,153944065,154075137,154271745,155058177,155385858,158138369,158728194,159252481,159318017,159383553,159449089,171048965],"iformatprovider":[2949125],"instance":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519683,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740995,22806530,22872065,23003137,23068673,23265281,23461889,23527425,23724033,24182785,24248321,28114945,28246017,28573697,28835841,29097985,29229057,29360129,32243713,36372481,36438017,36503553,36700161,36765697,36962305,37158913,37224449,37421057,38600710,39780353,41025537,42008577,42074113,42139649,43057153,43909121,44302337,44433409,44564481,45219841,45481985,45547521,45613057,46923777,46989313,47120385,47841281,48168961,49676289,49741825,50003969,50331649,50397185,50462721,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53542913,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58589185,58654721,58785793,58851329,58916865,58982401,60162049,60227585,60293121,60817409,61079553,61210625,61407233,61472769,61538305,61603841,61734913,61800449,61865985,61997057,62390273,62455809,62652417,62783490,62849026,63176705,63242241,63307777,63373313,63438849,64225281,64356354,64421889,64487426,65601538,65667073,66387969,67174403,67239938,67305474,70189058,71041026,71106562,71499779,71630849,71696386,71761922,71827460,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151060483,151126017,151191555,151257091,151322627,151388162,151453699,151584769,151650306,151715842,151781379,151846914,151912450,151977986,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895490,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402818,154468354,154533892,154599427,154664962,154730499,154796034,154861569,154927107,155058177,155123713,155189249,155254786,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434434,156499970,156565506,156631041,156696577,156762113,156827649,156893185,156958721,157024258,157089793,157155329,157220865,157286401,157351938,157417473,157483009,157548546,157614082,157679618,157745153,157810690,157876225,157941762,158007298,158072834,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597123,158662658,158728193,158793729,158859265,158924802,158990337,159055874,159121409,159186945,159252481,159318017,159383553,159449089,159514626,159580162,160628738,161939458,162004994,162070530,162136066,162201603,162267138,162332674,162398209,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119105,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233217,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085185,165150721,165216257,165281794,165347329,165412865,165478402,165543939,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264833,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968769,168034305,168099842,168165378,168230914,168296450,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869313,169934849,170000386,170065922,170131458,170196994,170262530,170328066,171048964,171180034,171245569,171835394,173342722,173408258,173473794,173539330,173604866,173670402,173735939,173801474,173867010,173932546,173998083,174063618,174260226,174850051,174915590,174981121],"information":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,64028675,64159747,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191554,151257090,151322626,154402818,154468354,160628738,161939458,167772161,168230913,168427521,171180034,172228609,172621825,172752897,174260226],"indicating":[5111809,23789569,89194498,150798337,150863873,151453697,151519236,174915586],"invalid":[5111810,23920642,36175873,74645506,96075778,96141314,151453698,154402818],"interrupted":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,151650308,152043521,154075137],"included":[5242884,24707073,24772609,24838145,24903681,63832067,64552964,77791233,88211457,105054209,147718145,151650308,152043521,152567809,154075137,157810689,171835393],"interrupt":[5242883,22806529,24772609,24838145,24903681,25493505,25559041,25624577,26542081,26607617,26673153,29753345,29818882,29884418,32636929,32833537,32899073,32964609,33161217,33357825,33554433,33751041,35389441,35454978,63045637,63832065,64749571,72482817,73400321,73465857,73531393,73596929,73662465,73728001,74383361,91619329,93913089,94109697,94371841,94437377,94568449,94699521,95551489,151650307,152043521,152436737,153026561,153092097,153157633,153223169,153288705,153354241,154075137,174915585],"int64":[5242888,25559043,25624579,26476547,26542083,26607619,26673155,27131907,27197443,30932995,30998531,32768004,32833539,32899075,32964611,33685507,33751043,62521346,64749570,65142788,65404930,66060290,66584580,66846722,92864514,94175234,94765058,96010242,97714178,112590850,114425858,114556930,114688002,114753538,115212290,115539970,125108226,125501442,132841474,135331842,137494530,137756674,138215426,139395074,141426690,141557762,141623298,142016514,142147586,142278658,142409730,142475266,142606338,142671874,142737410,142802946,142999554,143065090,143130626,143196162,143327234,143392770,143523842,143589378,143654914,148242434,151650312,152436738,153092100,153354242],"interruption":[5242883,26542081,26607617,26673153,32833537,32899073,32964609,65142787,66584579,151650307,153092099],"imappingstrategy":[7929859,23199751,28508167,28573706,35979269,36044803,36241409,36306945,36569089,36634625,37027841,37093377,63766529,65601538,91357190,151781378,154337287,154533892,154599428,154730500],"interface":[7929857,21561345,35979265,36044801,45744130,45809666,45875202,46006278,46137346,46202882,46268418,46333954,46465030,46727170,59047937,59113473,63766534,63897601,64028676,64094211,69730307,69861380,70057985,78118914,78184449,78249986,78315521,78446594,79167489,79757314,80150531,80412674,80478210,80543746,83230722,85983236,86048769,86114307,86179843,86245379,86310916,86376451,86441988,88014849,106364934,106823686,107151366,107413510,108003334,109969409,111083521,111149057,112525317,112656386,137822209,138280961,139132929,139460609,146407425,146472961,151060481,151453697,151584769,151715841,154337285,154533889,154599426,154730498,155320321,155713537,157548545,157810689,158138373,158203905,158269446,158334977,158466051,159186945,162004994,162070529,162398211,162660354,162725890,162791426,165609474,166264833,168361988,168427521,168493059,168558595,168624131,168689668,168755203,168820740,170721286,171048961,171245569,173342721,173473793,173998081],"including":[8454145,37486593,64225281,83230721,129630209,154861569,165609473,173604865],"input":[8454145,25559041,25624577,37486593,63832067,152436737,152829953,152895489,154861569],"ioexception":[8454146,37486593,37552129,63766529,151322625,154861570],"info":[8519684,38338568,38404104,38469641,38535177,67502085,154927108,154992641],"isvisible":[8519681,38666248,154927105],"indicates":[11141121,11206657,44236801,44367873,64094211,64225281,156827649,157614082,157679618,173867009],"index":[12713985,48758785,70582273,159186945],"incremented":[12713985,48758785,70582273,159186945],"iresponsehandler":[21561347,59047939,59113474,60882945,61014017,61276161,61341697,64028673,88014851,146407427,146472963,148307969,148373505,148701185,148766721,170721286,173342724,173473796],"isconnected":[21626881,59506693,74973185,96731141,154861569,171048961],"identifier":[21626882,59572225,59637761,71303170,83230722,129695745,129826817,165609474,171048962],"important":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,64159745,170131457,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"internally":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"issuccess":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62128134,88997889,150405126,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617],"internal":[22740993,62914561,80740353,80805889,82116609,82247681,82640897,85065729,85131265,85262337,85393409,85458945,85852161,86048769,86507521,86573057,86835201,87293953,87359489,87883777,87949313,89128961,141295617,150732801,162988033,163053569,164495361,164626433,165019649,167444481,167510017,167641089,167772161,167837697,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170262529,170328065,174850050],"interrupts":[22806529,63045633,174915585],"initializes":[23003137,23068673,23265281,23461889,23527425,23724033,24182785,24248321,28114945,28246017,28573697,28835841,29097985,29229057,29360129,32243713,36372481,36438017,36503553,36700161,36765697,36962305,37158913,37224449,37421057,39780353,41025537,42008577,42074113,42139649,43057153,43909121,44302337,44433409,44564481,45219841,45481985,45547521,45613057,46923777,46989313,47120385,47841281,48168961,49676289,49741825,50003969,50331649,50397185,50462721,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53542913,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56426497,56492033,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58589185,58654721,58785793,58851329,58916865,58982401,60817409,61472769,61538305,61603841,61734913,61800449,61865985,61997057,62390273,62455809,62652417,63242241,63307777,63373313,63438849,64356354,64421889,64487426,65601538,65667073,66387969,67174403,67239938,67305474,70189058,71041026,71106562,71630849,71696386,71827460,151060482,151191553,151257089,151322625,151388161,151453698,151650305,151715841,151781378,151846913,151912449,151977985,152895489,154533891,154599426,154664961,154730498,154796033,155254785,155910145,156434433,156499969,156565505,157024257,157351937,157548545,157614081,157679617,157810689,157941761,158007297,158072833,158597122,158662657,158924801,159055873,159514625,159580161,162004993,162070529,162136065,162201602,162267137,162332673,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165281793,165478401,165543938,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167837697,167903233,168099841,168165377,168230913,168296449,168427521,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,170000385,170065921,170131457,170196993,170262529,170328065,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174915588],"insensitive":[23789569],"include":[24707073,24772609,24838145,24903681,25821185,25886721,26214401,26279937,29687809,29753345,29818881,29884417,30867457,30932993,30998529,31326209,31391745,32374785,32440321,33882113,35323905,35389441,35454977,63832065,72876033,74383361,92733441,95617025,152436737,153419777,154075137],"ipaddress":[28573702,28770309,28835848,37421064,85393409,90505223,90767367,96796678,96993286,135659525,167772161],"image":[33882118,63832068,73793538,94830599,153419782],"indefinitely":[35848193,63832065,67108865,154271746],"implements":[36241409,36306945,36569089,36634625,37027841,37093377,60882945,61014017,61276161,61341697,64094209,148307969,148373505,148701185,148766721,154533889,154599425,154730497,157548545,157810689,162070529,166264833,173342721,173473793,173998081],"intended":[42205185,42270721,68812802,156631042],"instead":[43712513,69402625,86114306,138805249,138870785,157286401,168493058],"iface":[45744133,45809669,45875205,46137349,46202885,46268421,46333957,46727173],"internalactionid":[59244550,80740353,80805889,82116609,82247681,82640897,85065729,85131265,85262337,85393409,85458945,85852161,86048769,86507521,86573057,86835201,87293953,87359489,87883777,87949313,141295621,162988033,163053569,164495361,164626433,165019649,167444481,167510017,167641089,167772161,167837697,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170262529,170328065],"incoming":[60227585,60293121],"invoked":[63373313,63438849],"implementation":[63766532,64028673,151060481,151453697,151584769,151715841,171245569],"implement":[63766529,63897601,154599425,154730497],"interfaces":[63766529,64028673],"infinite":[63832066,152829953,152895489],"images":[63832065,153419777],"incorrect":[64028673,160628737],"implemention":[64028673,171048961],"instantiated":[64028674,161218561,161349633],"iax":[64028674,64159746,85524484,86638593,136249345,136380417,136445953,136511489,140640257,167903237,169017346,172359681,173211649],"implemented":[64094218,64159788,155648001,157614081,157679617,157745153,158138369,158269441,158466049,158662657,158793729,159121409,162463745,162529281,162594817,162856961,162922497,163184641,163250177,164102145,165216257,165347329,165478401,165609473,165675009,165740545,165806081,166002689,166068225,166199297,166395905,166461441,166592513,166789121,167182337,167247873,167313409,167378945,167510017,167575553,167706625,167772161,167903233,168230913,168361985,168427521,168493057,168689665,168886273,169017345,169082881,169148417,169607169,169869313,170065921,170131457],"implementations":[64094209,157548545],"individual":[64159745,163774465],"islink":[64159745,163774465],"isunlink":[64159745,163774465],"installed":[64159745,165609473],"installing":[64159745,165609473],"innerexception":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"immediate":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"initial":[74973185,96665606,154861569],"incall":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,112459781,138805253,139329541,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"isexternal":[81133569,81199105,116260870,120979462,163381249,163446785],"iax2":[81854465,85524482,86638597,126287873,136314881,136380417,140574721,140640257,140705794,140836865,164233217,167903234,169017349],"iax2callnolocal":[81854465,126418950,164233217],"iax2callnoremote":[81854465,126484486,164233217],"iax2peer":[81854465,126550022,164233217],"ipport":[85393409,135725062,167772161],"iajitter":[86900737,86966273,141623302,142344198,169279489,169345025],"interval":[88080386,147193857,147259393,171048962],"identifer":[88080385,147456001,171048961],"indicats":[88342529,148504577,173408257],"isalive":[89194497,150798341,174915585],"isbackground":[89194497,150863877,174915585],"ilist":[89456646],"idictionary":[90898438],"inheritance":[150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548546,157614082,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201602,162267138,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174260225,174850049,174915585,174981121],"inherits":[151191553,151257089,151322625,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,173539329,173604865,173670401,173735937,173801473,173867009,173932545,174260225],"inherit":[151191553,151257089,151322625,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,173539329,173604865,173670401,173735937,173801473,173867009,173932545,174260225],"iactionvariable":[157810692,162070532],"invite":[163905537],"iparsesupport":[166264836,173998084]} \ No newline at end of file diff --git a/docs/fti/FTI_106.json b/docs/fti/FTI_106.json index d8696db..3efc1a7 100644 --- a/docs/fti/FTI_106.json +++ b/docs/fti/FTI_106.json @@ -1 +1 @@ -{"jetbrains":[196609],"joins":[786435,2424833,3735553,4849665,69468162,170459137,172163073,175046659],"join":[786435,2424833,3473414,175046659],"joines":[786433,3473409,69468161,170065921,175046657],"just":[786433,5963777,51118081,51183617,51249153,69074945,69468163,83427329,111607809,155713537,162201601,167837697,173998081,174129153,175046657],"joineventhandler":[3473415,69337089,174784518],"joinevent":[3473409,22609923,59703303,69468163,88932355,136118274,136183810,136249346,170065930,172359682,174784517],"jabberevent":[22478851,59572231,69468161,88801283,134938627,135004163,169934858,170328065],"jitterbufstatsevent":[22544387,59637767,69468161,88866819,135069699,135135235,135200771,135266307,135331843,135397379,135462915,135528451,135593987,135659523,135725059,135790595,135856131,135921667,135987203,136052739,170000394,170328065],"job":[28246017,68812801,178913281],"january":[31850497,31916033,31981569,32047105,32505857,32571393,38141953,38207489,38273025,38338561,39059457,39124993,69140481,71892993,78774273,79036417,99418113,100007937,157155330,157417474],"joined":[50200577,83034113,88932355,110231553,136118273,136183809,136249345,161808385,170065923],"jobs":[68943873,178913281],"jon":[69468161,174129153],"jitter":[92274689,92340225,146997254,147390470,173408257,173473793]} \ No newline at end of file +{"jetbrains":[196609],"jabberevent":[17039363,54198279,64159745,83492867,130482179,130547715,165871626,166264833],"jitterbufstatsevent":[17104899,54263815,64159745,83558403,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,165937162,166264833],"joinevent":[17170435,54329351,64159747,83623939,131661826,131727362,131792898,166002698,168296450,170786821],"job":[22872065,63504385,174981121],"january":[26476545,26542081,26607617,26673153,27131905,27197441,32768001,32833537,32899073,32964609,33685505,33751041,63832065,66584577,73465857,73728001,94175233,94765057,153092098,153354242],"joined":[44826625,77725697,83623939,104988673,131661825,131727361,131792897,157745153,166002691],"just":[45744129,45809665,45875201,63766529,64028673,64159747,78118913,106364929,151650305,158138369,163774465,170000385,170131457,174456833],"jobs":[63635457,174981121],"joins":[64028675,64159746,161218561,166395905,168099841,171311105,172490753],"join":[64028674,161218561,170786817],"joineventhandler":[64028673,170786821],"joines":[64028673,64159745,166002689,170786817],"jon":[64159745,170131457],"jan":[80150529,86114305,86179841,86245377,86310913,86376449,112590849,162398209,168493057,168558593,168624129,168689665,168755201],"jitter":[87031809,87097345,142934022,143327238,169410561,169476097]} \ No newline at end of file diff --git a/docs/fti/FTI_107.json b/docs/fti/FTI_107.json index 2b3da7c..050568d 100644 --- a/docs/fti/FTI_107.json +++ b/docs/fti/FTI_107.json @@ -1 +1 @@ -{"key":[10682372,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,30343175,30474241,30539784,30605319,35586049,35651586,35782663,35913735,47775752,47906824,48103432,48234504,49152005,49217541,50331654,50462726,55443462,55574534,59965448,64028679,65863686,65994758,67371018,67502088,69074945,69140483,69206017,69402626,69926913,74186753,74252289,74317825,74383361,77266945,77332481,77398017,77922306,77987842,78053379,79953921,80019457,81985538,82051074,82116611,82182147,82575364,82837506,82903042,82968578,83361794,84934657,85000193,87949314,93388801,93716482,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94306305,97386497,97452033,97583110,97648641,97714182,107479046,107675654,107806722,107872262,108003329,108068870,109051905,109182982,109248513,109707266,132251654,152961026,153812993,155254785,155320321,155385857,155713540,156237827,156303363,156368900,158466049,158531585,158662657,158793729,160759811,160825347,160890885,160956421,161349636,161611778,161677314,161742850,162136066,164691969,166002689,169082882,175177729,177471493,177537028,177602564,177668100,177733636,177799172,177864708,177930244,178192385],"kind":[10682370,31588353,31653889,48365569,49217537,69140481,69402625,70320130,82247681,82575361,86310913,92471297,108265473,109117441,120258561,148439041,155713538,157024257,161021954,161349633,167313409,173604865],"keytree":[30474245,35454984,35651589,69140481,71172097,77856771,77922305,97255425,97320966,97452037,156172293,156237825],"keys":[30474241,84475906,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,115212290,136511489,153812993,163250178,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"know":[69402625,69533697,86114305,119799809,159186945,167116801,177668097],"keepalive":[93323265,150929413,175046657],"keepaliveafterauthenticationfailure":[93323266,150929409,150994949,175046658]} \ No newline at end of file +{"key":[5242884,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,24969223,25100289,25165832,25231367,30212097,30277634,30408711,30539783,42401800,42532872,42729480,42860552,43778053,43843589,44957702,45088774,50069510,50200582,54591496,58720263,60555270,60686342,62062602,62193672,63766529,63832067,63897601,64094210,64618497,68878337,68943873,69009409,69074945,71958529,72024065,72089601,72613890,72679426,72744963,74645505,74711041,76677122,76742658,76808195,76873731,77266948,77529090,77594626,77660162,78053378,79626241,79691777,82640898,88145921,88473602,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,92143617,92209153,92340230,92405761,92471302,102236166,102432774,102563842,102629382,102760449,102825990,103809025,103940102,104005633,104464386,127795206,148897794,149749761,151191553,151257089,151322625,151650308,152174595,152240131,152305668,154402817,154468353,154599425,154730497,156696579,156762115,156827653,156893189,157286404,157548546,157614082,157679618,158072834,160628737,161939457,165019650,171180033,173539333,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174260225],"kind":[5242882,26214401,26279937,42991617,43843585,63832065,64094209,65011714,76939265,77266945,81002497,87228417,103022593,103874561,115802113,144375809,151650306,152961025,156958722,157286401,163250177,169607169],"keytree":[25100293,30081032,30277637,63832065,65863681,72548355,72613889,92012545,92078086,92209157,152109061,152174593],"keys":[25100289,79167490,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,109969410,132055041,149749761,159186946,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"know":[64094209,64225281,80805889,115343361,155123713,163053569,173735937],"keepalive":[88080385,146866181,171048961],"keepaliveafterauthenticationfailure":[88080386,146866177,146931717,171048962]} \ No newline at end of file diff --git a/docs/fti/FTI_108.json b/docs/fti/FTI_108.json index c6781bb..9b18058 100644 --- a/docs/fti/FTI_108.json +++ b/docs/fti/FTI_108.json @@ -1 +1 @@ -{"link":[1,786436,3604487,5963777,69468165,77266945,77332481,77398017,79953921,80019457,84934657,85000193,86835201,89063425,92602369,92864513,93388801,94306305,128319489,148963333,155254785,155320321,155385857,158466049,158531585,164691969,166002689,167837700,170196994,173735937,173998082,175046660,175177729,178192385],"library":[65537,131073,196610,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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281],"life":[131073],"language":[196609,77529090,86573057,86769665,86900737,95682566,128188422,155648002,167575553,167772161,168034305],"logged":[786438,983041,1048578,1376257,1441794,69402626,69468166,85524481,85590018,85917697,85983233,86114311,117768193,117899266,118095873,119275521,119406593,119603202,119668738,119799811,159186945,159252481,166526978,166592516,166920194,166985731,167116807,175046662],"listening":[786433,1310721,69468161,166854657,175046657],"leaves":[786440,1769473,2359297,2490369,3014657,3538945,3801089,3932161,4915201,69468166,167247873,169410561,170131457,170524673,170852353,172228609,175046664],"leave":[786434,3538950,82444289,108724225,161218561,175046658],"linked":[786433,3604481,69468161,69533697,86835201,89063425,92602369,92864513,128319489,148963330,167837697,170196994,173735937,173998081,175046657,177930241],"logchannel":[786434,3670022,175046658],"logging":[786433,3670017,13959169,43974657,69009409,69402626,69468161,89128963,136314881,136380417,136445953,158990338,159186945,159645697,170262532,175046657],"longer":[786433,5898241,28246017,68878337,69402625,69468161,159252481,173867009,175046657,178913281],"leaveeventhandler":[3538951,69337089,174850054],"leaveevent":[3538945,22675459,59768839,69468163,88997891,170131466,172359682,174850053],"linkeventhandler":[3604487,69337089,174915590],"linkevent":[3604481,22740995,59834375,69468163,89063427,167837698,170197002,174915589],"logchanneleventhandler":[3670023,69337089,174981126],"logchannelevent":[3670017,22806531,59899911,69468162,89128963,136314882,136380418,136445954,170262538,170328065,174981125],"line_separator":[6356993,8650757,155058177],"line":[6356993,8650753,13893634,27656194,42926083,54132737,66977794,69402627,69533699,92471297,93061121,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,148242438,150011910,154075137,155058177,158924802,159776770,163250177,173604865,174194689,177471489,177537027,177602561,177668100,177733633,177799169,177864705,177930241],"logic":[6750209,9895937,175046657],"literal":[7471105,7536641,7602177,7667713,7733249,7798785,7995393,8454145,8519681,8650753,9371649,9437185,9502721,9568257,9633793,9699329],"list":[10027013,29622279,29753349,29818885,29949957,41811975,42205189,42270728,69206017,69402627,69664769,69730305,69795842,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482818,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,93782017,152633350,153026568,155516929,158597122,159776769,162004993,162988033,177537025],"listner":[10682372,30081025,30146561,30212097,30277633,69140481,69861380,155713540,156106753],"lack":[10682370,31588353,31653890,37814273,69140481,70320130,155713538,157024257],"label":[10682369,33030151,40435718,70778881,79560707,100532230,100597761,155713537,158007299],"load":[13369345,13565953,13631489,13762561,41418758,41680904,42008584,42467336,80150529,101580801,158400513,158597121,158662657,158728193,158793729],"loadmappings":[13697025,42205192,158728193],"logger":[13959173,43188228,43253764,43319301,43384837,43450372,43515908,43581445,43646981,43712516,43778052,43843589,43909125,43974664,44040205,44105736,44171272,44236804,44302340,44367877,44433413,44498949,69009410,69468161,72679426,72744962,72810498,72876036,72941570,158990346,159055874,170262529],"log":[13959169,27000833,43974657,44761089,44826625,44957697,45023233,48365569,49217537,64946177,69533697,76611585,80412673,80478209,82247681,82575361,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716482,93782017,93847553,93913089,93978625,94044161,94109697,94175233,102760449,103088131,108265473,109117441,136708097,152961025,154009601,158990337,159186945,159252481,161021953,161349633,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,177471491,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"level":[13959171,33357830,41091078,44040193,44105730,44171266,72876034,79822850,91750402,101122054,144310274,144375810,158269442,158990339,172883970],"loginaction":[16252931,49020935,49086471,49152007,49217543,64880641,69402626,74711050,82575363,108986370,109051906,109117442,109182978,109248514,109314050,152961025,159645697,161349648,161611777,177471489],"logoffaction":[16318467,27000833,49283078,65011713,69402626,82640899,109379586,161415178,161611777,175046657],"login":[27000836,45744129,49086467,49152001,49217537,64880647,64946184,65536002,65601538,69337089,69402627,69468161,73400321,74711045,76611589,82575362,93323265,108986369,109248513,150929409,159645697,161349641,161939457,164691969,168951809,175046661],"logs":[27000833,44761089,44826625,44957697,45023233,64880641,73072642,73138178,76611585,159186946,159252482,175046657],"logoff":[27000833,65011717,80478209,82640897,85590017,93323265,103153665,109379585,118095874,150929409,159252481,161415169,166592513,175046658],"lower":[27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,67371010,91750401,144506881,172883969,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"lookup":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371010,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"lines":[27656193,29622278,29949953,66977799,69533697,77463553,91881473,93782017,94699526,144703489,153026561,155516929,173015041,177537026,177668097],"long":[30932996,30998532,31850500,31916036,31981572,32047108,32505860,32571396,36306948,36372484,38141956,38207492,38273028,38338564,39059460,39124996,67829764,90832897,93323265,98107400,99418120,100007944,101253128,102957064,118882312,119013384,119144456,119209992,119668744,119996424,129564680,129957896,137297928,139788296,140967937,141950984,142213128,142671880,145489928,145621000,145686536,146079752,146210824,146341896,146472968,146538504,146669576,146735112,146800648,146866184,147062792,147128328,147193864,147259400,147390472,147456008,147587080,147652616,147718152,151519233,152305672,171966465,175046657],"ludicrous":[30932993,30998529,36306945,36372481,78184449,98107393,156499969],"listen":[34013185,34144258,77660161,96534529,155844609],"let":[34209797],"loggin":[44498945,158990337],"logfactory":[44498945,158990337],"logout":[45023233],"lists":[46268417,69402626,159907842,159973377],"locks":[46465025,46530561,73662466,160038914],"local":[48824321,74579969,82444289,88539137,108724225,134152193,161218562,169672705],"lot":[50724865,69402625,83165185,111280129,161939458],"listens":[65536001,65601537],"labels":[69140481,158007297],"lets":[69402625,159383553],"like":[69402626,77463553,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94568449,154075137,155516929,163250178,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"listed":[69402625,163577857],"lost":[69468161,93323266,150798337,150929409,169345025,175046658],"links":[69468161,173211649],"lazily":[69533697,177668097],"looking":[69533697,177930241],"lastreply":[77201409,94502917,155123713],"localaddress":[77529089,80281601,88473601,95748102,102039558,133824518,155648001,158924801,169607169],"localport":[77529089,80281601,95813638,102105094,155648001,158924801],"loaded":[80150529,101580801,158728193],"location":[85458945,91291649,91357185,91422721,91488257,91553794,91619329,91684865,117637125,142737413,143785985,166461441,172425217,172490753,172556289,172621825,172687362,172752897,172818433],"loginchan":[85524481,85590017,85917697,117833734,117964806,119341062,166526977,166592513,166920193],"logintime":[85590017,85983233,118030342,119472134,166592513,166985729],"loggedinchan":[86114305,119603205,167116801],"loggedintime":[86114305,119668741,167116801],"loopback":[86310913,93192193,120258561,150274049,167313409,174325761],"lastapplication":[87031809,130088966,168165377],"lastdata":[87031809,130154502,168165377],"locked":[87621633,131792902,168755201],"localstationid":[88539137,134152197,169672705],"localdropped":[88866817,135069702,170000385],"localjbdelay":[88866817,135135238,170000385],"localjitter":[88866817,135200774,170000385],"locallosspercent":[88866817,135266310,170000385],"localooo":[88866817,135331846,170000385],"localreceived":[88866817,135397382,170000385],"localtotallost":[88866817,135462918,170000385],"lagged":[90701825,90832898,140443649,140902401,140967937,171835393,171966466],"listitems":[90767361,92405761,140640261,147980294,171900929,173539329],"lastcall":[91291649,91357185,91488257,91684865,142213125,142671877,143458305,172425217,172490753,172621825,172818433],"lastsr":[92143617,145752070,173277185],"lostpackets":[92274689,92340225,147062790,147456006,173408257,173473793],"listcontexts":[92405761,147849222,173539329],"listextensions":[92405761,147914758,173539329],"listpriorities":[92405761,148045830,173539329],"localhost":[93323265,150863873,175046657],"likely":[155582465]} \ No newline at end of file +{"link":[1,64028675,64159749,71958529,72024065,72089601,74645505,74711041,79626241,79691777,81526785,83755009,87359489,87621633,88145921,89063425,123863041,144900101,151191553,151257089,151322625,154402817,154468353,160628737,161939457,163774468,166133762,169738241,170000386,170917890,171180033,174260225,174456833],"library":[65537,131073,196610,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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"life":[131073],"language":[196609,72220674,81264641,81461249,81592321,90439686,123731974,151584770,163512321,163708929,163971073],"line_separator":[917505,3211269,150994945],"line":[917505,3211265,8454146,22282242,37552131,48758785,61669378,64094211,64225283,87228417,87818241,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,144179206,145948678,150011905,150994945,154861570,155713538,159186945,169607169,170196993,173539329,173604867,173670401,173735940,173801473,173867009,173932545,173998081],"logic":[1310721,4456449,171048961],"literal":[2031617,2097153,2162689,2228225,2293761,2359297,2555905,3014657,3080193,3211265,3932161,3997697,4063233,4128769,4194305,4259841],"list":[4587525,24248327,24379397,24444933,24576005,36438023,36831237,36896776,63897601,64094211,64356353,64421889,64487426,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174402,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,88539137,148570118,148963336,151453697,154533890,155713537,157941761,158924801,173604865],"listner":[5242884,24707073,24772609,24838145,24903681,63832065,64552964,151650308,152043521],"lack":[5242882,26214401,26279938,32440321,63832065,65011714,151650306,152961025],"label":[5242881,27656199,35061766,65470465,74252291,95289350,95354881,151650305,153944067],"load":[7929857,8126465,8192001,8323073,36044806,36306952,36634632,37093384,74842113,96337921,154337281,154533889,154599425,154664961,154730497],"loadmappings":[8257537,36831240,154664961],"logger":[8519685,37814276,37879812,37945349,38010885,38076420,38141956,38207493,38273029,38338564,38404100,38469637,38535173,38600712,38666253,38731784,38797320,38862852,38928388,38993925,39059461,39124997,63700994,64159745,67371010,67436546,67502082,67567620,67633154,154927114,154992642,166199297],"log":[8519681,21626881,38600705,39387137,39452673,39583745,39649281,42991617,43843585,59637761,64225281,71303169,75104257,75169793,76939265,77266945,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473602,88539137,88604673,88670209,88735745,88801281,88866817,88932353,97517569,97845251,103022593,103874561,132251649,148897793,149946369,154927105,155123713,155189249,156958721,157286401,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,173539331,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"logging":[8519681,38600705,63700993,64028673,64094210,64159745,83820547,131858433,131923969,131989505,154927106,155123713,155582465,166199300,170983425],"level":[8519683,27983878,35717126,38666241,38731778,38797314,67567618,74514434,86507522,95879174,140247042,140312578,154206210,154927107,168886274],"loginaction":[10813443,43646983,43712519,43778055,43843591,59572225,64094210,69402634,77266947,103743490,103809026,103874562,103940098,104005634,104071170,148897793,155582465,157286416,157548545,173539329],"logoffaction":[10878979,21626881,43909126,59703297,64094210,77332483,104136706,157351946,157548545,171048961],"leaveevent":[17235971,54394887,64159747,83689475,166068234,168296450,170852357],"linkevent":[17301507,54460423,64159747,83755011,163774466,166133770,170917893],"logchannelevent":[17367043,54525959,64159746,83820547,131858434,131923970,131989506,166199306,166264833,170983429],"login":[21626884,40370177,43712515,43778049,43843585,59572231,59637768,60227586,60293122,64028673,64094211,64159745,68091905,69402629,71303173,77266946,88080385,103743489,104005633,146866177,155582465,157286409,157876225,160628737,164888577,171048965],"logs":[21626881,39387137,39452673,39583745,39649281,59572225,67764226,67829762,71303169,155123714,155189250,171048961],"logoff":[21626881,59703301,75169793,77332481,80281601,88080385,97910785,104136705,113639426,146866177,155189249,157351937,162529281,171048962],"lower":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,62062594,86507521,140443649,168886273,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"lookup":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062594,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"lines":[22282241,24248326,24576001,61669383,64225281,72155137,86638593,88539137,89456646,140640257,148963329,151453697,169017345,173604866,173735937],"longer":[22872065,63569921,64028673,64094209,64159745,155189249,169869313,174391297,174981121],"long":[25559044,25624580,26476548,26542084,26607620,26673156,27131908,27197444,30932996,30998532,32768004,32833540,32899076,32964612,33685508,33751044,62521348,85524481,88080385,92864520,94175240,94765064,96010248,97714184,112590856,114425864,114556936,114688008,114753544,115212296,115539976,125108232,125501448,132841480,135331848,136511489,137494536,137756680,138215432,139395080,141426696,141557768,141623304,142016520,142147592,142278664,142409736,142475272,142606344,142671880,142737416,142802952,142999560,143065096,143130632,143196168,143327240,143392776,143523848,143589384,143654920,147456001,148242440,167903233,171048961],"ludicrous":[25559041,25624577,30932993,30998529,72876033,92864513,152436737],"listen":[28639233,28770306,72351745,91291649,151781377],"let":[28835845],"loggin":[39124993,154927105],"logfactory":[39124993,154927105],"logout":[39649281],"lists":[40894465,64094210,155844610,155910145],"locks":[41091073,41156609,68354050,155975682],"local":[43450369,69271553,77135873,83230721,103481345,129695745,157155330,165609473],"lot":[45350913,64094209,77856769,106037249,157876226],"listens":[60227585,60293121],"labels":[63832065,153944065],"logged":[64028678,64094210,64159750,80216065,80281602,80609281,80674817,80805895,113311745,113442818,113639425,114819073,114950145,115146754,115212290,115343363,155123713,155189249,159645697,159711234,160038913,160104450,162463746,162529284,162856962,162922499,163053575],"listening":[64028673,64159745,159973377,162791425],"leaves":[64028680,64159750,160366593,161153025,161284097,161808385,163184641,165347329,166068225,166461441,166789121,168165377,170852353,171376641,171507713,172556289],"leaveeventhandler":[64028673,170852357],"leave":[64028673,77135873,103481345,157155329,170852353],"linkeventhandler":[64028673,170917893],"linked":[64028673,64159745,64225281,81526785,83755009,87359489,87621633,123863041,144900098,163774465,166133762,169738241,170000385,170917889,173998081],"logchanneleventhandler":[64028673,170983429],"logchannel":[64028673,170983425],"lets":[64094209,155320321],"like":[64094210,72155137,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89325569,150011905,151453697,159186946,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"listed":[64094209,159514625],"lost":[64159745,88080386,146735105,146866177,165281793,171048962],"links":[64159745,169213953],"lazily":[64225281,173735937],"looking":[64225281,173998081],"lastreply":[71892993,89260037,151060481],"localaddress":[72220673,74973185,83165185,90505222,96796678,129368070,151584769,154861569,165543937],"localport":[72220673,74973185,90570758,96862214,151584769,154861569],"loaded":[74842113,96337921,154664961],"lastcall":[80150530,85983234,86048769,86114305,86179842,86245378,86310914,86376450,86441986,112459777,112590853,137756677,138215429,139329537,139395077,162398210,168361986,168427521,168493057,168558594,168624130,168689666,168755202,168820738],"location":[80150531,85983235,86048769,86114307,86179843,86245380,86310915,86376451,86441987,112525313,112656389,113180673,138280965,139067393,139722753,162398211,168361987,168427521,168493059,168558595,168624132,168689667,168755203,168820739],"loginchan":[80216065,80281601,80609281,113377286,113508358,114884614,162463745,162529281,162856961],"logintime":[80281601,80674817,113573894,115015686,162529281,162922497],"loggedinchan":[80805889,115146757,163053569],"loggedintime":[80805889,115212293,163053569],"loopback":[81002497,87949313,115802113,146210817,163250177,170328065],"lastapplication":[81723393,125632518,164102145],"lastdata":[81723393,125698054,164102145],"locked":[82313217,127336454,164691969],"localstationid":[83230721,129695749,165609473],"localdropped":[83558401,130613254,165937153],"localjbdelay":[83558401,130678790,165937153],"localjitter":[83558401,130744326,165937153],"locallosspercent":[83558401,130809862,165937153],"localooo":[83558401,130875398,165937153],"localreceived":[83558401,130940934,165937153],"localtotallost":[83558401,131006470,165937153],"lagged":[85393409,85524482,135987201,136445953,136511489,167772161,167903234],"listitems":[85458945,87162881,136183813,143917062,167837697,169541633],"lastsr":[86900737,141688838,169279489],"lostpackets":[87031809,87097345,142999558,143392774,169410561,169476097],"listcontexts":[87162881,143785990,169541633],"listextensions":[87162881,143851526,169541633],"listpriorities":[87162881,143982598,169541633],"localhost":[88080385,146800641,171048961],"likely":[151519233]} \ No newline at end of file diff --git a/docs/fti/FTI_109.json b/docs/fti/FTI_109.json index a2b6c4a..d2cec71 100644 --- a/docs/fti/FTI_109.json +++ b/docs/fti/FTI_109.json @@ -1 +1 @@ -{"members":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,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,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,51249153,51970054,69402625,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427330,83492865,83558401,83623937,83689474,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291650,91357186,91422721,91488257,91553793,91619329,91684866,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,111804417,112918534,142475265,143065089,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201602,162267137,162332673,162398209,162463746,162529281,162594817,162660353,162725890,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164560897,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425218,172490754,172556289,172621825,172687361,172752897,172818434,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174718977,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"manager":[655361,720897,786433,851969,917505,983043,1048579,1114115,1179651,1245187,1310723,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835012,1900548,1966084,2031620,2097156,2162692,2228228,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752516,2818051,2883587,2949123,3014659,3080196,3145731,3211268,3276803,3342339,3407875,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456451,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767172,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,9109507,9175042,9240578,9306114,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895938,9961475,10027011,10092547,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,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,27000835,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088772,45154306,45219844,45285378,45350928,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137348,46202884,46268419,46333956,46399490,46465026,46530563,46596098,46661636,46727170,46792708,46858242,46923779,46989314,47054851,47120386,47185923,47251458,47316996,47382530,47448066,47513602,47579138,47644675,47710210,47775746,47841282,47906818,47972356,48037890,48103426,48168962,48234498,48300034,48365571,48431106,48496644,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086469,49152003,49217539,49283074,49348610,49414146,49479682,49545218,49610756,49676290,49741828,49807362,49872900,49938434,50003970,50069506,50135042,50200578,50266116,50331652,50397187,50462724,50528259,50593794,50659333,50724866,50790404,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380231,51445762,51511298,51576834,51642370,51707906,51773442,51838981,51904514,51970054,52035586,52101122,52166658,52232195,52297730,52363267,52428804,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149700,53215234,53280772,53346306,53411843,53477380,53542914,53608450,53673987,53739524,53805059,53870596,53936133,54001670,54067207,54132738,54198274,54263812,54329349,54394885,54460418,54525956,54591490,54657027,54722562,54788099,54853634,54919171,54984708,55050242,55115778,55181314,55246850,55312387,55377925,55443460,55508995,55574532,55640067,55705605,55771141,55836674,55902213,55967749,56033285,56098821,56164357,56229893,56295429,56360965,56426501,56492037,56557573,56623109,56688645,56754181,56819717,56885253,56950789,57016325,57081861,57147397,57212933,57278469,57344005,57409541,57475074,57540613,57606149,57671685,57737221,57802757,57868293,57933829,57999365,58064901,58130437,58195973,58261509,58327045,58392581,58458117,58523653,58589189,58654725,58720261,58785797,58851333,58916869,58982405,59047941,59113477,59179010,59244549,59310085,59375621,59441157,59506693,59572229,59637765,59703301,59768837,59834373,59899909,59965442,60030978,60096514,60162050,60227587,60293125,60358661,60424197,60489733,60555269,60620805,60686341,60751877,60817413,60882949,60948485,61014021,61079557,61145093,61210629,61276165,61341701,61407237,61472773,61538309,61603845,61669381,61734917,61800453,61865989,61931525,61997061,62062597,62128133,62193669,62259205,62324741,62390277,62455813,62521349,62586885,62652421,62717957,62783493,62849029,62914565,62980101,63045637,63111173,63176709,63242245,63307781,63373317,63438853,63504389,63569925,63635461,63700997,63766533,63832069,63897605,63963141,64028678,64094213,64159749,64225285,64290821,64356355,64421891,64487433,64552971,64618500,64684036,64749572,64815106,64880645,64946179,65011714,65077251,65142791,65208336,65273863,65339401,65404937,65470466,65536003,65601540,65667075,65732612,65798149,65863684,65929219,65994756,66060291,66125826,66191363,66256903,66322439,66387981,66453507,66519042,66584579,66650119,66715655,66781186,66846722,66912258,66977796,67043330,67108866,67174402,67239938,67305475,67371010,67436547,67502082,67567618,67633156,67698690,67764227,67829763,67895300,67960834,68026370,69337091,69402630,69468165,69533698,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448898,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611587,76677121,76742657,76808193,76873729,76939265,77004801,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575363,82640897,82706433,82771969,82837506,82903042,82968578,83034113,83099649,83165185,83230721,83296257,83361794,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475906,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000194,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014851,88080387,88145923,88211459,88276995,88342531,88408067,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997891,89063427,89128963,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91226115,91291651,91357188,91422723,91488259,91553795,91619331,91684868,91750403,91815939,91881476,91947012,92012547,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,93257729,93323268,93388801,93454337,93519873,93585409,93650945,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240769,94306305,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350275,103415811,103481347,103546883,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529922,104595458,104660994,104726530,104792067,104857603,104923139,104988675,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512963,105578499,105644035,105709571,105775107,105840643,105906179,105971715,106037251,106102787,106168323,106233859,106299395,106364931,106430467,106496003,106561539,106627075,106692611,106758147,106823683,106889219,106954755,107020291,107085827,107151363,107216899,107282435,107347971,107413506,107479042,107544579,107610114,107675650,107741187,107806722,107872258,107937795,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248515,109314051,109379586,109445122,109510658,109576194,109641730,109707267,109772803,109838339,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935491,112001027,112066563,112132099,112197635,112263171,112328706,112394242,112459778,112525314,112590851,112656387,112721923,112787459,112852995,112918531,112984067,113049603,113115139,113180674,113246210,113311746,113377283,113442819,113508355,113573891,113639426,113704962,113770498,113836034,113901571,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753539,114819075,114884610,114950146,115015682,115081218,115146754,115212291,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260867,116326402,116391938,116457474,116523010,116588546,116654082,116719619,116785154,116850690,116916226,116981763,117047299,117112835,117178371,117243906,117309443,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833731,117899266,117964803,118030339,118095874,118161411,118226947,118292483,118358018,118423554,118489091,118554627,118620163,118685699,118751235,118816771,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341059,119406594,119472131,119537666,119603202,119668738,119734274,119799810,119865346,119930883,119996419,120061955,120127491,120193027,120258562,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253955,128319490,128385027,128450563,128516099,128581635,128647171,128712707,128778243,128843779,128909315,128974851,129040387,129105923,129171459,129236995,129302531,129368067,129433603,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416642,130482179,130547715,130613250,130678787,130744322,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661827,131727363,131792899,131858435,131923971,131989507,132055042,132120578,132186114,132251650,132317186,132382723,132448258,132513794,132579330,132644866,132710402,132775939,132841475,132907010,132972546,133038083,133103618,133169154,133234691,133300227,133365763,133431299,133496834,133562370,133627906,133693442,133758979,133824515,133890051,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873091,134938627,135004163,135069699,135135235,135200771,135266307,135331843,135397379,135462915,135528451,135593987,135659523,135725059,135790595,135856131,135921667,135987203,136052739,136118274,136183810,136249346,136314882,136380418,136445954,136511491,136577026,136642562,136708098,136773634,136839170,136904707,136970242,137035779,137101315,137166851,137232387,137297923,137363459,137428995,137494531,137560066,137625602,137691138,137756674,137822211,137887747,137953283,138018819,138084355,138149891,138215427,138280962,138346499,138412034,138477570,138543106,138608642,138674179,138739714,138805250,138870786,138936322,139001859,139067395,139132931,139198467,139264003,139329539,139395075,139460610,139526146,139591682,139657218,139722754,139788290,139853827,139919362,139984898,140050435,140115970,140181507,140247043,140312579,140378115,140443650,140509187,140574723,140640258,140705794,140771330,140836866,140902402,140967938,141033475,141099011,141164547,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868483,142934018,142999555,143065090,143130626,143196162,143261698,143327234,143392771,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769027,144834562,144900098,144965634,145031171,145096706,145162242,145227778,145293314,145358850,145424387,145489923,145555459,145620995,145686531,145752067,145817603,145883139,145948675,146014211,146079747,146145283,146210819,146276355,146341891,146407427,146472963,146538499,146604035,146669571,146735107,146800643,146866179,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307970,148373507,148439042,148504579,148570114,148635650,148701186,148766722,148832259,148897795,148963330,149028867,149094402,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618690,149684226,149749762,149815299,149880835,149946371,150011907,150077443,150142978,150208514,150274050,150339586,150405123,150470659,150536195,150601731,150667266,150732802,150798338,150863874,150929410,150994946,151060483,151126018,151191555,151257090,151322626,151388162,151453698,151519234,151584770,151650307,151715843,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371203,152436739,152502275,152567810,152633347,152698883,152764419,152829955,152895491,152961027,153026562,153092099,153157635,153223171,153288707,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812995,153878530,153944066,154009602,154075138,154140674,154206210,154271747,154337283,154402819,154468355,154533891,154599427,154664963,154730499,159121412,159186948,159252484,159318023,159383557,159449093,159514629,159580165,159645702,159711236,159776772,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160497669,160563205,160628741,160694277,160759813,160825349,160890886,160956420,161021958,161087492,161153029,161218564,161284100,161349640,161415172,161480709,161546245,161611837,161677331,161742856,161808388,161873927,161939460,162004999,162070533,162136070,162201604,162267141,162332676,162398213,162463749,162529284,162594821,162660357,162725897,162791428,162856964,162922500,162988039,163053575,163119111,163184644,163250183,163315716,163381252,163446788,163512324,163577863,163643396,163708932,163774468,163840004,163905540,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560899,164626436,164691971,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002693,166068235,166133769,166199305,166264848,166330383,166395913,166461451,166526983,166592519,166658055,166723592,166789128,166854664,166920199,166985735,167051272,167116808,167182342,167247878,167313414,167378951,167444487,167510023,167575561,167641096,167706632,167772168,167837704,167903235,167968771,168034312,168099849,168165382,168230919,168296455,168361992,168427528,168493064,168558600,168624136,168689672,168755208,168820744,168886280,168951815,169017354,169082888,169148423,169213959,169279496,169345031,169410566,169476103,169541639,169607175,169672712,169738247,169803782,169869319,169934855,170000391,170065927,170131463,170196999,170262534,170328128,170393608,170459143,170524679,170590216,170655751,170721287,170786824,170852358,170917895,170983431,171048967,171114503,171180039,171245574,171311111,171376646,171442183,171507720,171573256,171638791,171704329,171769863,171835399,171900938,171966470,172032007,172097543,172163079,172228615,172294152,172359690,172425223,172490762,172556295,172621831,172687367,172752903,172818441,172883976,172949512,173015047,173080585,173146118,173211674,173277191,173342727,173408263,173473799,173539335,173604871,173670409,173735944,173801479,173867015,173932551,173998087,174063623,174129159,174194695,174260233,174325768,174391300,174456836,174522372,174587908,174653444,174718979,174784516,174850052,174915588,174981124,175046664,175112196,175177732,175243267,175308804,175374340,175439876,175505412,175570948,175636484,175702020,175767556,175833092,175898628,175964164,176029700,176095236,176160772,176226308,176291844,176357380,176422916,176488452,176553988,176619524,176685060,176750596,176816132,176881668,176947204,177012740,177078276,177143812,177209348,177274883,177340419,177405955,177471495,177537030,177602566,177668101,177733638,177799174,177864709,177930252,177995780,178061316,178126852,178192388,178257924,178323460,178388996,178454532,178520068,178585604,178651140,178716676],"managerconnection":[786435,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752515,2818050,2883586,2949122,3014658,3080195,3145730,3211267,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767171,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6750211,8912900,9895938,9961475,27000835,55377926,55705606,55771142,55902215,55967750,56033286,56098822,56164358,56229894,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950790,57016326,57081862,57147398,57212934,57278470,57344006,57409542,57540614,57606150,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58720262,58785798,58851334,58916870,58982406,59047942,59113478,59244551,59310086,59375622,59441158,59506694,59572230,59637766,59703302,59768838,59834374,59899910,60227591,60293126,60358662,60424198,60489734,60555270,60620806,60686342,60751878,60817414,60882950,60948486,61014022,61079558,61145094,61210630,61276166,61341702,61407238,61472774,61538310,61603846,61669382,61734918,61800454,61865990,61931526,61997062,62062598,62128134,62193670,62259206,62324742,62390278,62455814,62521350,62586886,62652422,62717958,62783494,62849030,62914566,62980102,63045638,63111174,63176710,63242246,63307782,63373318,63438854,63504390,63569926,63635462,63700998,63766534,63832070,63897606,63963142,64094214,64159750,64225286,64290822,64487429,64552966,64618500,64684036,64749572,64815106,64880642,64946178,65011714,65077251,65142788,65208326,65273860,65339397,65404933,65470470,65536006,65601543,65798150,66387976,69337090,69468161,76349441,76414977,76480513,76546050,76611586,76677122,76742658,76808197,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93323268,136839176,150601731,150667266,150732802,150798339,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650306,151715843,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607170,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129155,174194689,174260225,174325761,175046668],"meetmejoin":[786434,3735558,175046658],"meet":[786435,3735553,3801089,3866625,69468165,166330369,170459137,170524673,170655745,170721281,175046659],"meetmeleave":[786434,3801094,175046658],"meetmetalking":[786433,3866629,175046657],"meetmetalkingevent":[786433,3866626,23265283,60620807,69468162,89587715,137428995,166330369,170721290,175046657,175439877],"meetme":[786433,3866625,85327873,89260033,89325569,89391105,89456641,89522177,89587713,89653249,117243909,166330369,170393601,170459137,170524673,170590209,170655745,170721281,170786817,175046657],"messagewaiting":[786434,3932166,175046658],"member":[786436,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,5046274,5111810,5177346,5242882,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,28311553,28508161,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29687809,29753345,29818881,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,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33554433,33685505,33751041,34340865,34930689,34996225,42205185,42270721,42663937,42729473,42860545,42926081,42991617,43057153,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44761089,44826625,50331649,50462721,51118082,51183619,51249156,51511298,51576836,51642371,51707909,51773441,51838977,52101123,53805057,53870593,53936129,54001665,54067201,54132737,55443457,55574529,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65863681,65929217,65994753,66060289,66256897,66453505,66977793,67371009,67436545,67829761,68091905,68157441,68222977,68354049,68485121,68812801,68878337,69402628,69468167,75038723,75169796,75235330,75366401,83427333,83558405,83755009,83951618,85065729,85721089,85786625,85852161,88539137,91291661,91357197,91422722,91488262,91684877,91750401,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102498305,102563841,102629377,102760449,102825985,102891521,102957057,103088129,103153665,103350273,103415809,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104529921,104595457,104660993,104726529,104857601,104923137,104988673,105119745,105250817,105316353,105447425,105578497,105644033,105775105,105971713,106102785,106168321,106299393,106364929,106496001,106627073,106758145,106889217,106954753,107282433,107413505,107479041,107610113,107675649,107806721,107872257,108003329,108068865,108134401,108265473,108396545,108462081,108593153,108724225,108789761,108920833,109051905,109117441,109182977,109248513,109314049,109510657,109641729,109772801,109903873,110034945,110100481,110166017,110231553,110297089,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111149057,111214593,111280129,111345665,111607809,111673346,111738883,111804418,111869954,112001025,112066561,112132097,112197633,112263169,112394242,112459780,112525314,112656385,112721921,112787457,112918529,112984065,113049601,113115137,113246209,113311746,113442817,113573889,113704967,113770497,113901569,113967105,114032641,114098177,114163713,114294785,114360321,114425857,114556929,114622465,114688001,114884609,115081217,115212289,115277825,115343361,115408897,115539969,115605505,115736577,115867649,115998721,116195329,116260865,116326406,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147586,142213122,142278657,142344199,142409731,142475266,142540803,142606338,142671874,142737409,142802946,142868487,142934018,142999553,143065090,143130625,143196163,143261697,143327235,143392769,143458306,143523842,143589379,143654914,143720450,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506882,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152502273,152567809,152633345,152698881,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155582465,159055873,162201609,162332682,162398210,162529283,162725891,164560897,166068225,166461441,166723585,166789121,166854657,167903233,167968769,169672705,172425230,172490766,172556291,172621831,172687361,172752897,172818445,172883969,175046660],"managerexception":[851971,27066371,65667079,65732615,69337090,76873734,93388803,175177740],"missing":[1835009,1900545,1966081,2031617,2097153,2162689,2228225,2752513,3080193,3211265,5767169,7340033,7405569,7602177,7667713,7733249,7798785,7864321,7929857,8060929,8126465,8192001,8257537,8323073,8388609,8585217,8716289,8781825,8847361,8912897,9109505,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9961473,10027009,10092545,28311555,28377092,28442627,28508161,28573698,28901378,28966914,29032450,29097985,29491202,29622273,29687811,29753346,29818883,29884418,30539777,30801922,31129601,31522818,32636931,32702465,32768002,32833537,32899073,32964609,33030145,33554434,33619969,33685505,33751041,33882113,33947652,34078721,34209797,34275330,34340867,34406402,34537474,34668546,34865154,35323906,35520514,35717122,35848194,35979266,36175874,36438018,36634626,36831234,36962306,37158914,37289986,37486594,37617665,37683202,37879810,38076418,38141953,38404098,38600706,38797314,38993922,39190530,39321602,39452674,39583746,39714818,39845890,39976962,40108034,40304642,40501250,40566785,40632322,40894466,40960001,41025538,41156610,41353219,41418753,41615363,41680897,41811969,41877505,41943043,42008577,42139649,42205187,42270723,42401795,42467329,42598401,42663938,42729473,42795011,43188226,43253762,43319299,43384835,43450370,43515906,43581443,43646979,43712514,43778050,43843587,43909123,44040195,44236802,44302338,44367875,44433411,45088770,45219842,45350926,46137346,46202882,46268417,46333954,46530561,46661634,46792706,46923777,47054849,47185921,47316994,47644673,47972354,48496642,49610753,49741825,49872898,50266114,50331650,50397185,50462722,50528257,50659331,50790402,51380229,51838979,51970052,52232193,52363265,52428802,53149698,53280770,53411841,53477378,53673985,53739522,53805057,53870594,53936131,54001668,54067205,54263810,54329347,54394883,54525954,54657025,54788097,54919169,54984706,55377921,55443458,55508993,55574530,55640065,55705601,55771137,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028676,64094209,64159745,64225281,64290817,64356353,64487427,64552964,64618498,64684034,64749570,65077249,65142786,65208324,65273858,65339395,65404931,65601537,65798145,65863682,65929217,65994754,66060289,66191361,66256898,66322434,66387971,66584577,66650114,66715650,66977794,67305473,67436545,67633154,67764225,67829761,67895298,68812801,94633985,94699521,94961665,95027201,95092737,95158273,95223809,95289345,95485953,95748097,95813633,95944705,96010241,96075777,96141313,96468993,96731137,96796673,98500609,101449729,101515265,101777409,101842945,101908481,102039553,102105089,102170625,102236161,102301697,102367233,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104792065,104857601,104923137,104988673,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107544577,107741185,107937793,109772801,109838337,111935489,112001025,112066561,112132097,112197633,112263169,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113377281,113442817,113508353,113573889,113901569,114753537,114819073,116719617,116981761,117047297,117112833,117178369,117309441,117833729,117964801,118030337,118161409,118226945,118292481,118489089,118554625,118620161,118685697,118751233,118816769,119341057,119472129,119930881,119996417,120061953,120127489,120193025,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130482177,130547713,130678785,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132382721,132775937,132841473,133038081,133234689,133300225,133365761,133431297,133758977,133824513,133890049,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138346497,138674177,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139853825,140050433,140181505,140247041,140312577,140378113,140509185,140574721,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,142999553,143392769,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148373505,148504577,148832257,148897793,149028865,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149815297,149880833,149946369,150011905,150077441,150405121,150470657,150536193,150601729,151715841,152371201,152436737,152502273,152633345,152698881,152764417,152829953,152895489,153092097,153157633,153223169,153288705,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,155058177,155451393,155582466,155844609,155910145,155975681,156041217,158400513,158728193,158924801,159055873,159449089,159514625,159580161,159842305,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,162136065,162267137,162398209,162463745,162594817,162660353,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166133761,166264833,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167903233,167968769,168034305,168099841,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,169476097,169607169,169934849,170000385,170393601,170590209,170786817,170917889,170983425,171048961,171114497,171180033,171507713,172032001,172097537,173277185,173342721,173408257,173473793,173539329,173801473,174194689,174391297,174456833,174522369,174587905,174653441,174784513,174850049,174915585,174981121,175112193,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177602561,177995777,178061313,178126849,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673],"meetmejoineventhandler":[3735559,69337089,175308806],"meetmejoinevent":[3735553,23003139,60358663,69468162,89325571,137035779,137101315,166330369,170459146,175308805],"meetmeleaveeventhandler":[3801095,69337089,175374342],"meetmeleaveevent":[3801089,23068675,60424199,69468162,89391107,137166851,137232387,137297923,166330369,170524682,175374341],"meetmetalkingeventhandler":[3866631,69337089,175439878],"messagewaitingeventhandler":[3932167,69337089,175505414],"messagewaitingevent":[3932161,23396355,60751879,69468162,89718787,137560066,137625602,137691138,137756674,170328065,170852362,175505413],"managereventhandler":[5832711,69337089,175112198],"managerevent":[5832705,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,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740994,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542082,26607619,26673155,26738691,26804227,26869763,59965442,60030978,60096514,60162055,60227591,66256903,69468162,76480518,85065736,85131272,85196808,85262344,85327880,85393416,85458952,85524488,85590024,85655560,85721096,85786632,85852168,85917704,85983240,86048776,86114312,86179848,86245384,86310920,86376456,86441992,86507528,86573064,86638600,86704136,86769672,86835208,86900744,86966280,87031816,87097352,87162888,87228424,87293960,87359496,87425032,87490568,87556104,87621640,87687176,87752712,87818248,87883784,87949320,88014856,88080392,88145928,88211464,88277000,88342536,88408072,88473608,88539144,88604680,88670216,88735752,88801288,88866824,88932360,88997896,89063432,89128968,89194499,89260040,89325576,89391112,89456648,89522184,89587720,89653256,89718792,89784328,89849864,89915400,89980936,90046472,90112008,90177544,90243080,90308616,90374152,90439688,90505224,90570760,90636296,90701832,90767368,90832904,90898440,90963976,91029512,91095048,91160584,91226120,91291656,91357192,91422728,91488264,91553800,91619336,91684872,91750408,91815944,91881480,91947016,92012552,92078088,92143624,92209160,92274696,92340232,92405768,92471304,92536840,92602376,92667912,92733448,92798984,92864520,92930056,92995592,93061128,93126664,93192200,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,166068236,166133776,166199312,166264849,166330385,166395920,166461456,166526992,166592528,166658060,166723596,166789132,166854668,166920208,166985744,167051276,167116812,167182352,167247888,167313424,167378960,167444496,167510032,167575568,167641100,167706636,167772172,167837712,168034316,168099856,168165392,168230928,168296464,168361996,168427532,168493068,168558604,168624140,168689676,168755212,168820748,168886284,168951820,169017360,169082892,169148428,169213964,169279504,169345036,169410576,169476112,169541648,169607184,169672716,169738252,169803792,169869328,169934864,170000400,170065932,170131468,170197003,170262544,170328077,170393612,170459148,170524684,170590220,170655756,170721292,170786828,170852368,170917904,170983440,171048976,171114512,171180048,171245584,171311116,171376656,171442188,171507724,171573260,171638796,171704332,171769868,171835404,171900940,171966480,172032016,172097552,172163084,172228620,172294156,172359696,172425228,172490764,172556300,172621836,172687372,172752908,172818444,172883980,172949516,173015056,173080588,173146128,173211665,173277200,173342736,173408272,173473808,173539344,173604876,173670412,173735948,173801488,173867024,173932560,173998091,174063628,174129168,174194704,174260236,174325772,175112197],"minus_separator":[6356993,8716294,155058177],"maintain":[6422530,8978433,9043969,155844610],"managerresponse":[6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274499,10092547,27459590,27525126,27590662,27656198,27721734,27787270,27852806,27918340,64421893,65142789,65273861,66322441,66650121,67371011,67436547,67502082,67567618,67633156,67698695,67764232,69337090,69402626,69533697,77004806,93716488,93782024,93847560,93913096,93978632,94044168,94109704,94175235,152698887,152895494,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,161677313,161742849,166002689,174718977,177471508,177537044,177602580,177668116,177733652,177799188,177864724,177930253,178192385],"mailboxcountresponse":[7077891,27721731,67108870,69533698,93978627,153419778,153485314,153550850,161480705,177733642,177930241],"mailboxstatusresponse":[7143427,27787267,67174406,69402626,69533698,94044163,153616386,153681922,161480705,161546242,177799178,177930241],"managererror":[7208963,27852803,67239943,67305480,69402626,69533697,76939270,94109699,160890881,161349634,177864715,177930241],"mutable":[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],"moved":[8912900,69468161,170328065],"methods":[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,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,68681729,68747265,69074945,69468161,93323265,151519233,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713538,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129154,174194689,174260225,174325761,174718977,175046658,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"memberwiseclone":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"maximum":[10682371,30998530,31588354,31653890,34013185,34144257,36372481,37748737,37814273,69140484,69402625,69468161,70057985,70320130,77660161,78184450,78643201,91750401,93323265,96665601,98041858,99090433,144179202,151453697,155713539,155844609,156499971,156893185,156958721,157024258,159121409,167837697,172883969,175046657],"method":[10682369,13959171,18153473,26935297,28180482,28311553,28508161,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29687809,29753345,29818881,29884417,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064066,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,33554433,33685505,33751041,34275329,34340865,34406401,34537473,34668545,34865153,34930689,34996225,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,41353217,41418753,41615361,41680897,41943041,42008577,42205185,42270721,42401793,42467329,42663937,42729473,42860545,42926081,42991617,43057153,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040194,44105730,44171267,44236801,44302337,44367873,44433409,45088769,46202881,46333953,47972353,48496641,49610753,49741825,49872897,50266113,50331649,50397185,50462721,50528257,50790401,52428801,53149697,53280769,53477377,53739521,53805057,53870593,53936129,54001665,54067201,54132738,54984705,55443457,55508993,55574529,55640065,57475073,59965441,60030977,60096513,64028673,64356353,64421890,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65863681,65929217,65994753,66060289,66191361,66256897,66322433,66453505,66584577,66650113,66977793,67371009,67436545,67502081,67567617,67633153,67829761,67895297,68091905,68157441,68222977,68354049,68419587,68485121,68812801,68878337,68943873,69206017,69402625,69861377,69926913,69992449,70057985,70123522,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,71041025,72679425,72744961,72810497,72876035,72941569,75890690,76546049,76611585,76677121,76742657,77070337,77266945,77332481,77398017,79953921,80019457,84475905,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93323266,93388801,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94306305,115212289,136511489,150667265,150732801,153812993,155254785,155320321,155385857,155713537,158466049,158531585,158597121,158990339,163250179,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174718977,175046658,175177729,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,178192385,178847746,178913281],"music":[10682371,31457282,33161217,40173570,40239108,69140482,70254594,72220676,79495170,100466692,155713539,157876225,157941767],"milliseconds":[10682371,27000833,27983873,30932993,30998529,31588354,31653890,33423362,36306945,36372481,37421057,37748737,37814273,41287681,64946177,65273857,65404929,67829761,69140484,70320130,76677121,78184449,78512129,78577665,78643201,79888385,80412673,83099649,93323269,98107393,98631681,98697217,99090433,101253121,102957057,110952449,150667265,150732801,151257089,151322625,151519233,155713539,156499969,156893186,156958722,157024258,158334978,159186945,161873921,175046662,177995777],"maxsilence":[10682372,31588354,31653895,37814277,69140482,70320132,155713540,157024258],"message":[10682370,13959171,28704775,28770311,28901382,33357832,41091078,44040193,44105730,44171266,45285377,45350913,51380230,55181319,55246855,55312391,65667079,65732615,68026375,68288513,69140482,69402625,69533697,69599233,69730306,72876034,73203714,76283906,76873730,77266946,77332482,77398018,79822850,79953922,80019458,83492865,84934658,85000194,91947009,93388802,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94306306,101187590,112132102,144965637,153944070,155254788,155320322,155385858,155713538,158269444,158466050,158531586,158990339,159449090,161349633,162267137,164691972,166002691,173080577,175177732,177471490,177537026,177602562,177668098,177733634,177799170,177864707,177930242,178192387,178782210],"mappingstrategies":[13565953,13631489,13697025,41615365,41680899,41746434,41811972,41877507,41943045,42008579,42074114,42139651,42205189,42270728,42336258,69206017,72482817,72548353,80084993,80150529,101449731,101515267,101580802,101646338,101711874,158597123,158662659,158728196,158793732],"mappingstrategy":[13762563,28573701,33882118,33947654,34078726,42401797,42467331,42532871,42598408,69074946,69206018,72613894,77660162,80216067,96600071,101777411,155844610,158597121,158662657,158793740],"messagelevel":[13959170,44040206,44105739,44171275,69009409,72876034,158990338,159055878],"manageraction":[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,16515075,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,27000837,49872900,49938438,64487433,64552970,65142792,65208330,65273864,66715655,69402626,69468161,69533697,76546050,76677123,80347140,80412676,80478212,80543748,80609284,80674820,80740356,80805892,80871428,80936964,81002500,81068036,81133572,81199108,81264644,81330180,81395716,81461252,81526788,81592324,81657860,81723396,81788932,81854468,81920004,81985540,82051076,82116612,82182148,82247684,82313220,82378756,82444292,82509828,82575364,82640900,82706436,82771972,82837507,82903044,82968580,83034116,83099652,83165188,83230724,83296260,83361796,83427332,83492868,83558404,83623940,83689476,83755012,83820548,83886084,83951620,84017156,84082692,84148228,84213764,84279300,84344836,84410372,84475908,84541444,84606980,84672516,84738052,84803588,84869124,86048770,86114306,87425026,87556098,87949314,90374146,90439682,90570754,90701826,90767362,91160578,91357186,91684866,91750402,91815938,92078082,92536834,92602370,93126658,93192194,93323266,109707266,109772803,109838339,109903874,145293313,145358849,150470662,151519234,152371207,152764423,159121418,159186954,159252490,159318022,159383562,159449098,159514634,159580170,159645706,159711242,159776778,159842314,159907846,159973382,160038922,160104458,160169994,160235530,160301066,160366602,160432138,160497674,160563210,160628746,160694282,160759818,160825354,160890886,160956426,161021962,161087498,161153030,161218570,161284106,161349642,161415178,161480714,161546250,161611787,161677323,161742858,161808394,161873926,161939466,162004998,162070538,162136074,162201610,162267146,162332682,162398218,162463754,162529290,162594826,162660362,162725894,162791434,162856970,162922506,162988038,163053574,163119110,163184650,163250182,163315722,163381258,163446794,163512330,163577862,163643402,167051266,167116802,168558594,168689666,169082882,171507714,171573250,171704322,171835394,171900930,172294146,172490754,172818434,172883970,172949506,173211651,173670402,173735938,174260226,174325762,175046663,177930241],"manageractionevent":[14221313,14811137,14876673,15794177,16580611,16777217,16908289,17629185,17891329,17956865,18022401,18481153,27000834,49610755,49676294,65339401,65404937,66387976,69402626,76742658,82903043,159318022,159907846,159973382,160890886,161611777,161677323,161873926,162004998,162725894,162988038,163053574,163119110,163577862,175046658],"manageractionresponse":[16056321,16646147,18153473,49741827,49807366,69402626,82968579,161153030,161611777,161742858,163250182],"mailboxcountaction":[16384003,49348615,49414151,69402627,69533697,74776582,82706435,109445122,109510658,161480717,161611777,177733634],"mailboxstatusaction":[16449539,49479687,49545223,69402627,69533697,74842118,82771971,109576194,109641730,161546253,161611777,177799170],"monitoraction":[16711683,50003975,50069511,50135047,50200583,69402626,74907658,83034115,109969410,110034946,110100482,110166018,110231554,161611777,161808400],"manage":[18153473,54132737,75890689,163250177],"meetmeendevent":[22937603,60293127,69468161,89260035,166330369,170393610],"meetmemuteevent":[23134211,60489735,69468161,89456643,137363459,166330369,170590218],"meetmestoptalkingevent":[23199747,60555271,69468162,89522179,166330369,170655754],"meetmetalkrequestevent":[23330819,60686343,69468161,89653251,137494531,166330369,170786826],"mobilestatusevent":[23461891,60817415,69468161,89784323,137822211,137887747,170328065,170917898],"moduleloadreportevent":[23527427,60882951,69468161,89849859,137953283,138018819,138084355,170328065,170983434],"monitorstartevent":[23592963,60948487,69468161,89915395,170328065,171048970],"monitorstopevent":[23658499,61014023,69468161,89980931,170328065,171114506],"md5":[27000834,45678593,64880641,64946177,68091905,69599233,73400321,76611586,80871425,82575361,105119745,109051905,159645698,161349633,175046658,178782209],"managerreader":[27131907,65798151,69337090,175243274],"map":[27656193,66977793,84475905,93913089,115212289,153354241,163250177,177668098],"md5support":[28114947,68091911,68157447,68222978,68288517,69599233,77070338,94371843,154796034,178782216],"messagedigestsupport":[28114946,68091905,68157442,77070338,178782210],"making":[28114945,68222977,178782209],"means":[30932994,30998530,36306946,36372482,78184450,98107394,156499970],"maxdigits":[30998533,36241409,36306945,36372486,71368707,78184449,98041861,156499972],"musiconholdclass":[31522822,40239109,79495169,100466693,157941761],"mustoverride":[32636929,34275329,49610753,49741825,109707265],"maybe":[35192833,35258369,40828929],"meaning":[37355521,37552129,71630849,71696385,77463553,83099649,94568449,110952449,155516929,156893185,156958721,161873921],"mode":[40960007,79757316,100990982,101056514,158203909],"mate":[40960001,79757313,101056513,158203906],"msg":[43057157,43253766,43319302,43515910,43581446,43778054,43843590,44302342,44367878],"msgtype":[45350918,80674817,104202246,159449089],"monitoring":[45875201,50069505,50135041,50200577,53673985,69402627,73465857,74907651,75825153,84410369,115081217,159711234,161808388,163184643],"monitored":[45875201,69402625,80936961,105250817,159711234],"mutes":[46596097,46661633,73728002,160104450],"monitor":[46858241,46923777,50069505,50135041,50200577,73859074,83034114,109969409,110034945,160235522,161808386],"mask":[48365570,49217537,74448897,82247681,82575361,108265473,109117441,161021954,161349633],"match":[49152001,49217537,54132743,69402627,69533697,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475906,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,115212289,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250181,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930242],"messages":[49414145,49545217,69402626,69533698,74776577,74842113,82771969,89718788,93978626,94044161,109641729,137560065,137625601,137691137,137756673,153485313,153550849,153681921,161480706,161546243,170852356,177733635,177799170],"mailbox":[49414152,49545224,69402626,69533697,74776577,74842113,82706435,82771971,89718790,93978628,94044161,109510663,109641735,137560071,137625601,137691137,137756673,153419782,153485313,153550849,153616389,161480709,161546245,170852358,177733637,177799169],"mailboxnumber":[49414145,49545217,82706433,82771969,109510657,109641729,161480705,161546241],"mix":[50200581,83034113,110231557,161808385],"msec":[50724865,83165185,111345665,161939457],"membername":[51183621,51249157,83427329,85065729,85721089,85786625,85852161,88539137,91291649,91357185,91422721,91488257,91619329,91684865,111673349,116391941,142278661,142802949,143261701,143523845,143851525,162201601,166068225,166723585,166789121,166854657,169672705,172425217,172490753,172556289,172621825,172752897,172818433],"makes":[51511297,51576833,51642369,51707905,69402625,75169796,162332677],"make":[51511297,51576835,51642369,51707907,69074945,83558403,112394241,112459778,155713537,162332675],"mapping":[69206018,77660162,96600066,155844610,158597121],"matches":[69402625,160890881],"manageractions":[69402626,161677313,161742849],"module":[69402625,69468161,84475905,91947009,115343361,145031173,163250178,170328065,173080577],"mailboxes":[69533697,82771970,94044162,109641730,153616385,153681921,161546242,177799171],"mandatory":[80412674,80936962,82706433,82771969,83034113,83427330,83558401,83755009,84082690,84279297,84410369,84541442,84606977,84672513,84738049,84869121,102760449,102891521,103088129,105250817,105316353,109510657,109641729,110034945,111607809,111869953,112394241,113246209,114360321,114425857,114884609,115081217,115539969,115605505,115736577,115867649,115998721,116195329,159186946,159711234,161480705,161546241,161808385,162201602,162332673,162529281,162856962,163053569,163184641,163315714,163381249,163446785,163512321,163643393],"minimum":[80412673,102957057,159186945],"mutually":[82575361,109248513,161349633],"mailboxcount":[82706433,109445121,161480705],"mailboxstatus":[82771969,109576193,161546241],"multiple":[82771969,83099650,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109641729,110493697,111017985,136708097,154009601,161546241,161873922,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"mycontext":[82771969,109641729,161546241],"membe":[85065730,85458945,85721090,85786626,85852162,88539138,91291650,91357185,91422722,91488257,91553793,91619330,91684865,116326401,116391937,117637121,142278657,142737409,143261697,143851521,166068226,166461441,166723586,166789122,166854658,169672706,172425218,172490753,172556290,172621825,172687361,172752898,172818433],"markeduser":[87490561,131727366,168624129],"marked":[87621633,131858438,168755201],"modulecount":[89849857,137953286,170983425],"moduleloadstatus":[89849857,138018822,170983425],"moduleselection":[89849857,138084358,170983425],"membership":[91291649,91357185,91684865,142344197,142868485,172425217,172490753,172818433],"max":[91750401,144179205,172883969],"maxlen":[91750401,144179201,172883969],"mustinherit":[155713537,155910145,161611777,161677313,161742849,162136065,166068225,166133761,166199297,166330369,166395905,166461441,167575553,168099841,169017345,170328065,172359681,173211649]} \ No newline at end of file +{"members":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,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,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,45875201,46596102,64094209,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118914,78184449,78249985,78315521,78381058,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983234,86048770,86114306,86179842,86245377,86310914,86376450,86441986,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,106561537,107675654,112984065,138018817,138608641,139657217,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138370,158203905,158269441,158334977,158400514,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160497665,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361986,168427522,168493058,168558594,168624129,168689666,168755202,168820738,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"manager":[655361,720897,786433,851969,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,3670019,3735554,3801090,3866626,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456450,4521987,4587523,4653059,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,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626883,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714820,39780354,39845892,39911426,39976976,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763396,40828932,40894467,40960004,41025538,41091074,41156611,41222146,41287684,41353218,41418756,41484290,41549827,41615362,41680899,41746434,41811971,41877506,41943044,42008578,42074114,42139650,42205186,42270723,42336258,42401794,42467330,42532866,42598404,42663938,42729474,42795010,42860546,42926082,42991619,43057154,43122692,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712517,43778051,43843587,43909122,43974658,44040194,44105730,44171266,44236804,44302338,44367876,44433410,44498948,44564482,44630018,44695554,44761090,44826626,44892164,44957700,45023235,45088772,45154307,45219842,45285381,45350914,45416452,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006279,46071810,46137346,46202882,46268418,46333954,46399490,46465029,46530562,46596102,46661634,46727170,46792706,46858243,46923778,46989315,47054852,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775748,47841282,47906820,47972354,48037891,48103428,48168962,48234498,48300035,48365572,48431107,48496644,48562181,48627718,48693255,48758786,48824322,48889860,48955397,49020933,49086466,49152004,49217538,49283075,49348610,49414147,49479682,49545219,49610756,49676290,49741826,49807362,49872898,49938435,50003973,50069508,50135043,50200580,50266115,50331653,50397189,50462722,50528261,50593797,50659333,50724867,50790405,50855941,50921477,50987013,51052549,51118085,51183621,51249157,51314693,51380229,51445765,51511301,51576837,51642373,51707909,51773445,51838981,51904517,51970053,52035589,52101122,52166661,52232197,52297733,52363269,52428805,52494341,52559877,52625413,52690949,52756485,52822021,52887557,52953093,53018629,53084165,53149701,53215237,53280773,53346309,53411845,53477381,53542917,53608453,53673989,53739525,53805058,53870597,53936133,54001669,54067205,54132741,54198277,54263813,54329349,54394885,54460421,54525957,54591490,54657026,54722562,54788098,54853635,54919173,54984709,55050245,55115781,55181317,55246853,55312389,55377925,55443461,55508997,55574533,55640069,55705605,55771141,55836677,55902213,55967749,56033285,56098821,56164357,56229893,56295429,56360965,56426501,56492037,56557573,56623109,56688645,56754181,56819717,56885253,56950787,57016325,57081859,57147395,57212931,57278467,57344003,57409539,57475077,57540613,57606149,57671685,57737221,57802757,57868293,57933829,57999365,58064901,58130437,58195973,58261509,58327045,58392581,58458117,58523653,58589189,58654725,58720262,58785797,58851333,58916869,58982405,59047939,59113475,59179017,59244555,59310084,59375620,59441156,59506690,59572229,59637763,59703298,59768835,59834375,59899920,59965447,60030985,60096521,60162050,60227587,60293124,60358659,60424196,60489733,60555268,60620803,60686340,60751875,60817410,60882947,60948487,61014023,61079565,61145091,61210626,61276163,61341703,61407239,61472770,61538306,61603842,61669380,61734914,61800450,61865986,61931522,61997059,62062594,62128131,62193666,62259202,62324740,62390274,62455811,62521347,62586884,62652418,62717954,64028675,64094214,64159749,64225282,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140482,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303171,71368705,71434241,71499777,71565313,71630849,71696385,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266947,77332481,77398017,77463553,77529090,77594626,77660162,77725697,77791233,77856769,77922305,77987841,78053378,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167490,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691778,79757315,79822851,79888387,79953923,80019459,80084995,80150531,80216067,80281603,80347139,80412675,80478211,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82837507,82903043,82968579,83034115,83099651,83165187,83230723,83296259,83361795,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048772,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638596,86704132,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014849,88080388,88145921,88211457,88276993,88342529,88408065,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997889,89063425,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107395,98172931,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221507,99287042,99352578,99418114,99483650,99549187,99614723,99680259,99745795,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270083,100335619,100401155,100466691,100532227,100597763,100663299,100728835,100794371,100859907,100925443,100990979,101056515,101122051,101187587,101253123,101318659,101384195,101449731,101515267,101580803,101646339,101711875,101777411,101842947,101908483,101974019,102039555,102105091,102170626,102236162,102301699,102367234,102432770,102498307,102563842,102629378,102694915,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005635,104071171,104136706,104202242,104267778,104333314,104398850,104464387,104529923,104595459,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692611,106758147,106823683,106889219,106954755,107020291,107085826,107151362,107216898,107282434,107347971,107413507,107479043,107544579,107610115,107675651,107741187,107806723,107872259,107937794,108003330,108068866,108134403,108199939,108265475,108331011,108396546,108462082,108527618,108593154,108658691,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510659,109576195,109641730,109707266,109772802,109838338,109903874,109969411,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017987,111083522,111149058,111214594,111280130,111345666,111411202,111476739,111542274,111607810,111673346,111738883,111804419,111869955,111935491,112001026,112066563,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377283,113442818,113508355,113573891,113639426,113704963,113770499,113836035,113901570,113967106,114032643,114098179,114163715,114229251,114294787,114360323,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884611,114950146,115015683,115081218,115146754,115212290,115277826,115343362,115408898,115474435,115539971,115605507,115671043,115736579,115802114,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863042,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960194,126025731,126091267,126156802,126222339,126287874,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598594,127664130,127729666,127795202,127860738,127926275,127991810,128057346,128122882,128188418,128253954,128319491,128385027,128450562,128516098,128581635,128647170,128712706,128778243,128843779,128909315,128974851,129040386,129105922,129171458,129236994,129302531,129368067,129433603,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661826,131727362,131792898,131858434,131923970,131989506,132055043,132120578,132186114,132251650,132317186,132382722,132448259,132513794,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103618,133169154,133234690,133300226,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824514,133890051,133955586,134021122,134086658,134152194,134217731,134283266,134348802,134414338,134479874,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004162,135069698,135135234,135200770,135266306,135331842,135397379,135462914,135528450,135593987,135659522,135725059,135790595,135856131,135921667,135987202,136052739,136118275,136183810,136249346,136314882,136380418,136445954,136511490,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412035,138477570,138543107,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705795,140771330,140836866,140902402,140967939,141033474,141099010,141164546,141230082,141295618,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244738,144310275,144375810,144441347,144506882,144572418,144637954,144703490,144769027,144834563,144900098,144965635,145031170,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555458,145620994,145686530,145752067,145817603,145883139,145948675,146014211,146079746,146145282,146210818,146276354,146341891,146407427,146472963,146538499,146604034,146669570,146735106,146800642,146866178,146931714,146997251,147062786,147128323,147193858,147259394,147324930,147390466,147456002,147521538,147587075,147652611,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307971,148373507,148439043,148504578,148570115,148635651,148701187,148766723,148832259,148897795,148963330,149028867,149094403,149159939,149225475,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749763,149815298,149880834,149946370,150011906,150077442,150142978,150208515,150274051,150339587,150405123,150470659,150536195,150601731,150667267,155058180,155123716,155189252,155254791,155320325,155385861,155451397,155516933,155582470,155648004,155713540,155779077,155844613,155910149,155975685,156041221,156106757,156172293,156237829,156303365,156368901,156434437,156499973,156565509,156631045,156696581,156762117,156827654,156893188,156958726,157024260,157089797,157155332,157220868,157286408,157351940,157417477,157483013,157548605,157614099,157679624,157745156,157810695,157876228,157941767,158007301,158072838,158138372,158203909,158269444,158334981,158400517,158466052,158531589,158597125,158662665,158728196,158793732,158859268,158924807,158990343,159055879,159121412,159186951,159252484,159318020,159383556,159449092,159514631,159580164,159645699,159711235,159776771,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563204,160628739,160694276,160759812,160825348,160890884,160956420,161021956,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546244,161611779,161677315,161742851,161808387,161873924,161939461,162005003,162070537,162136073,162201616,162267151,162332681,162398223,162463751,162529287,162594823,162660360,162725896,162791432,162856967,162922503,162988040,163053576,163119110,163184646,163250182,163315719,163381255,163446791,163512329,163577864,163643400,163708936,163774472,163840003,163905539,163971080,164036617,164102150,164167687,164233223,164298760,164364296,164429832,164495368,164560904,164626440,164691976,164757512,164823048,164888583,164954122,165019656,165085191,165150727,165216264,165281799,165347334,165412871,165478407,165543943,165609480,165675015,165740550,165806087,165871623,165937159,166002695,166068231,166133767,166199302,166264896,166330376,166395911,166461447,166526984,166592519,166658055,166723592,166789126,166854663,166920199,166985735,167051271,167116807,167182342,167247879,167313414,167378951,167444488,167510024,167575559,167641097,167706631,167772167,167837706,167903238,167968775,168034311,168099847,168165383,168230920,168296458,168361991,168427529,168493063,168558599,168624135,168689671,168755207,168820743,168886280,168951816,169017351,169082889,169148422,169213978,169279495,169345031,169410567,169476103,169541639,169607175,169672713,169738248,169803783,169869319,169934855,170000391,170065927,170131463,170196999,170262537,170328072,170393603,170459140,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048968,171114499,171180036,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835396,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425220,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539335,173604870,173670406,173735941,173801478,173867014,173932549,173998092,174063620,174129155,174194692,174260228,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515],"managerexception":[786435,21692419,60358663,60424199,64028674,71565318,88145923,171180044],"minus_separator":[917505,3276806,150994945],"maintain":[983042,3538945,3604481,151781378],"managerconnection":[1310723,3473412,4456450,4521987,21626883,50003974,50331654,50397190,50528263,50593798,50659334,50724870,50790406,50855942,50921478,50987014,51052550,51118086,51183622,51249158,51314694,51380230,51445766,51511302,51576838,51642374,51707910,51773446,51838982,51904518,51970054,52035590,52166662,52232198,52297734,52363270,52428806,52494342,52559878,52625414,52690950,52756486,52822022,52887558,52953094,53018630,53084166,53149702,53215238,53280774,53346310,53411846,53477382,53542918,53608454,53673990,53739526,53870599,53936134,54001670,54067206,54132742,54198278,54263814,54329350,54394886,54460422,54525958,54853639,54919174,54984710,55050246,55115782,55181318,55246854,55312390,55377926,55443462,55508998,55574534,55640070,55705606,55771142,55836678,55902214,55967750,56033286,56098822,56164358,56229894,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950790,57016326,57081862,57147398,57212934,57278470,57344006,57409542,57475078,57540614,57606150,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58785798,58851334,58916870,58982406,59179013,59244550,59310084,59375620,59441156,59506690,59572226,59637762,59703298,59768835,59834372,59899910,59965444,60030981,60096517,60162054,60227590,60293127,60489734,61079560,64028674,64159745,71041025,71106561,71172097,71237634,71303170,71368706,71434242,71499781,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080388,132382728,146538499,146604034,146669570,146735107,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652611,162004993,162070529,162136065,162201602,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543938,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131459,170196993,170262529,170328065,171048972],"managerresponse":[1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835011,4653059,22085638,22151174,22216710,22282246,22347782,22413318,22478854,22544388,59113477,59834373,59965445,61014025,61341705,62062595,62128131,62193666,62259202,62324740,62390279,62455816,64028674,64094210,64225281,71696390,88473608,88539144,88604680,88670216,88735752,88801288,88866824,88932355,148635655,148832262,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,157614081,157679617,161939457,170721281,173539348,173604884,173670420,173735956,173801492,173867028,173932564,173998093,174260225],"mailboxcountresponse":[1638403,22347779,61800454,64225282,88735747,149356546,149422082,149487618,157417473,173801482,173998081],"mailboxstatusresponse":[1703939,22413315,61865990,64094210,64225282,88801283,149553154,149618690,157417473,157483010,173867018,173998081],"managererror":[1769475,22478851,61931527,61997064,64094210,64225281,71630854,88866819,156827649,157286402,173932555,173998081],"missing":[1900545,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3145729,3276801,3342337,3407873,3473409,3670017,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4521985,4587521,4653057,22937603,23003140,23068675,23134209,23199746,23527426,23592962,23658498,23724033,24117250,24248321,24313859,24379394,24444931,24510466,25165825,25427970,25755649,26148866,27262979,27328513,27394050,27459585,27525121,27590657,27656193,28180482,28246017,28311553,28377089,28508161,28573700,28704769,28835845,28901378,28966915,29032450,29163522,29294594,29491202,29949954,30146562,30343170,30474242,30605314,30801922,31064066,31260674,31457282,31588354,31784962,31916034,32112642,32243713,32309250,32505858,32702466,32768001,33030146,33226754,33423362,33619970,33816578,33947650,34078722,34209794,34340866,34471938,34603010,34734082,34930690,35127298,35192833,35258370,35520514,35586049,35651586,35782658,35979267,36044801,36241411,36306945,36438017,36503553,36569091,36634625,36765697,36831235,36896771,37027843,37093377,37224449,37289986,37355521,37421059,37814274,37879810,37945347,38010883,38076418,38141954,38207491,38273027,38338562,38404098,38469635,38535171,38666243,38862850,38928386,38993923,39059459,39714818,39845890,39976974,40763394,40828930,40894465,40960002,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,42598402,43122690,44236801,44367873,44498946,44892162,44957698,45023233,45088770,45154305,45285379,45416450,46006277,46465027,46596100,46858241,46989313,47054850,47775746,47906818,48037889,48103426,48300033,48365570,48431105,48496642,48562179,48627716,48693253,48889858,48955395,49020931,49152002,49283073,49414145,49545217,49610754,50003969,50069506,50135041,50200578,50266113,50331649,50397185,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720260,58785793,58851329,58916865,58982401,59047937,59179011,59244548,59310082,59375618,59441154,59768833,59834370,59899908,59965442,60030979,60096515,60293121,60489729,60555266,60620801,60686338,60751873,60882945,60948482,61014018,61079555,61276161,61341698,61407234,61669378,61997057,62128129,62324738,62455809,62521345,62586882,63504385,89391105,89456641,89718785,89784321,89849857,89915393,89980929,90046465,90243073,90505217,90570753,90701825,90767361,90832897,90898433,91226113,91488257,91553793,93257729,96206849,96272385,96534529,96600065,96665601,96796673,96862209,96927745,96993281,97058817,97124353,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99549185,99614721,99680257,99745793,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102301697,102498305,102694913,104529921,104595457,106692609,106758145,106823681,106889217,106954753,107020289,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,108134401,108199937,108265473,108331009,108658689,109510657,109576193,111476737,111738881,111804417,111869953,111935489,112066561,113377281,113508353,113573889,113704961,113770497,113836033,114032641,114098177,114163713,114229249,114294785,114360321,114884609,115015681,115474433,115539969,115605505,115671041,115736577,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,126025729,126091265,126222337,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127926273,128319489,128385025,128581633,128778241,128843777,128909313,128974849,129302529,129368065,129433601,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133890049,134217729,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135397377,135593985,135725057,135790593,135856129,135921665,136052737,136118273,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,138543105,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144310273,144441345,144769025,144834561,144965633,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145752065,145817601,145883137,145948673,146014209,146341889,146407425,146472961,146538497,147652609,148307969,148373505,148439041,148570113,148635649,148701185,148766721,148832257,149028865,149094401,149159937,149225473,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150994945,151388161,151519234,151781377,151846913,151912449,151977985,154337281,154664961,154861569,154992641,155385857,155451393,155516929,155779073,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,158072833,158203905,158334977,158400513,158531585,158597121,160497665,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161546241,161873921,162070529,162201601,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163840001,163905537,163971073,164036609,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,165412865,165543937,165871617,165937153,166330369,166526977,166723585,166854657,166920193,166985729,167051265,167116801,167444481,167968769,168034305,169279489,169345025,169410561,169476097,169541633,169803777,170196993,170459137,171835393,172425217,173670401,174063617,174194689],"mutable":[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],"moved":[3473412,64159745,166264833],"methods":[4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,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,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,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,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,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,63373313,63438849,63766529,64159745,88080385,147456001,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650306,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,170721281,171048962,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"memberwiseclone":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"maximum":[5242883,25624578,26214402,26279938,28639233,28770305,30998529,32374785,32440321,63832068,64094209,64159745,64749569,65011714,72351745,72876034,73334785,86507521,88080385,91422721,92798978,93847553,140115970,147390465,151650307,151781377,152436739,152829953,152895489,152961026,155058177,163774465,168886273,171048961],"method":[5242881,8519683,12713985,21561345,22806530,22937601,23134209,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690114,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,28180481,28311553,28377089,28901377,28966913,29032449,29163521,29294593,29491201,29556737,29622273,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36044801,36241409,36306945,36569089,36634625,36831233,36896769,37027841,37093377,37289985,37355521,37486593,37552129,37617665,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666242,38731778,38797315,38862849,38928385,38993921,39059457,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45088769,45154305,45416449,47054849,47775745,47906817,48103425,48365569,48431105,48496641,48562177,48627713,48693249,48758786,49610753,50069505,50135041,50200577,50266113,52101121,54591489,54657025,54722561,58720257,59047937,59113474,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60555265,60620801,60686337,60751873,60882945,60948481,61014017,61145089,61276161,61341697,61669377,62062593,62128129,62193665,62259201,62324737,62521345,62586881,62783489,62849025,62914561,63045633,63111171,63176705,63504385,63569921,63635457,63897601,64094209,64552961,64618497,64684033,64749569,64815106,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65732609,67371009,67436545,67502081,67567619,67633153,70582274,71237633,71303169,71368705,71434241,71761921,71958529,72024065,72089601,74645505,74711041,79167489,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080386,88145921,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,109969409,132055041,146604033,146669569,149749761,151191553,151257089,151322625,151650305,154402817,154468353,154533889,154927107,159186947,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048962,171180033,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174260225,174915586,174981121],"music":[5242883,26083330,27787265,34799618,34865156,63832066,64946178,66912260,74186754,95223812,151650307,153812993,153878535],"milliseconds":[5242883,21626881,22609921,25559041,25624577,26214402,26279938,28049410,30932993,30998529,32047105,32374785,32440321,35913729,59637761,59965441,60096513,62521345,63832068,65011714,71368705,72876033,73203713,73269249,73334785,74579969,75104257,77791233,88080389,92864513,93388801,93454337,93847553,96010241,97714177,105709569,146604033,146669569,147193857,147259393,147456001,151650307,152436737,152829954,152895490,152961026,154271746,155123713,157810689,171048966,174063617],"maxsilence":[5242884,26214402,26279943,32440325,63832066,65011716,151650308,152961026],"message":[5242882,8519683,23330823,23396359,23527430,27983880,35717126,38666241,38731778,38797314,39911425,39976961,46006278,49807367,49872903,49938439,60358663,60424199,62717959,62980097,63832066,64094209,64225281,64290817,64421890,67567618,67895298,70975490,71565314,71958530,72024066,72089602,74514434,74645506,74711042,78184449,79626242,79691778,86704129,88145922,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,89063426,95944710,106889222,140902405,149880838,151191556,151257090,151322626,151650306,154206212,154402818,154468354,154927107,155385858,157286401,158203905,160628740,161939459,169082881,171180036,173539330,173604866,173670402,173735938,173801474,173867010,173932547,173998082,174260227,174850050],"mappingstrategies":[8126465,8192001,8257537,36241413,36306947,36372482,36438020,36503555,36569093,36634627,36700162,36765699,36831237,36896776,36962306,63897601,67174401,67239937,74776577,74842113,96206851,96272387,96337922,96403458,96468994,154533891,154599427,154664964,154730500],"mappingstrategy":[8323075,23199749,28508166,28573702,28704774,37027845,37093379,37158919,37224456,63766530,63897602,67305478,72351746,74907651,91357191,96534531,151781378,154533889,154599425,154730508],"messagelevel":[8519682,38666254,38731787,38797323,63700993,67567618,154927106,154992646],"manageraction":[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,11075587,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,21626885,44498948,44564486,59179017,59244554,59834376,59899914,59965448,61407239,64094210,64159745,64225281,71237634,71368707,75038724,75104260,75169796,75235332,75300868,75366404,75431940,75497476,75563012,75628548,75694084,75759620,75825156,75890692,75956228,76021764,76087300,76152836,76218372,76283908,76349444,76414980,76480516,76546052,76611588,76677124,76742660,76808196,76873732,76939268,77004804,77070340,77135876,77201412,77266948,77332484,77398020,77463556,77529091,77594628,77660164,77725700,77791236,77856772,77922308,77987844,78053380,78118916,78184452,78249988,78315524,78381060,78446596,78512132,78577668,78643204,78708740,78774276,78839812,78905348,78970884,79036420,79101956,79167492,79233028,79298564,79364100,79429636,79495172,79560708,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835202,87293954,87359490,87883778,87949314,88080386,104464386,104529923,104595459,104660994,141230081,141295617,146407430,147456002,148307975,148701191,155058186,155123722,155189258,155254790,155320330,155385866,155451402,155516938,155582474,155648010,155713546,155779082,155844614,155910150,155975690,156041226,156106762,156172298,156237834,156303370,156368906,156434442,156499978,156565514,156631050,156696586,156762122,156827654,156893194,156958730,157024266,157089798,157155338,157220874,157286410,157351946,157417482,157483018,157548555,157614091,157679626,157745162,157810694,157876234,157941766,158007306,158072842,158138378,158203914,158269450,158334986,158400522,158466058,158531594,158597130,158662662,158728202,158793738,158859274,158924806,158990342,159055878,159121418,159186950,159252490,159318026,159383562,159449098,159514630,159580170,162988034,163053570,164495362,164626434,165019650,167444482,167510018,167641090,167772162,167837698,168230914,168427522,168886274,168951810,169213955,169672706,169738242,170262530,170328066,171048967,173998081],"manageractionevent":[8781825,9371649,9437185,10354689,11141123,11337729,11468801,12189697,12451841,12517377,12582913,13041665,21626882,44236803,44302342,60030985,60096521,61079560,64094210,71434242,77594627,155254790,155844614,155910150,156827654,157548545,157614091,157810694,157941766,158662662,158924806,158990342,159055878,159514630,171048962],"manageractionresponse":[10616833,11206659,12713985,44367875,44433414,64094210,77660163,157089798,157548545,157679626,159186950],"mailboxcountaction":[10944515,43974663,44040199,64094211,64225281,69468166,77398019,104202242,104267778,157417485,157548545,173801474],"mailboxstatusaction":[11010051,44105735,44171271,64094211,64225281,69533702,77463555,104333314,104398850,157483021,157548545,173867010],"monitoraction":[11272195,44630023,44695559,44761095,44826631,64094210,69599242,77725699,104726530,104792066,104857602,104923138,104988674,157548545,157745168],"manage":[12713985,48758785,70582273,159186945],"managerevent":[13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,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,17301506,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,21168130,21233667,21299203,21364739,21430275,21495811,54591490,54657026,54722562,54788103,54853639,60948487,64159746,71172102,79757320,79822856,79888392,79953928,80019464,80085000,80150536,80216072,80281608,80347144,80412680,80478216,80543752,80609288,80674824,80740360,80805896,80871432,80936968,81002504,81068040,81133576,81199112,81264648,81330184,81395720,81461256,81526792,81592328,81657864,81723400,81788936,81854472,81920008,81985544,82051080,82116616,82182152,82247688,82313224,82378760,82444296,82509832,82575368,82640904,82706440,82771976,82837512,82903048,82968584,83034120,83099656,83165192,83230728,83296264,83361800,83427336,83492872,83558408,83623944,83689480,83755016,83820552,83886083,83951624,84017160,84082696,84148232,84213768,84279304,84344840,84410376,84475912,84541448,84606984,84672520,84738056,84803592,84869128,84934664,85000200,85065736,85131272,85196808,85262344,85327880,85393416,85458952,85524488,85590024,85655560,85721096,85786632,85852168,85917704,85983240,86048776,86114312,86179848,86245384,86310920,86376456,86441992,86507528,86573064,86638600,86704136,86769672,86835208,86900744,86966280,87031816,87097352,87162888,87228424,87293960,87359496,87425032,87490568,87556104,87621640,87687176,87752712,87818248,87883784,87949320,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,162005004,162070544,162136080,162201617,162267153,162332688,162398225,162463760,162529296,162594828,162660364,162725900,162791436,162856976,162922512,162988044,163053580,163119120,163184656,163250192,163315728,163381264,163446800,163512336,163577868,163643404,163708940,163774480,163971084,164036624,164102160,164167696,164233232,164298764,164364300,164429836,164495372,164560908,164626444,164691980,164757516,164823052,164888588,164954128,165019660,165085196,165150732,165216272,165281804,165347344,165412880,165478416,165543952,165609484,165675020,165740560,165806096,165871632,165937168,166002700,166068236,166133771,166199312,166264845,166330380,166395916,166461452,166526988,166592524,166658060,166723596,166789136,166854672,166920208,166985744,167051280,167116816,167182352,167247884,167313424,167378956,167444492,167510028,167575564,167641100,167706636,167772172,167837708,167903248,167968784,168034320,168099852,168165388,168230924,168296464,168361996,168427532,168493068,168558604,168624140,168689676,168755212,168820748,168886284,168951820,169017360,169082892,169148432,169213969,169279504,169345040,169410576,169476112,169541648,169607180,169672716,169738252,169803792,169869328,169934864,170000395,170065932,170131472,170197008,170262540,170328076,171114501],"meetmeendevent":[17498115,54919175,64159745,83951619,162267137,166330378],"meetmejoinevent":[17563651,54984711,64159746,84017155,132579331,132644867,162267137,166395914,171311109],"meetmeleaveevent":[17629187,55050247,64159746,84082691,132710403,132775939,132841475,162267137,166461450,171376645],"meetmemuteevent":[17694723,55115783,64159745,84148227,132907011,162267137,166526986],"meetmestoptalkingevent":[17760259,55181319,64159746,84213763,162267137,166592522],"meetmetalkingevent":[17825795,55246855,64028673,64159746,84279299,132972547,162267137,166658058,171442182],"meetmetalkrequestevent":[17891331,55312391,64159745,84344835,133038083,162267137,166723594],"messagewaitingevent":[17956867,55377927,64159746,84410371,133103618,133169154,133234690,133300226,166264833,166789130,171507717],"mobilestatusevent":[18022403,55443463,64159745,84475907,133365763,133431299,166264833,166854666],"moduleloadreportevent":[18087939,55508999,64159745,84541443,133496835,133562371,133627907,166264833,166920202],"monitorstartevent":[18153475,55574535,64159745,84606979,166264833,166985738],"monitorstopevent":[18219011,55640071,64159745,84672515,166264833,167051274],"md5":[21626882,40304641,59572225,59637761,62783489,64290817,68091905,71303170,75563009,77266945,99876865,103809025,155582466,157286401,171048962,174850049],"managerreader":[21757955,60489735,64028674,171245578],"map":[22282241,61669377,79167489,88670209,109969409,149291009,159186945,173735938],"md5support":[22740995,62783495,62849031,62914562,62980101,64290817,71761922,89128963,150732802,174850056],"messagedigestsupport":[22740994,62783489,62849026,71761922,174850050],"making":[22740993,62914561,174850049],"member":[22937601,23134209,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24313857,24379393,24444929,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,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28180481,28311553,28377089,28966913,29556737,29622273,36831233,36896769,37289985,37355521,37486593,37552129,37617665,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39387137,39452673,44957697,45088769,45744130,45809667,45875204,46137346,46202884,46268419,46333957,46399489,46465025,46727171,48431105,48496641,48562177,48627713,48693249,48758785,50069505,50200577,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60555265,60620801,60686337,60751873,60948481,61145089,61669377,62062593,62128129,62521345,62783489,62849025,62914561,63045633,63176705,63504385,63569921,64028677,64094212,64159751,69730307,69861380,69926914,70057985,78118917,78249989,78446593,78643202,79757313,80150543,80412673,80478209,80543745,83230721,85983246,86048781,86114318,86179856,86245390,86310926,86376463,86441998,86507521,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97255425,97320961,97386497,97517569,97583105,97648641,97714177,97845249,97910785,98107393,98172929,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99287041,99352577,99418113,99483649,99614721,99680257,99745793,99876865,100007937,100073473,100204545,100335617,100401153,100532225,100728833,100859905,100925441,101056513,101122049,101253121,101384193,101515265,101646337,101711873,102039553,102170625,102236161,102367233,102432769,102563841,102629377,102760449,102825985,102891521,103022593,103153665,103219201,103350273,103481345,103546881,103677953,103809025,103874561,103940097,104005633,104071169,104267777,104398849,104529921,104660993,104792065,104857601,104923137,104988673,105054209,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105906177,105971713,106037249,106102785,106364929,106430466,106496003,106561538,106627074,106758145,106823681,106889217,106954753,107020289,107151362,107216900,107282434,107413505,107479041,107544577,107675649,107741185,107806721,107872257,108003329,108068866,108199937,108331009,108462087,108527617,108658689,108724225,108789761,108855297,108920833,109051905,109117441,109182977,109314049,109379585,109445121,109641729,109838337,109969409,110034945,110100481,110166017,110297089,110362625,110493697,110624769,110755841,110952449,111017985,111083526,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394242,112459778,112525313,112590850,112656385,112721922,112787463,112852995,112918530,112984066,113049601,113115137,113180673,113246210,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691138,137756674,137822209,137887751,137953283,138018818,138084354,138149890,138215426,138280961,138346498,138412039,138477570,138543105,138608642,138674177,138739715,138805249,138870785,138936322,139001858,139067393,139132929,139198465,139264002,139329538,139395074,139460609,139526151,139591683,139657218,139722753,139788290,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443650,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148439041,148504577,148570113,148635649,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,151519233,154992641,158138377,158269450,158334978,158466051,158662659,160497665,162004993,162398224,162660353,162725889,162791425,163840001,163905537,165609473,168361999,168427534,168493071,168558609,168624143,168689679,168755215,168820750,168886273,172687361,172752897,172818433,172883969,172949505],"means":[25559042,25624578,30932994,30998530,72876034,92864514,152436738],"maxdigits":[25624581,30867457,30932993,30998534,66060291,72876033,92798981,152436740],"musiconholdclass":[26148870,34865157,74186753,95223813,153878529],"mustoverride":[27262977,28901377,44236801,44367873,104464385],"maybe":[29818881,29884417,35454977],"meaning":[31981569,32178177,66322433,66387969,72155137,77791233,89325569,105709569,151453697,152829953,152895489,157810689],"mode":[35586055,74448900,95748102,95813634,154140677],"mate":[35586049,74448897,95813633,154140674],"msg":[37683205,37879814,37945350,38141958,38207494,38404102,38469638,38928390,38993926],"msgtype":[39976966,75366401,98959366,155385857],"monitoring":[40501249,44695553,44761089,44826625,48300033,64094211,68157441,69599235,70516737,79101953,109838337,155648002,157745156,159121411],"monitored":[40501249,64094209,75628545,100007937,155648002],"mutes":[41222145,41287681,68419586,156041218],"monitor":[41484289,41549825,44695553,44761089,44826625,68550658,77725698,104726529,104792065,156172290,157745154],"mask":[42991618,43843585,69140481,76939265,77266945,103022593,103874561,156958722,157286401],"match":[43778049,43843585,48758791,64094211,64225281,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167490,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,109969409,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186949,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082],"messages":[44040193,44171265,64094210,64225282,69468161,69533697,77463553,84410372,88735746,88801281,104398849,133103617,133169153,133234689,133300225,149422081,149487617,149618689,157417474,157483011,166789124,173801475,173867010],"mailbox":[44040200,44171272,64094210,64225281,69468161,69533697,77398019,77463555,84410374,88735748,88801281,104267783,104398855,133103623,133169153,133234689,133300225,149356550,149422081,149487617,149553157,157417477,157483013,166789126,173801477,173867009],"mailboxnumber":[44040193,44171265,77398017,77463553,104267777,104398849,157417473,157483009],"mix":[44826629,77725697,104988677,157745153],"msec":[45350913,77856769,106102785,157876225],"membername":[45809669,45875205,78118913,79757313,80150529,80412673,80478209,80543745,83230721,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,106430469,111149061,112721925,137822213,138346501,139132933,139460613,158138369,162004993,162398209,162660353,162725889,162791425,165609473,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"makes":[46137345,46202881,46268417,46333953,64094209,69861380,158269445],"make":[46137345,46202883,46268417,46333955,63766529,78249987,107151361,107216898,151650305,158269443],"mapping":[63897602,72351746,91357186,151781378,154533889],"managereventhandler":[64028673,171114501],"meetmejoineventhandler":[64028673,171311109],"meetmejoin":[64028673,171311105],"meet":[64028675,64159749,162267137,166395905,166461441,166592513,166658049,171311105,171376641,171442177],"meetmeleaveeventhandler":[64028673,171376645],"meetmeleave":[64028673,171376641],"meetmetalkingeventhandler":[64028673,171442181],"meetme":[64028673,80019457,83951617,84017153,84082689,84148225,84213761,84279297,84344833,112001029,162267137,166330369,166395905,166461441,166526977,166592513,166658049,166723585,171442177],"messagewaitingeventhandler":[64028673,171507717],"messagewaiting":[64028673,171507713],"matches":[64094209,156827649],"manageractions":[64094210,157614081,157679617],"module":[64094209,64159745,79167489,86704129,110100481,140967941,159186946,166264833,169082881],"membe":[64159746,79757314,80150530,80412674,80478210,80543746,83230722,85983235,86048769,86114306,86179842,86245378,86310915,86376450,86441987,111083521,111149057,112525313,112656385,137822209,138280961,139132929,139460609,162004994,162398210,162660354,162725890,162791426,165609474,168361987,168427521,168493058,168558594,168624130,168689667,168755203,168820740],"mailboxes":[64225281,77463554,88801282,104398850,149553153,149618689,157483010,173867011],"mandatory":[75104258,75628546,77398017,77463553,77725697,78118914,78249985,78446593,78774274,78970881,79101953,79233026,79298561,79364097,79429633,79560705,97517569,97648641,97845249,100007937,100073473,104267777,104398849,104792065,106364929,106627073,107151361,108003329,109117441,109182977,109641729,109838337,110297089,110362625,110493697,110624769,110755841,110952449,155123714,155648002,157417473,157483009,157745153,158138370,158269441,158466049,158793730,158990337,159121409,159252482,159318017,159383553,159449089,159580161],"minimum":[75104257,97714177,155123713],"mutually":[77266945,104005633,157286401],"mailboxcount":[77398017,104202241,157417473],"mailboxstatus":[77463553,104333313,157483009],"multiple":[77463553,77791234,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104398849,105250817,105775105,132251649,149946369,157483009,157810690,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"mycontext":[77463553,104398849,157483009],"membership":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,112787461,137887749,138412037,139526149,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"markeduser":[82182145,127270918,164560897],"marked":[82313217,127401990,164691969],"modulecount":[84541441,133496838,166920193],"moduleloadstatus":[84541441,133562374,166920193],"moduleselection":[84541441,133627910,166920193],"max":[86507521,140115973,168886273],"maxlen":[86507521,140115969,168886273],"mustinherit":[151650305,151846913,157548545,157614081,157679617,158072833,162004993,162070529,162136065,162267137,162332673,162398209,163512321,164036609,164954113,166264833,168296449,169213953]} \ No newline at end of file diff --git a/docs/fti/FTI_110.json b/docs/fti/FTI_110.json index 463ddeb..99c4256 100644 --- a/docs/fti/FTI_110.json +++ b/docs/fti/FTI_110.json @@ -1 +1 @@ -{"net":[196611,42795012],"namespace":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,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,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,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,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,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,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,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,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,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,39190530,39256066,39321602,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,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236802,44302338,44367874,44433410,44498946,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741826,49807362,49872898,49938434,50003970,50069506,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593794,50659330,50724866,50790402,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232194,52297730,52363266,52428802,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346306,53411842,53477378,53542914,53608450,53673986,53739522,53805058,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591490,54657026,54722562,54788098,54853634,54919170,54984706,55050242,55115778,55181314,55246850,55312386,55377922,55443458,55508994,55574530,55640066,55705602,55771138,55836674,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950786,57016322,57081858,57147394,57212930,57278466,57344002,57409538,57475074,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720258,58785794,58851330,58916866,58982402,59047938,59113474,59179010,59244546,59310082,59375618,59441154,59506690,59572226,59637762,59703298,59768834,59834370,59899906,59965442,60030978,60096514,60162050,60227586,60293122,60358658,60424194,60489730,60555266,60620802,60686338,60751874,60817410,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472770,61538306,61603842,61669378,61734914,61800450,61865986,61931522,61997058,62062594,62128130,62193666,62259202,62324738,62390274,62455810,62521346,62586882,62652418,62717954,62783490,62849026,62914562,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504386,63569922,63635458,63700994,63766530,63832066,63897602,63963138,64028674,64094210,64159746,64225282,64290818,64356354,64421890,64487426,64552962,64618498,64684034,64749570,64815106,64880642,64946178,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,65601538,65667074,65732610,65798146,65863682,65929218,65994754,66060290,66125826,66191362,66256898,66322434,66387970,66453506,66519042,66584578,66650114,66715650,66781186,66846722,66912258,66977794,67043330,67108866,67174402,67239938,67305474,67371010,67436546,67502082,67567618,67633154,67698690,67764226,67829762,67895298,67960834,68026370,68091906,68157442,68222978,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812802,68878338,68943874,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337922,96403458,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650306,151715842,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746,154337282,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927106,154992642,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497666,160563202,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,175964162,176029698,176095234,176160770,176226306,176291842,176357378,176422914,176488450,176553986,176619522,176685058,176750594,176816130,176881666,176947202,177012738,177078274,177143810,177209346,177274882,177340418,177405954,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242,177995778,178061314,178126850,178192386,178257922,178323458,178388994,178454530,178520066,178585602,178651138,178716674,178782210,178847746,178913282],"newly":[786433,2424833,175046657],"native":[786433,3604481,69468161,85065729,85131265,85655553,85721089,85786625,85852161,88539137,116523009,166068225,166133761,166658049,166723585,166789121,166854657,167968769,169672705,170196993,175046657],"newcallerid":[786434,3997702,175046658],"newchannel":[786434,4063238,175046658],"new":[786434,4063233,4128769,10682369,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,28114946,28246017,28377091,28442627,28573699,28639235,28704771,28770307,28835843,28901379,29097987,29556739,29622275,29949955,30605313,33095682,33488899,33619971,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34471939,34603011,34734083,34799619,35061763,35127299,35192835,35258371,35389443,35454979,35586051,35651587,35782659,35913731,36044803,36110339,36241411,36306947,36372483,36503555,36569091,36700163,36765699,36896771,37027843,37093379,37224451,37355523,37421059,37552131,37617667,37748739,37814275,37945347,38010883,38141955,38207491,38273027,38338563,38469635,38535171,38666243,38731779,38862851,38928387,39059459,39124995,39256067,39387139,39518211,39649284,39780355,39911427,40042499,40173571,40239107,40370179,40435715,40566787,40697859,40763395,40828931,40960003,41091075,41222147,41287683,41484291,41549827,41746435,41811971,41877507,42074115,42139651,42336259,42532867,42598403,42795011,43122690,44498947,44564483,44630019,44695555,44761091,44826627,44892163,44957699,45023235,45154307,45219843,45285378,45350914,45416450,45481986,45547522,45613058,45678595,45744132,45809667,45875203,45940739,46006275,46071810,46137346,46268418,46399491,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382531,47448067,47513603,47579138,47644674,47710211,47775747,47841283,47906819,48037891,48103427,48168963,48234499,48300035,48365571,48431107,48562179,48627714,48693251,48758787,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49676291,49807363,49938435,50003971,50069507,50135043,50200579,50593795,50659331,50724867,50855939,50921475,50987011,51052547,51118085,51183622,51249158,51314690,51380226,51445763,51511299,51576835,51642371,51707907,51773442,51838978,51904514,51970050,52035587,52101123,52166658,52232194,52297731,52363267,52494339,52559875,52625411,52690947,52756483,52822020,52887556,52953091,53018629,53084165,53215235,53346307,53411843,53542915,53608451,53673987,54198275,54263811,54329347,54394883,54460419,54525955,54591491,54657027,54722563,54788099,54853635,54919171,55050243,55115779,55181315,55246851,55312387,55377923,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59047939,59113475,59179011,59244547,59310083,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,60162051,60227587,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766531,63832067,63897603,63963139,64094211,64159747,64225283,64290819,65470467,65536003,65601539,65667075,65732611,65798147,66125827,66387971,66519043,66715651,66781187,66846723,66912259,67043331,67108867,67174403,67239939,67305475,67371009,67698691,67764227,67960835,68026371,68091906,68157442,68288514,68550659,68616195,68681731,68747267,68812801,68943875,69074945,69402627,69468166,69533697,69664770,69730307,69795842,70909959,70975490,71106564,71172098,71237634,71303170,71368707,71434242,71499778,71565314,71630850,71696386,71761922,71827458,71892996,71958530,72024066,72089602,72155138,72220674,72286210,72351747,72417282,72482819,72548354,72613890,73007106,73072643,73138179,73400323,73465858,73531394,74186754,74252290,74317826,74383362,74448898,74514433,74579971,74645506,74711044,74776578,74842114,74907652,74973186,75038727,75169797,75366402,75497474,75563011,75628547,75694085,75759618,75825154,75956228,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76808195,76873730,76939266,77004802,77070338,77135876,77660161,79298561,80412673,83427329,89718787,90112002,92012545,93978625,94044161,96534529,100270081,102957057,111869953,137625606,137756673,138280961,138412033,145162241,153485313,153681921,155123714,155189250,155254787,155320321,155385857,155451393,155516930,155648001,155713538,155779073,155844616,155910145,155975681,156041218,156106756,156172290,156237826,156303361,156368897,156434434,156499971,156565506,156631042,156696577,156762114,156827649,156893186,156958722,157024258,157089794,157155332,157220866,157286402,157351938,157417474,157483009,157548545,157614081,157679618,157745153,157810689,157876225,157941762,158007298,158072833,158138371,158203905,158269441,158334978,158466049,158531585,158597123,158662658,158728193,158793730,158859265,158990337,159121411,159186948,159252483,159318017,159383553,159645699,159711234,159776770,159973377,160497665,160563201,160628737,160759810,160825346,160890882,160956418,161021954,161087489,161153025,161218563,161284098,161349636,161415169,161480706,161546242,161611777,161677313,161742849,161808388,161873921,161939458,162004993,162070529,162136065,162201609,162332677,162529282,162660354,162725889,162791428,162856963,162922501,162988033,163053570,163119105,163184642,163250180,163315714,163381250,163446786,163512322,163577857,163643393,164691970,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607170,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852356,170917889,170983425,171048961,171114497,171180033,171245571,171311106,171376642,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687362,172752897,172818433,172883969,172949505,173015041,173080577,173146114,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129155,174194689,174260225,174325761,175046661,175177730,175243265,175833089,177274881,177340417,177405953,177471490,177537026,177602562,177668098,177733636,177799171,177864707,177930243,177995777,178192385,178782210,178847748,178913282],"newexten":[786434,4128774,175046658],"newstate":[786434,4194310,175046658],"newcallerideventhandler":[3997703,69337089,175570950],"newcalleridevent":[3997697,23789571,61145095,69468162,90112003,138280962,138346499,138412034,138477570,138543106,170328065,171245578,175570949],"newchanneleventhandler":[4063239,69337089,175636486],"newchannelevent":[4063233,23855107,61210631,69468163,90177539,166199298,171311114,175636485],"newexteneventhandler":[4128775,69337089,175702022],"newextenevent":[4128769,23920643,61276167,69468162,90243075,138608642,138674179,138739714,138805250,138870786,138936322,170328065,171376650,175702021],"newstateeventhandler":[4194311,69337089,175767558],"newstateevent":[4194305,23986179,61341703,69468163,90308611,166199298,171442186,175767557],"newname":[6684673,9764870,92012545,145162245,173146114],"need":[6750209,9895937,69402625,159186945,175046657],"numerical":[10682372,30081025,30146561,30212097,30277633,69140490,69861380,77266945,77332481,77398017,79953921,80019457,84934657,85000193,86114305,93388801,94306305,119865345,155254785,155320321,155385857,155713540,156106753,156631041,157089793,157155329,157220865,157286401,157351937,157417473,158138369,158334977,158466049,158531585,164691969,166002689,167116801,175177729,178192385],"number":[10682380,27656193,30998530,31588353,31653889,31784961,32178178,32243719,32309256,32440321,32571393,32702465,34013186,34144258,36372481,38666246,38731783,39518209,49414146,49545217,54525959,54919169,66977793,68943873,69140486,69402627,69533697,70057985,70320130,70385665,70516738,70582275,70647809,70713345,74776577,76021761,76218369,77660162,78184450,78905347,79233025,82706433,84541443,84606977,84672513,84738049,84869121,85327873,85393410,85590017,85655553,88014849,88080385,88145921,88539137,88932355,88997890,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718787,90439683,90505218,90636290,90767361,91029506,91095042,91160578,91226114,91291649,91357185,91684865,91750404,92602370,92930050,93978626,96665602,98041858,99680257,99745798,100204546,109510657,115539974,115605505,115736577,115867649,115998721,116195329,117243905,117374977,117506049,118095873,118423553,132579329,134217729,136118273,137625601,137691137,137756673,139460609,139591681,139788289,140640257,141688833,141950977,142016514,142147585,142606337,143917058,143982594,144048130,144179202,148766722,149094402,153485313,153550849,155713548,155844610,156499971,157024257,157286405,157417473,157614082,159121409,161480707,163315717,163381249,163446785,163512322,163643393,166330369,166395906,166592513,166658049,169148417,169213953,169279489,169672705,170065923,170131458,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852355,171573251,171638786,171769858,171900929,172163074,172228610,172294146,172359682,172425217,172490753,172818433,172883972,173735938,174063618,177668097,177733635],"names":[10682369,31064065,69140482,70123521,93913089,94044161,153354241,153616385,155713537,156565505,157483009,177668097,177799169],"noopcommand":[11796483,37158916,37224454,69074947,69140481,69206019,155910145,156827657,158662659,158793731],"null":[18153474,29163521,29360129,29425665,31064065,31129601,31326209,31916033,31981569,32047105,35192833,35258369,38207489,38273025,38338561,40828929,54132738,67371009,75890690,77791233,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881474,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,94568449,96862209,98566145,100466689,103153665,116260865,136642561,144900097,156106753,163250178,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015042,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"newaccountcodeevent":[23724035,61079559,69468161,90046467,138149891,138215427,170328065,171180042],"newline":[42926081],"newcat":[54132737,69402625,163250177],"newdata":[68222981],"numthreads":[68943878,178913281],"network":[69074945,155385857],"needed":[69402625,69533697,80412673,102629377,159186945,161873921,177471489],"numbers":[69402625,93913089,153354241,163250177,177668097],"networkstream":[80281601,102170636,158924801],"numberofmailbox":[89718785,137560065,170852353],"numb":[90112001,138412033,171245569],"natsupport":[90701825,140247046,171835393],"newmessages":[93978625,153485317,177733633],"notinheritable":[155058177,158990337],"nat":[167968769]} \ No newline at end of file +{"net":[196611,37421060],"namespace":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,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,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,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,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,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,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,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,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,39190530,39256066,39321602,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,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236802,44302338,44367874,44433410,44498946,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741826,49807362,49872898,49938434,50003970,50069506,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593794,50659330,50724866,50790402,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232194,52297730,52363266,52428802,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346306,53411842,53477378,53542914,53608450,53673986,53739522,53805058,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591490,54657026,54722562,54788098,54853634,54919170,54984706,55050242,55115778,55181314,55246850,55312386,55377922,55443458,55508994,55574530,55640066,55705602,55771138,55836674,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950786,57016322,57081858,57147394,57212930,57278466,57344002,57409538,57475074,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720258,58785794,58851330,58916866,58982402,59047938,59113474,59179010,59244546,59310082,59375618,59441154,59506690,59572226,59637762,59703298,59768834,59834370,59899906,59965442,60030978,60096514,60162050,60227586,60293122,60358658,60424194,60489730,60555266,60620802,60686338,60751874,60817410,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472770,61538306,61603842,61669378,61734914,61800450,61865986,61931522,61997058,62062594,62128130,62193666,62259202,62324738,62390274,62455810,62521346,62586882,62652418,62717954,62783490,62849026,62914562,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504386,63569922,63635458,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337922,96403458,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650306,151715842,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746,154337282,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927106,154992642,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497666,160563202,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122],"newname":[1245185,4325382,86769665,141099013,169148418],"need":[1310721,4456449,64094209,155123713,171048961],"numerical":[5242884,24707073,24772609,24838145,24903681,63832074,64552964,71958529,72024065,72089601,74645505,74711041,79626241,79691777,80805889,88145921,89063425,115408897,151191553,151257089,151322625,151650308,152043521,152567809,153026561,153092097,153157633,153223169,153288705,153354241,154075137,154271745,154402817,154468353,160628737,161939457,163053569,171180033,174260225],"number":[5242892,22282241,25624578,26214401,26279937,26411009,26804226,26869767,26935304,27066369,27197441,27328513,28639234,28770306,30998529,33292294,33357831,34144257,44040194,44171265,49152007,49545217,61669377,63635457,63832070,64094211,64225281,64749569,65011714,65077249,65208322,65273859,65339393,65404929,69468161,70713345,70909953,72351746,72876034,73596931,73924609,77398017,79233027,79298561,79364097,79429633,79560705,80019457,80084994,80150529,80281601,80347137,82706433,82771969,82837505,83230721,83623939,83689474,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410371,85131267,85196802,85327874,85458945,85721090,85786626,85852162,85917698,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507524,87359490,87687170,88735746,91422722,92798978,94437377,94502918,94961666,104267777,110297094,110362625,110493697,110624769,110755841,110952449,112001025,112132097,112263169,112394241,113639425,113967105,128122881,129761281,131661825,133169153,133234689,133300225,135004161,135135233,135331841,136183809,137232385,137494529,137560066,137691137,138149889,139264001,139853826,139919362,139984898,140115970,144703490,145031170,149422081,149487617,151650316,151781378,152436739,152961025,153223173,153354241,153550850,155058177,157417475,159252485,159318017,159383553,159449090,159580161,162267137,162332674,162398209,162529281,162594817,165085185,165150721,165216257,165609473,166002691,166068226,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789123,167510019,167575554,167706626,167837697,168099842,168165378,168230914,168296450,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886276,169738242,170065922,173735937,173801475],"names":[5242881,25690113,63832066,64815105,88670209,88801281,149291009,149553153,151650305,152502273,153419777,173735937,173867009],"new":[5242881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22740994,22872065,23003139,23068675,23199747,23265283,23330819,23396355,23461891,23527427,23724035,24182787,24248323,24576003,25231361,27721730,28114947,28246019,28442627,28508163,28573699,28639235,28704771,28770307,28835843,29097987,29229059,29360131,29425667,29687811,29753347,29818883,29884419,30015491,30081027,30212099,30277635,30408707,30539779,30670851,30736387,30867459,30932995,30998531,31129603,31195139,31326211,31391747,31522819,31653891,31719427,31850499,31981571,32047107,32178179,32243715,32374787,32440323,32571395,32636931,32768003,32833539,32899075,32964611,33095683,33161219,33292291,33357827,33488899,33554435,33685507,33751043,33882115,34013187,34144259,34275332,34406403,34537475,34668547,34799619,34865155,34996227,35061763,35192835,35323907,35389443,35454979,35586051,35717123,35848195,35913731,36110339,36175875,36372483,36438019,36503555,36700163,36765699,36962307,37158915,37224451,37421059,37748738,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39780355,39845891,39911426,39976962,40042498,40108034,40173570,40239106,40304643,40370180,40435715,40501251,40566787,40632323,40697858,40763394,40894466,41025539,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008579,42074115,42139651,42205186,42270722,42336259,42401795,42467331,42532867,42663939,42729475,42795011,42860547,42926083,42991619,43057155,43188227,43253762,43319299,43384835,43450371,43515907,43581443,43646979,43712515,43778051,43843587,43909123,43974659,44040195,44105731,44171267,44302339,44433411,44564483,44630019,44695555,44761091,44826627,45219843,45285379,45350915,45481987,45547523,45613059,45678595,45744133,45809670,45875206,45940738,46006274,46071811,46137347,46202883,46268419,46333955,46399490,46465026,46530562,46596098,46661635,46727171,46792706,46858242,46923779,46989315,47120387,47185923,47251459,47316995,47382531,47448068,47513604,47579139,47644677,47710213,47841283,47972355,48037891,48168963,48234499,48300035,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49676291,49741827,49807363,49872899,49938435,50003971,50331651,50397187,50462723,50528259,50593795,50659331,50724866,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52166659,52232195,52297731,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54788099,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58785795,58851331,58916867,58982403,60162051,60227587,60293123,60358659,60424195,60489731,60817411,61079555,61210627,61407235,61472771,61538307,61603843,61734915,61800451,61865987,61931523,61997059,62062593,62390275,62455811,62652419,62717955,62783490,62849026,62980098,63242243,63307779,63373315,63438851,63504385,63635459,63766529,64028674,64094211,64159750,64225281,64356354,64421891,64487426,65601543,65667074,65798148,65863682,65929218,65994754,66060291,66125826,66191362,66256898,66322434,66387970,66453506,66519042,66584580,66650114,66715650,66781186,66846722,66912258,66977794,67043331,67108866,67174403,67239938,67305474,67698690,67764227,67829763,68091907,68157442,68222978,68878338,68943874,69009410,69074946,69140482,69206017,69271555,69337090,69402628,69468162,69533698,69599236,69664770,69730311,69861381,70057986,70189058,70254595,70320131,70385669,70451202,70516738,70647812,70713346,70778882,70844418,70909954,70975490,71041026,71106562,71172098,71499779,71565314,71630850,71696386,71761922,71827460,72351745,73990145,75104257,78118913,84410371,84803586,86769665,88735745,88801281,91291649,95027201,97714177,106627073,133169158,133300225,133824513,133955585,141099009,149422081,149618689,151060482,151126018,151191555,151257089,151322625,151388161,151453698,151584769,151650306,151715841,151781384,151846913,151912449,151977986,152043524,152109058,152174594,152240129,152305665,152371202,152436739,152502274,152567810,152633345,152698882,152764417,152829954,152895490,152961026,153026562,153092100,153157634,153223170,153288706,153354242,153419777,153485313,153550849,153616386,153681921,153747457,153812993,153878530,153944066,154009601,154075139,154140673,154206209,154271746,154402817,154468353,154533891,154599426,154664961,154730498,154796033,154927105,155058179,155123716,155189251,155254785,155320321,155582467,155648002,155713538,155910145,156434433,156499969,156565505,156696578,156762114,156827650,156893186,156958722,157024257,157089793,157155331,157220866,157286404,157351937,157417474,157483010,157548545,157614081,157679617,157745156,157810689,157876226,157941761,158007297,158072833,158138377,158269445,158466050,158597122,158662657,158728196,158793731,158859269,158924801,158990338,159055873,159121410,159186948,159252482,159318018,159383554,159449090,159514625,159580161,160628738,161939457,162004993,162070529,162136065,162201602,162267137,162332673,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543938,165609474,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789124,166854657,166920193,166985729,167051265,167116801,167182339,167247874,167313410,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624130,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148418,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131459,170196993,170262529,170328065,171048963,171180034,171245569,171638785,171704321,171835393,173342721,173408257,173473793,173539330,173604866,173670402,173735938,173801476,173867011,173932547,173998083,174063617,174260225,174850050,174915588,174981122],"noopcommand":[6356995,31784964,31850502,63766531,63832065,63897603,151846913,152764425,154599427,154730499],"null":[12713986,23789569,23986177,24051713,25690113,25755649,25952257,26542081,26607617,26673153,29818881,29884417,32833537,32899073,32964609,35454977,48758786,62062593,70582274,72482817,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,89325569,91619329,93323265,95223809,97910785,111017985,132186113,140836865,152043521,159186946,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"newaccountcodeevent":[18284547,55705607,64159745,84738051,133693443,133758979,166264833,167116810],"newcalleridevent":[18350083,55771143,64159746,84803587,133824514,133890051,133955586,134021122,134086658,166264833,167182346,171573253],"newchannelevent":[18415619,55836679,64159747,84869123,162136066,167247882,171638789],"newextenevent":[18481155,55902215,64159746,84934659,134152194,134217731,134283266,134348802,134414338,134479874,166264833,167313418,171704325],"newstateevent":[18546691,55967751,64159747,85000195,162136066,167378954,171769861],"newline":[37552129],"newcat":[48758785,64094209,159186945],"newdata":[62914565],"numthreads":[63635462,174981121],"network":[63766529,151322625],"newly":[64028673,161218561],"native":[64028673,64159745,79757313,79822849,80347137,80412673,80478209,80543745,83230721,111280129,162004993,162070529,162594817,162660353,162725889,162791425,163905537,165609473,166133761,170917889],"newcallerideventhandler":[64028673,171573253],"newcallerid":[64028673,171573249],"newchanneleventhandler":[64028673,171638789],"newchannel":[64028673,171638785],"newexteneventhandler":[64028673,171704325],"newexten":[64028673,171704321],"newstateeventhandler":[64028673,171769861],"newstate":[64028673,171769857],"needed":[64094209,64225281,75104257,97386497,155123713,157810689,173539329],"numbers":[64094209,88670209,149291009,159186945,173735937],"networkstream":[74973185,96927756,154861569],"numeric":[80150529,86114305,86179841,86245377,86310913,86376449,113246209,162398209,168493057,168558593,168624129,168689665,168755201],"numberofmailbox":[84410369,133103617,166789121],"numb":[84803585,133955585,167182337],"natsupport":[85393409,135790598,167772161],"newmessages":[88735745,149422085,173801473],"notinheritable":[150994945,154927105],"nat":[163905537]} \ No newline at end of file diff --git a/docs/fti/FTI_111.json b/docs/fti/FTI_111.json index c784fa7..b0bd131 100644 --- a/docs/fti/FTI_111.json +++ b/docs/fti/FTI_111.json @@ -1 +1 @@ -{"open":[196609,69402625,86310913,93192193,120258561,150274049,162070529,167313409,174325761],"original":[196609],"occurs":[327681,393217,458753,524289,589825,655361,720897,851969,917505,10682370,30932993,30998529,70057986,155254785,155320321,155385857,155713538,158466049,158531585,164691969,166002689,175177729,178192385],"object":[327681,393217,458753,524289,589825,655361,720897,851969,917505,10158091,10223627,10289160,10354696,10420232,10485771,10551306,10616842,10682379,10747915,10813451,10878986,10944521,11010057,11075593,11141129,11206665,11272201,11337737,11403273,11468809,11534345,11599881,11665417,11730953,11796489,11862025,11927561,11993097,12058633,12124169,12189705,12255241,12320777,12386313,12451849,12517385,12582921,12648457,12713993,12779529,12845065,12910601,12976137,13041673,13107209,13172745,13238281,13303817,13434888,13500424,13565963,13631499,13697035,13762571,13828107,13893643,13959183,14024713,14090249,14155785,14221321,14286857,14352393,14417929,14483465,14549001,14614537,14680073,14745609,14811145,14876681,14942217,15007753,15073289,15138825,15204361,15269897,15335433,15400969,15466505,15532041,15597577,15663113,15728649,15794185,15859721,15925257,15990793,16056329,16121865,16187401,16252937,16318473,16384009,16449545,16515082,16580617,16646153,16711689,16777225,16842761,16908297,16973833,17039369,17104905,17170441,17235977,17301513,17367049,17432585,17498121,17563657,17629193,17694729,17760265,17825801,17891337,17956873,18022409,18087945,18153481,18219017,18284553,18350089,18415625,18481161,18546697,18612232,18677768,18743305,18808841,18874377,18939913,19005449,19070985,19136521,19202057,19267593,19333129,19398665,19464201,19529737,19595273,19660809,19726345,19791881,19857417,19922953,19988489,20054025,20119561,20185097,20250633,20316169,20381705,20447241,20512777,20578313,20643849,20709385,20774921,20840457,20905993,20971529,21037065,21102601,21168137,21233673,21299209,21364745,21430281,21495817,21561353,21626889,21692425,21757961,21823497,21889033,21954569,22020105,22085641,22151177,22216713,22282249,22347785,22413321,22478857,22544393,22609929,22675465,22741001,22806537,22872074,22937609,23003145,23068681,23134217,23199753,23265289,23330825,23396361,23461897,23527433,23592969,23658505,23724041,23789577,23855113,23920649,23986185,24051721,24117257,24182793,24248329,24313865,24379401,24444937,24510473,24576009,24641545,24707081,24772617,24838153,24903689,24969225,25034761,25100297,25165833,25231369,25296905,25362441,25427977,25493513,25559049,25624585,25690121,25755657,25821193,25886729,25952265,26017801,26083337,26148873,26214409,26279945,26345481,26411017,26476553,26542089,26607625,26673161,26738697,26804233,26869769,27000843,27066376,27131915,27197451,27262987,27328523,27394059,27459593,27525129,27590665,27656201,27721737,27787273,27852809,27918346,27983882,28049416,28114955,28180491,28246027,43188232,43384841,43450376,43646985,43712520,43909129,44236808,44433417,48496646,49741829,53739526,55312385,69337089,69533697,72679426,72744962,72810498,72941570,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,116260865,155058177,155123724,155189260,155254795,155320331,155385867,155451404,155516939,155648011,155713548,155779084,155844620,155910156,155975690,156041226,156106762,156172298,156237834,156303370,156368906,156434442,156499978,156565514,156631050,156696586,156762122,156827658,156893194,156958730,157024266,157089802,157155338,157220874,157286410,157351946,157417482,157483018,157548554,157614090,157679626,157745162,157810698,157876234,157941770,158007306,158072842,158138378,158203914,158269450,158334986,158466059,158531595,158597132,158662668,158728204,158793740,158859276,158924812,158990352,159121418,159186954,159252490,159318026,159383562,159449098,159514634,159580170,159645706,159711242,159776778,159842314,159907850,159973386,160038922,160104458,160169994,160235530,160301066,160366602,160432138,160497674,160563210,160628746,160694282,160759818,160825354,160890890,160956426,161021962,161087498,161153034,161218570,161284106,161349642,161415178,161480714,161546250,161611788,161677323,161742858,161808394,161873930,161939466,162005002,162070538,162136074,162201610,162267146,162332682,162398218,162463754,162529290,162594826,162660362,162725898,162791434,162856970,162922506,162988042,163053578,163119114,163184650,163250186,163315722,163381258,163446794,163512330,163577866,163643402,163708933,163774469,163840005,163905541,163971077,164036613,164102149,164167685,164233221,164298757,164364293,164429829,164495365,164626437,164691979,164757509,164823045,164888581,164954117,165019653,165085189,165150725,165216261,165281797,165347333,165412869,165478405,165543941,165609477,165675013,165740549,165806085,165871621,165937157,166002699,166068234,166133770,166199306,166264843,166330379,166395914,166461450,166526986,166592522,166658058,166723594,166789130,166854666,166920202,166985738,167051274,167116810,167182346,167247882,167313418,167378954,167444490,167510026,167575562,167641098,167706634,167772170,167837706,168034314,168099850,168165386,168230922,168296458,168361994,168427530,168493066,168558602,168624138,168689674,168755210,168820746,168886282,168951818,169017354,169082890,169148426,169213962,169279498,169345034,169410570,169476106,169541642,169607178,169672714,169738250,169803786,169869322,169934858,170000394,170065930,170131466,170197002,170262538,170328076,170393610,170459146,170524682,170590218,170655754,170721290,170786826,170852362,170917898,170983434,171048970,171114506,171180042,171245578,171311114,171376650,171442186,171507722,171573258,171638794,171704330,171769866,171835402,171900938,171966474,172032010,172097546,172163082,172228618,172294154,172359690,172425226,172490762,172556298,172621834,172687370,172752906,172818442,172883978,172949514,173015050,173080586,173146122,173211659,173277194,173342730,173408266,173473802,173539338,173604874,173670410,173735946,173801482,173867018,173932554,173998090,174063626,174129162,174194698,174260234,174325770,174391301,174456837,174522373,174587909,174653445,174784517,174850053,174915589,174981125,175046668,175112197,175177739,175243276,175308805,175374341,175439877,175505413,175570949,175636485,175702021,175767557,175833100,175898629,175964165,176029701,176095237,176160773,176226309,176291845,176357381,176422917,176488453,176553989,176619525,176685061,176750597,176816133,176881669,176947205,177012741,177078277,177143813,177209349,177274893,177340428,177405964,177471498,177537035,177602570,177668106,177733642,177799178,177864714,177930252,177995787,178061317,178126853,178192395,178257925,178323461,178388997,178454533,178520069,178585605,178651141,178716677,178782220,178847756,178913292],"one":[786433,2424833,10289153,10354689,10420225,10682378,13434881,13500417,18153473,18612225,18677761,27066369,28049409,30081025,30146561,30212097,30277633,31195137,31260673,31916033,31981569,32047105,33292289,38207489,38273025,38338561,40960001,54132737,69140492,69468163,69861380,70189058,70451203,70844417,71892995,75890689,79757313,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771970,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114307,86179842,86245378,86310915,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701827,90767362,90832899,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881475,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192195,93716482,93782018,93847554,93913090,93978626,94044163,94109698,94175234,101056513,109641729,109903873,119799809,120258561,136708097,136773633,140443649,140902401,144769025,150274049,153681921,154009601,154140673,155254785,155320321,155385857,155713546,156106753,156631042,156893185,157089793,157155332,157220865,157286401,157351937,157417473,158138369,158203906,158334977,158466049,158531585,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546242,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250178,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116803,167182340,167247874,167313411,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328067,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835395,171900930,171966467,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015043,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325763,175046657,175177729,177471490,177537026,177602562,177668098,177733634,177799171,177864706,177930242,178192385],"occur":[786433,3604481,69468161,170196993,175046657],"option":[786433,3866625,90439681,139788289,171573249,175046657],"originateresponse":[786434,4259846,27983875,67829763,67895300,67960838,69533697,94240771,154271747,154337283,154402819,154468355,154533891,154599427,154664963,154730499,175046658,177995786],"originate":[786433,4259841,27197443,65863684,65929219,65994756,66060291,66125830,69337089,83099650,93454339,110362625,110624769,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,161873922,175046657,175833098],"originateresponseeventhandler":[4259847,69337089,175898630],"originateresponseevent":[4259841,24051715,61407239,69468161,90374147,139001859,139067395,139132931,139198467,139264003,139329539,139395075,171507722,173211649,175898629],"obsolete":[6356993,8912897,69074945,83099649,85065729,85131265,85655553,85721089,85786625,85852161,88539137,111017985,116523009,155058177,158793729,161873921,166068225,166133761,166658049,166723585,166789121,166854657,169672705],"oldname":[6684673,9830406,92012545,145227781,173146114],"order":[6750209,9895937,69468161,174129153,175046657],"obsoleteattribute":[8912900,111017988,116523012,158793732],"operations":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,84475905,115212289,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250178,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"overridden":[10289154,10354690,10420226,13434882,13500418,18612226,18677762,27066370,28049410,28180481,68419585,155254786,155320322,155385858,158466050,158531586,164691970,166002690,175177730,178192386,178847745],"overrides":[10551297,10616833,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,14221313,14811137,14876673,15794177,16056321,16515073,16777217,16908289,17629185,17891329,17956865,18022401,18153473,18481153,20512769,22872065,26673153,27918337,27983873,29491201,29884417,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,45088769,46202881,46333953,47972353,48496641,49872897,50266113,50790401,52428801,53149697,53280769,53477377,53739521,54984705,57475073,60096513,64028673,67633153,67895297,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,83034113,83099649,83165185,83230721,83296257,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,102432769,102694913,103022593,103219201,103284737,103481345,104464385,104792065,105054209,105185281,105381889,105512961,105709569,105840641,105906177,106037249,106233857,106430465,106561537,106692609,106823681,107020289,107085825,107151361,107216897,107347969,107544577,107741185,107937793,108199937,108331009,108527617,108658689,108855297,108986369,109379585,109445121,109576193,109969409,110362625,111083521,111411201,111476737,111542273,111935489,112328705,112590849,112852993,113180673,113377281,113508353,113639425,113836033,114229249,114491393,114753537,114819073,114950145,115015681,115146753,115474433,115671041,115802113,115933185,116064257,116129793,155516929,155648001,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,159121409,159186945,159252481,159318018,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907842,159973378,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890882,160956417,161021953,161087489,161153026,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161808385,161873922,161939457,162004994,162070529,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725890,162791425,162856961,162922497,162988034,163053570,163119106,163184641,163250178,163315713,163381249,163446785,163512321,163577858,163643393,167837697,170328065,174129153,177930241,177995777],"offset":[10682380,30081026,30146562,30212104,30277640,31588354,31653896,35192839,35258375,37814278,40828935,69140486,69861384,70320132,71106562,72351745,77791234,78643202,79691778,97058822,99024902,100925446,155713548,156106758,157024260,158138373],"optional":[10682370,31588353,31653889,34209802,46858241,46923777,69140481,69402626,70320130,73859074,80150529,80412674,101580801,102629377,102957057,155713538,157024257,158728193,159186946,160235522,161873921,162791425],"output":[13893633,42860545,69533698,158924801,177537026],"originateaction":[16777219,50266116,50331652,50397187,50462724,50528259,50593798,69402627,83099651,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,154206209,161677313,161873931,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"originated":[16777220,18743300,18808836,19333124,19398660,19464196,19529732,22216708,27197444,50331649,50397185,50462721,50528257,55443457,55508993,55574529,55640065,65863681,65929217,65994753,66060289,83099650,93454337,110297089,111017985,151781377,161873926,166068228,166133764,166658052,166723588,166789124,166854660,169672708,175833093],"omit":[18153473,54132737,75890689,163250177],"operation":[28114945,68222978,69402625,162070529,178782209],"operating":[28180481,68485121,178847745],"overload":[28377089,28442625,28639233,28704769,28770305,29556737,29622273,30081025,30146561,30212097,30277633,30408705,30474241,30670849,30736385,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32964609,33030145,33226753,33292289,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34734081,34799617,34930689,34996225,35061761,35127297,35192833,35258369,35389441,35454977,35586049,35651585,36044801,36110337,36241409,36306945,36372481,36503553,36569089,36700161,36765697,37027841,37093377,37355521,37421057,37552129,37617665,37748737,37814273,37945345,38010881,38141953,38207489,38273025,38338561,38469633,38535169,38666241,38731777,38862849,38928385,39059457,39124993,40173569,40239105,40370177,40435713,40697857,40763393,40828929,41222145,41287681,41746433,41811969,41877505,42074113,42139649,42532865,42598401,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,44105729,44171265,44236801,44302337,44367873,44433409,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103425,48168961,48234497,48300033,48365569,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49348609,49414145,49479681,49545217,50003969,50069505,50135041,50200577,50659329,50724865,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53346305,53411841,53608449,53673985,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,55181313,55246849,55836673,55902209,59179009,59244545,60162049,60227585,64487425,64552961,64880641,64946177,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,67239937,67305473,67698689,67764225,68091905,68157441,68550657,68616193,68681729,68747265,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873],"override":[29491203,29884419,34406403,34537475,34668547,34865155,35323907,35520515,35717123,35848195,35979267,36175875,36438019,36634627,36831235,36962307,37158915,37289987,37486595,37683203,37879811,38076419,38404099,38600707,38797315,38993923,39190531,39321603,39452675,39583747,39714819,39845891,39976963,40108035,40304643,40501251,40632323,40894467,41025539,41156611,41615361,41680897,41943041,42008577,42401793,42467329,45088771,46202883,46333955,47972355,48496643,49872899,50266115,50397185,50528257,50790403,52428803,53149699,53280771,53477379,53739523,54984707,55508993,55640065,57475075,59965441,60030977,60096515,64028675,66191361,66322433,66584577,66650113,67502081,67567617,67633155,67895299,68419585,80412674,102432771,102629377,102694915,102957057,103022595,103219203,103284739,103481347,104464387,104792067,105054211,105185283,105381891,105512963,105709571,105840643,105906179,106037251,106233859,106430467,106561539,106692611,106823683,107020291,107085827,107151363,107216899,107347971,107544579,107741187,107937795,108199939,108331011,108527619,108658691,108855299,108986371,109379587,109445123,109576195,109838337,109969411,110362627,111083523,111411203,111476739,111542275,111935491,112328707,112590851,112852995,113180675,113377283,113508355,113639427,113836035,114229251,114491395,114753539,114819075,114950147,115015683,115146755,115474435,115671043,115802115,115933187,116064259,116129795,136511489,152371201,152436737,152764417,152829953,153812993,159186946],"options":[30736389,36110342,69140481,78118914,97910790,156434435],"obtained":[44498945,158990337],"overwrite":[52887553,84082689,114294785,162856961],"operate":[54132737,69402625,163250177],"occured":[55312385,69337089,85000193,116260866,166002690],"overridable":[59965441,60030977,66650113,67502081,67567617,68419585,109838337],"optionally":[69402625,159186945],"outgoing":[69402625,83099649,93454338,110559233,151912449,151977985,161873922,175833090],"originatesuccess":[69402625,83099649,110493697,161873922],"originatefailureevents":[69402625,83099649,110493697,161873922],"overwritten":[69402625,84082689,114294785,162856962],"offhook":[69402625,163315713],"org":[69468161,169672705],"old":[69533697,89718786,92012545,93978625,137691142,145227777,153550849,170852354,173146113,177733634],"origination":[83099652,93454339,110493698,110952450,152305667,161873924,175833091],"originatefailureevent":[83099649,93454337,110952449,152305665,161873922,175833089],"origbridgecreator":[86441985,120782854,167444481],"origbridgename":[86441985,120848390,167444481],"origbridgenumchannels":[86441985,120913926,167444481],"origbridgetechnology":[86441985,120979462,167444481],"origbridgetype":[86441985,121044998,167444481],"origbridgeuniqueid":[86441985,121110534,167444481],"origtransfereraccountcode":[86441985,121176070,167444481],"origtransferercalleridname":[86441985,121241606,167444481],"origtransferercalleridnum":[86441985,121307142,167444481],"origtransfererchannel":[86441985,121372678,167444481],"origtransfererchannelstate":[86441985,121438214,167444481],"origtransfererchannelstatedesc":[86441985,121503750,167444481],"origtransfererconnectedlinename":[86441985,121569286,167444481],"origtransfererconnectedlinenum":[86441985,121634822,167444481],"origtransferercontext":[86441985,121700358,167444481],"origtransfererlanguage":[86441985,121765894,167444481],"origtransfererpriority":[86441985,121831430,167444481],"origtransfereruniqueid":[86441985,121896966,167444481],"owner":[88866817,135528454,170000385],"oldaccountcode":[90046465,138215430,171180033],"objectname":[90701825,140312582,171835393],"originalposition":[90963969,141361158,172097537],"ourssrc":[92209153,146472966,173342721],"oldmessages":[93978625,153550853,177733633],"originatesuccessevent":[161873921]} \ No newline at end of file +{"open":[196609,64094209,81002497,87949313,115802113,146210817,158007297,163250177,170328065],"original":[196609],"occurs":[327681,393217,458753,524289,589825,655361,720897,786433,851969,5242882,25559041,25624577,64749570,151191553,151257089,151322625,151650306,154402817,154468353,160628737,161939457,171180033,174260225],"object":[327681,393217,458753,524289,589825,655361,720897,786433,851969,4718603,4784139,4849672,4915208,4980744,5046283,5111818,5177354,5242891,5308427,5373963,5439498,5505033,5570569,5636105,5701641,5767177,5832713,5898249,5963785,6029321,6094857,6160393,6225929,6291465,6357001,6422537,6488073,6553609,6619145,6684681,6750217,6815753,6881289,6946825,7012361,7077897,7143433,7208969,7274505,7340041,7405577,7471113,7536649,7602185,7667721,7733257,7798793,7864329,7995400,8060936,8126475,8192011,8257547,8323083,8388619,8454155,8519695,8585225,8650761,8716297,8781833,8847369,8912905,8978441,9043977,9109513,9175049,9240585,9306121,9371657,9437193,9502729,9568265,9633801,9699337,9764873,9830409,9895945,9961481,10027017,10092553,10158089,10223625,10289161,10354697,10420233,10485769,10551305,10616841,10682377,10747913,10813449,10878985,10944521,11010057,11075594,11141129,11206665,11272201,11337737,11403273,11468809,11534345,11599881,11665417,11730953,11796489,11862025,11927561,11993097,12058633,12124169,12189705,12255241,12320777,12386313,12451849,12517385,12582921,12648457,12713993,12779529,12845065,12910601,12976137,13041673,13107209,13172744,13238280,13303817,13369353,13434889,13500425,13565961,13631497,13697033,13762569,13828105,13893641,13959177,14024713,14090249,14155785,14221321,14286857,14352393,14417929,14483465,14549001,14614537,14680073,14745609,14811145,14876681,14942217,15007753,15073289,15138825,15204361,15269897,15335433,15400969,15466505,15532041,15597577,15663113,15728649,15794185,15859721,15925257,15990793,16056329,16121865,16187401,16252937,16318473,16384009,16449545,16515081,16580617,16646153,16711689,16777225,16842761,16908297,16973833,17039369,17104905,17170441,17235977,17301513,17367049,17432586,17498121,17563657,17629193,17694729,17760265,17825801,17891337,17956873,18022409,18087945,18153481,18219017,18284553,18350089,18415625,18481161,18546697,18612233,18677769,18743305,18808841,18874377,18939913,19005449,19070985,19136521,19202057,19267593,19333129,19398665,19464201,19529737,19595273,19660809,19726345,19791881,19857417,19922953,19988489,20054025,20119561,20185097,20250633,20316169,20381705,20447241,20512777,20578313,20643849,20709385,20774921,20840457,20905993,20971529,21037065,21102601,21168137,21233673,21299209,21364745,21430281,21495817,21626891,21692424,21757963,21823499,21889035,21954571,22020107,22085641,22151177,22216713,22282249,22347785,22413321,22478857,22544394,22609930,22675464,22741003,22806539,22872075,37814280,38010889,38076424,38273033,38338568,38535177,38862856,39059465,43122694,44367877,48365574,49938433,64028673,64225281,67371010,67436546,67502082,67633154,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,111017985,150994945,151060492,151126028,151191563,151257099,151322635,151388172,151453707,151584779,151650316,151715852,151781388,151846924,151912458,151977994,152043530,152109066,152174602,152240138,152305674,152371210,152436746,152502282,152567818,152633354,152698890,152764426,152829962,152895498,152961034,153026570,153092106,153157642,153223178,153288714,153354250,153419786,153485322,153550858,153616394,153681930,153747466,153813002,153878538,153944074,154009610,154075146,154140682,154206218,154271754,154402827,154468363,154533900,154599436,154664972,154730508,154796044,154861580,154927120,155058186,155123722,155189258,155254794,155320330,155385866,155451402,155516938,155582474,155648010,155713546,155779082,155844618,155910154,155975690,156041226,156106762,156172298,156237834,156303370,156368906,156434442,156499978,156565514,156631050,156696586,156762122,156827658,156893194,156958730,157024266,157089802,157155338,157220874,157286410,157351946,157417482,157483018,157548556,157614091,157679626,157745162,157810698,157876234,157941770,158007306,158072842,158138378,158203914,158269450,158334986,158400522,158466058,158531594,158597130,158662666,158728202,158793738,158859274,158924810,158990346,159055882,159121418,159186954,159252490,159318026,159383562,159449098,159514634,159580170,159645701,159711237,159776773,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160563205,160628747,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153029,161218565,161284101,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,161939467,162005002,162070538,162136074,162201611,162267147,162332682,162398219,162463754,162529290,162594826,162660362,162725898,162791434,162856970,162922506,162988042,163053578,163119114,163184650,163250186,163315722,163381258,163446794,163512330,163577866,163643402,163708938,163774474,163971082,164036618,164102154,164167690,164233226,164298762,164364298,164429834,164495370,164560906,164626442,164691978,164757514,164823050,164888586,164954122,165019658,165085194,165150730,165216266,165281802,165347338,165412874,165478410,165543946,165609482,165675018,165740554,165806090,165871626,165937162,166002698,166068234,166133770,166199306,166264844,166330378,166395914,166461450,166526986,166592522,166658058,166723594,166789130,166854666,166920202,166985738,167051274,167116810,167182346,167247882,167313418,167378954,167444490,167510026,167575562,167641098,167706634,167772170,167837706,167903242,167968778,168034314,168099850,168165386,168230922,168296458,168361994,168427530,168493066,168558602,168624138,168689674,168755210,168820746,168886282,168951818,169017354,169082890,169148426,169213963,169279498,169345034,169410570,169476106,169541642,169607178,169672714,169738250,169803786,169869322,169934858,170000394,170065930,170131466,170197002,170262538,170328074,170393605,170459141,170524677,170590213,170655749,170786821,170852357,170917893,170983429,171048972,171114501,171180043,171245580,171311109,171376645,171442181,171507717,171573253,171638789,171704325,171769861,171835404,171900933,171966469,172032005,172097541,172163077,172228613,172294149,172359685,172425221,172490757,172556293,172621829,172687365,172752901,172818437,172883973,172949509,173015045,173080581,173146117,173211653,173277189,173342733,173408268,173473804,173539338,173604875,173670410,173735946,173801482,173867018,173932554,173998092,174063627,174129157,174194693,174260235,174325765,174391301,174456837,174522373,174587909,174653445,174718981,174784517,174850060,174915596,174981132],"obsolete":[917505,3473409,63766529,77791233,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775105,111280129,150994945,154730497,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"oldname":[1245185,4390918,86769665,141164549,169148418],"order":[1310721,4456449,64159745,170131457,171048961],"obsoleteattribute":[3473412,105775108,111280132,154730500],"operations":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,79167489,109969409,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"overridden":[4849666,4915202,4980738,7995394,8060930,13172738,13238274,21692418,22675458,22806529,63111169,151191554,151257090,151322626,154402818,154468354,160628738,161939458,171180034,174260226,174915585],"one":[4849665,4915201,4980737,5242890,7995393,8060929,12713985,13172737,13238273,21692417,22675457,24707073,24772609,24838145,24903681,25821185,25886721,26542081,26607617,26673153,27918337,32833537,32899073,32964609,35586049,48758785,63832076,64028673,64159747,64552964,64880642,65142787,65536001,66584579,70582273,74448897,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463554,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805891,80871426,80936962,81002499,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393411,85458946,85524483,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638595,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949315,88473602,88539138,88604674,88670210,88735746,88801283,88866818,88932354,95813633,104398849,104660993,115343361,115802113,132251649,132317185,135987201,136445953,140705793,146210817,149618689,149946369,150077441,151191553,151257089,151322625,151650314,152043521,152567810,152829953,153026561,153092100,153157633,153223169,153288705,153354241,154075137,154140674,154271745,154402817,154468353,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483010,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161218561,161939457,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053571,163119108,163184642,163250179,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264835,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772163,167837698,167903235,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017347,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328067,171180033,173539330,173604866,173670402,173735938,173801474,173867011,173932546,173998082,174260225],"overrides":[5111809,5177345,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,8781825,9371649,9437185,10354689,10616833,11075585,11337729,11468801,12189697,12451841,12517377,12582913,12713985,13041665,15073281,17432577,21299201,22544385,22609921,24117249,24510465,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,39714817,40828929,40960001,42598401,43122689,44498945,44892161,45416449,47054849,47775745,47906817,48103425,48365569,49610753,52101121,54722561,58720257,62324737,62586881,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77725697,77791233,77856769,77922305,77987841,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,110231553,110428161,110559233,110690305,110821377,110886913,151453697,151584769,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,155058177,155123713,155189249,155254786,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844610,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827650,156893185,156958721,157024257,157089794,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157745153,157810690,157876225,157941762,158007297,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924802,158990338,159055874,159121409,159186946,159252481,159318017,159383553,159449089,159514626,159580161,163774465,166264833,170131457,173998081,174063617],"offset":[5242892,24707074,24772610,24838152,24903688,26214402,26279944,29818887,29884423,32440326,35454983,63832070,64552968,65011716,65798146,67043329,72482818,73334786,74383362,91815942,93782022,95682566,151650316,152043526,152961028,154075141],"optional":[5242882,26214401,26279937,28835850,41484289,41549825,63832065,64094210,65011714,68550658,74842113,75104258,96337921,97386497,97714177,151650306,152961025,154664961,155123714,156172290,157810689,158728193],"output":[8454145,37486593,64225282,154861569,173604866],"originateaction":[11337731,44892164,44957700,45023235,45088772,45154307,45219846,64094211,77791235,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,150142977,157614081,157810699,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"originated":[11337732,13303812,13369348,13893636,13959172,14024708,14090244,16777220,21823492,44957697,45023233,45088769,45154305,50069505,50135041,50200577,50266113,60555265,60620801,60686337,60751873,77791234,88211457,105054209,105775105,147718145,157810694,162004996,162070532,162594820,162660356,162725892,162791428,165609476,171835397],"omit":[12713985,48758785,70582273,159186945],"originateresponseevent":[18612227,56033287,64159745,85065731,134545411,134610947,134676483,134742019,134807555,134873091,134938627,167444490,169213953,171900933],"originate":[21823491,60555268,60620803,60686340,60751875,60817414,64028674,77791234,88211459,105119745,105381889,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,157810690,171835402,171900929],"originateresponse":[22609923,62521347,62586884,62652422,64028673,64225281,88997891,150208515,150274051,150339587,150405123,150470659,150536195,150601731,150667267,171900929,174063626],"operation":[22740993,62914562,64094209,158007297,174850049],"operating":[22806529,63176705,174915585],"overload":[23003137,23068673,23265281,23330817,23396353,24182785,24248321,24707073,24772609,24838145,24903681,25034753,25100289,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821185,25886721,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27590657,27656193,27852801,27918337,28442625,28508161,28573697,28639233,28704769,28770305,28835841,29360129,29425665,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31653889,31719425,31981569,32047105,32178177,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,34799617,34865153,34996225,35061761,35323905,35389441,35454977,35848193,35913729,36372481,36438017,36503553,36700161,36765697,37158913,37224449,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38731777,38797313,38862849,38928385,38993921,39059457,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43974657,44040193,44105729,44171265,44630017,44695553,44761089,44826625,45285377,45350913,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47972353,48037889,48234497,48300033,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49807361,49872897,50462721,50528257,53805057,53870593,54788097,54853633,59179009,59244545,59572225,59637761,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,61931521,61997057,62390273,62455809,62783489,62849025,63242241,63307777,63373313,63438849,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457],"override":[24117251,24510467,29032451,29163523,29294595,29491203,29949955,30146563,30343171,30474243,30605315,30801923,31064067,31260675,31457283,31588355,31784963,31916035,32112643,32309251,32505859,32702467,33030147,33226755,33423363,33619971,33816579,33947651,34078723,34209795,34340867,34471939,34603011,34734083,34930691,35127299,35258371,35520515,35651587,35782659,36241409,36306945,36569089,36634625,37027841,37093377,39714819,40828931,40960003,42598403,43122691,44498947,44892163,45023233,45154305,45416451,47054851,47775747,47906819,48103427,48365571,49610755,50135041,50266113,52101123,54591489,54657025,54722563,58720259,60882945,61014017,61276161,61341697,62193665,62259201,62324739,62586883,63111169,75104258,97189891,97386497,97452035,97714177,97779715,97976323,98041859,98238467,99221507,99549187,99811331,99942403,100139011,100270083,100466691,100597763,100663299,100794371,100990979,101187587,101318659,101449731,101580803,101777411,101842947,101908483,101974019,102105091,102301699,102498307,102694915,102957059,103088131,103284739,103415811,103612419,103743491,104136707,104202243,104333315,104595457,104726531,105119747,105840643,106168323,106233859,106299395,106692611,107085827,107347971,107610115,107937795,108134403,108265475,108396547,108593155,108986371,109248515,109510659,109576195,109707267,109772803,109903875,110231555,110428163,110559235,110690307,110821379,110886915,132055041,148307969,148373505,148701185,148766721,149749761,155123714],"options":[25362437,30736390,63832065,72810498,92667910,152371203],"obtained":[39124993,154927105],"overwrite":[47513601,78774273,109051905,158793729],"operate":[48758785,64094209,159186945],"occured":[49938433,64028673,79691777,111017986,161939458],"overridable":[54591489,54657025,61341697,62193665,62259201,63111169,104595457],"occur":[64028673,64159745,166133761,170917889],"option":[64028673,85131265,135331841,167510017,171442177],"originateresponseeventhandler":[64028673,171900933],"optionally":[64094209,155123713],"outgoing":[64094209,77791233,88211458,105316353,147849217,147914753,157810690,171835394],"originatesuccess":[64094209,77791233,105250817,157810690],"originatefailureevents":[64094209,77791233,105250817,157810690],"overwritten":[64094209,78774273,109051905,158793730],"offhook":[64094209,159252481],"org":[64159745,165609473],"old":[64225281,84410370,86769665,88735745,133234694,141164545,149487617,166789122,169148417,173801474],"origination":[77791236,88211459,105250818,105709570,148242435,157810692,171835395],"originatefailureevent":[77791233,88211457,105709569,148242433,157810690,171835393],"origbridgecreator":[81133569,116326406,163381249],"origbridgename":[81133569,116391942,163381249],"origbridgenumchannels":[81133569,116457478,163381249],"origbridgetechnology":[81133569,116523014,163381249],"origbridgetype":[81133569,116588550,163381249],"origbridgeuniqueid":[81133569,116654086,163381249],"origtransfereraccountcode":[81133569,116719622,163381249],"origtransferercalleridname":[81133569,116785158,163381249],"origtransferercalleridnum":[81133569,116850694,163381249],"origtransfererchannel":[81133569,116916230,163381249],"origtransfererchannelstate":[81133569,116981766,163381249],"origtransfererchannelstatedesc":[81133569,117047302,163381249],"origtransfererconnectedlinename":[81133569,117112838,163381249],"origtransfererconnectedlinenum":[81133569,117178374,163381249],"origtransferercontext":[81133569,117243910,163381249],"origtransfererlanguage":[81133569,117309446,163381249],"origtransfererpriority":[81133569,117374982,163381249],"origtransfereruniqueid":[81133569,117440518,163381249],"owner":[83558401,131072006,165937153],"oldaccountcode":[84738049,133758982,167116801],"objectname":[85393409,135856134,167772161],"originalposition":[85655553,136904710,168034305],"ourssrc":[86966273,142409734,169345025],"oldmessages":[88735745,149487621,173801473],"originatesuccessevent":[157810689]} \ No newline at end of file diff --git a/docs/fti/FTI_112.json b/docs/fti/FTI_112.json index 8b1b66f..ece6697 100644 --- a/docs/fti/FTI_112.json +++ b/docs/fti/FTI_112.json @@ -1 +1 @@ -{"project":[131074,196609,69402625,159383553],"point":[196609,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136642561,153878529,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"previously":[786434,1048577,1441793,69468162,69533697,166592513,166985729,175046658,177930241],"progress":[786433,2424833,46858241,46923777,73859074,160235522,175046657],"phone":[786433,2818049,69468161,85590017,118095873,166592513,169279489,175046657],"perform":[786433,3604481,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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,69468161,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196994,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046658,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"pass":[786433,3866625,30736385,36110337,69402625,69468161,78118913,83099649,93454337,97910785,110755842,152109057,156434433,159186945,161873921,174129153,175046657,175833089],"parkedcall":[786434,4325382,175046658],"parked":[786436,4325377,4390913,4456449,6029313,50724865,69402626,69468164,83165185,85393412,90439686,90505220,90636292,92930053,111149057,117374977,117440513,117506049,117571585,139460609,139526145,139591681,139657217,139722753,139788289,149749761,161939457,162004994,166395908,171573255,171638789,171704321,171769860,174063622,175046660],"parkedcallsaction":[786434,4325377,4456449,16908291,50790404,50855942,69402626,69468162,83230723,111411202,161677313,162005002,171573250,171704322,175046658],"parkedcallgiveup":[786434,4390918,175046658],"parkedcallscomplete":[786434,4456454,175046658],"parkedcalltimeout":[786434,4521990,175046658],"parking":[786433,4521985,50724865,69402625,69468162,83165185,111280129,161939458,166395905,171769857,175046657],"peerentry":[786434,4587526,175046658],"peer":[786433,4587521,53411847,69402627,69468161,75759617,84279298,90701827,90832899,114884614,139984897,140115969,140443649,140705793,140836871,162988033,163053573,167968770,171835396,171966467,175046657],"peerlistcomplete":[786434,4653062,175046658],"peers":[786433,4653057,69402626,69468161,87097345,90701827,90832900,130416641,139919361,139984897,140443649,140705794,140967938,162988034,168230913,171835395,171900929,171966468,175046657],"peerstatus":[786434,4718598,90832897,140902405,171966465,175046658],"paused":[786433,5177345,51576837,51707909,69468162,83427331,83558401,91291651,91357185,91422723,91488262,91684865,111738887,112459781,142409735,142999558,143327239,143589383,143654914,143720449,162201603,162332673,172425219,172490753,172556292,172621831,172818433,175046657],"parameters":[786433,5373953,18153473,28311553,28377089,28442625,28573697,28704769,28770305,28901377,29097985,29163521,29622273,29687809,29818881,29949953,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736386,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,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,33226753,33292289,33357825,33423361,33554433,33619969,33882113,33947649,34013185,34078721,34144257,34209793,34340865,34799617,34930689,34996225,35061761,35127297,35192833,35258369,35389441,35454977,35586049,35651585,35782657,35913729,36044801,36110337,36241409,36306945,36372481,36503553,36569089,36700161,36765697,36896769,37093377,37421057,37617665,37748737,37814273,37945345,38010881,38141953,38207489,38273025,38338561,38469633,38535169,38666241,38731777,38862849,38928385,39059457,39124993,39256065,39387137,39518209,39649281,39780353,39911425,40239105,40370177,40435713,40566785,40697857,40763393,40828929,40960001,41091073,41287681,41353217,41484289,41549825,41615361,41811969,41877505,41943041,42139649,42205185,42270721,42401793,42598401,42795009,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44630017,44761089,44826625,44957697,45023233,45219841,45350913,45481985,45613057,45744129,45875201,46006273,46137345,46268417,46530561,46661633,46792705,46923777,47054849,47185921,47316993,47644673,47775745,47906817,48103425,48234497,48365569,48627713,48758785,48824321,48955393,49086465,49152001,49217537,49414145,49545217,50069505,50135041,50200577,50331649,50462721,50528257,50659329,50724865,51118081,51183617,51249153,51380225,51511297,51576833,51642369,51707905,51838977,51970055,52101121,52232193,52363265,52625409,52690945,52822017,52887553,53018625,53084161,53411841,53673985,53870593,53936129,54001665,54067201,54132738,54263809,54329345,54394881,54525953,54657025,54788097,54919169,55181313,55246849,55312385,55377921,55443457,55574529,55640065,55705601,55771137,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64421889,64487425,64552961,64946177,65077249,65142785,65208321,65273857,65339393,65404929,65536002,65601538,65667073,65732609,65798145,65863681,65994753,66060289,66256897,66322433,66387969,66453505,66650113,66715649,66977793,67305473,67371009,67502081,67567617,67764225,68026369,68157441,68222977,68288513,68616193,68681729,68747265,68812801,68943873,69074945,69206017,69402625,69468161,75890689,76808194,83099650,83689473,90243074,93454337,110428161,110755842,112984070,138608642,152109057,155582467,158662657,158793729,161873923,162463745,163250177,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164626433,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,171376642,172883969,174391297,174456833,174522369,174587905,174653441,174784513,174850049,174915585,174981121,175046659,175112193,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,178061313,178126849,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673],"public":[983043,1048579,1114115,1179651,1245187,1310723,1376259,1441795,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,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456451,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,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,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9895939,9961475,28311555,28377091,28442627,28508163,28573699,28639235,28704771,28770307,28835843,28901379,28966915,29032451,29097987,29163523,29229059,29294595,29360131,29425667,29491203,29556739,29622275,29687811,29753347,29818883,29884419,29949955,32636931,33357827,33554435,33619971,33685507,33751043,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34275331,34406403,34537475,34603011,34668547,34734083,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,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,38404099,38469635,38535171,38600707,38666243,38731779,38797315,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173571,40239107,40304643,40370179,40435715,40501251,40566787,40632323,40697859,40763395,40828931,40894467,40960003,41025539,41091075,41156611,41222147,41287683,41484291,41549827,41615363,41680899,41746435,41811971,41877507,41943043,42008579,42074115,42139651,42205187,42270723,42336259,42401795,42467331,42532867,42598403,42663939,42729475,42795011,42860547,42926083,42991619,43057155,43122691,43188227,43253763,43319299,43384835,43450371,43515907,43581443,43646979,43712515,43778051,43843587,43909123,43974659,44040195,44105731,44171267,44236803,44302339,44367875,44433411,44498947,44564483,44630019,44695555,44761091,44826627,44892163,44957699,45023235,45088771,45154307,45219843,45285379,45350915,45416451,45481987,45547523,45613059,45678595,45744131,45809667,45875203,45940739,46006275,46071811,46137347,46202883,46268419,46333955,46399491,46465027,46530563,46596099,46661635,46727171,46792707,46858243,46923779,46989315,47054851,47120387,47185923,47251459,47316995,47382531,47448067,47513603,47579139,47644675,47710211,47775747,47841283,47906819,47972355,48037891,48103427,48168963,48234499,48300035,48365571,48431107,48496643,48562179,48627715,48693251,48758787,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49610755,49741827,49872899,50003971,50069507,50135043,50200579,50266115,50331651,50397187,50462723,50528259,50593795,50659331,50724867,50790403,50855939,50921475,51052547,51118083,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52101123,52166659,52232195,52297731,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591491,54657027,54722563,54788099,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57278467,57344003,57409539,57475075,57540611,57606147,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59047939,59113475,59179011,59244547,59310083,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965443,60030979,60096515,60162051,60227587,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766531,63832067,63897603,63963139,64028675,64094211,64159747,64225283,64290819,64487427,64552963,64749571,64815107,64880643,64946179,65011715,65077251,65142787,65208323,65273859,65339395,65404931,65470467,65536003,65601539,65667075,65732611,65798147,65863683,65929219,65994755,66060291,66125827,66191363,66256899,66322435,66387971,66453507,66519043,66584579,66650115,66715651,66781187,66846723,66912259,66977795,67043331,67108867,67174403,67239939,67305475,67371011,67436547,67502083,67567619,67633155,67698691,67764227,67829763,67895299,67960835,68026371,68091907,68157443,68222979,68288515,68354051,68419587,68485123,68550659,68616195,68681731,68747267,68812803,68878339,68943875,69468163,94502915,94568451,94633987,94699523,94765059,94830595,94896131,94961667,95027203,95092739,95158275,95223811,95289347,95354883,95420419,95485955,95551491,95617027,95682563,95748099,95813635,95879171,95944707,96010243,96075779,96141315,96206851,96272387,96337923,96403459,96534531,96600067,96665603,96731139,96796675,96862211,96927747,96993283,97058819,97124355,97189891,97255427,97320963,97386499,97452035,97517571,97583107,97648643,97714179,97779715,97845251,97910787,97976323,98041859,98107395,98172931,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221507,99287043,99352579,99418115,99483651,99549187,99614723,99680259,99745795,99811331,99876867,99942403,100007939,100073475,100139011,100204547,100270083,100335619,100401155,100466691,100532227,100597763,100663299,100728835,100794371,100859907,100925443,100990979,101056515,101122051,101187587,101253123,101318659,101384195,101449731,101515267,101580803,101646339,101711875,101777411,101842947,101908483,101974019,102039555,102105091,102170627,102236163,102301699,102367235,102432771,102498307,102563843,102629379,102694915,102760451,102825987,102891523,102957059,103022595,103088131,103153667,103219203,103284739,103350275,103415811,103481347,103546883,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529923,104595459,104660995,104726531,104792067,104857603,104923139,104988675,105054211,105119747,105185283,105250819,105316355,105381891,105447427,105512963,105578499,105644035,105709571,105775107,105840643,105906179,105971715,106037251,106102787,106168323,106233859,106299395,106364931,106430467,106496003,106561539,106627075,106692611,106758147,106823683,106889219,106954755,107020291,107085827,107151363,107216899,107282435,107347971,107413507,107479043,107544579,107610115,107675651,107741187,107806723,107872259,107937795,108003331,108068867,108134403,108199939,108265475,108331011,108396547,108462083,108527619,108593155,108658691,108724227,108789763,108855299,108920835,108986371,109051907,109117443,109182979,109248515,109314051,109379587,109445123,109510659,109576195,109641731,109707267,109772803,109838339,109903875,109969411,110034947,110100483,110166019,110231555,110297091,110362627,110428163,110493699,110559235,110624771,110690307,110755843,110821379,110886915,110952451,111017987,111083523,111149059,111214595,111280131,111345667,111411203,111476739,111542275,111607811,111673347,111738883,111804419,111869955,111935491,112001027,112066563,112132099,112197635,112263171,112328707,112394243,112459779,112525315,112590851,112656387,112721923,112787459,112852995,112918531,112984067,113049603,113115139,113180675,113246211,113311747,113377283,113442819,113508355,113573891,113639427,113704963,113770499,113836035,113901571,113967107,114032643,114098179,114163715,114229251,114294787,114360323,114425859,114491395,114556931,114622467,114688003,114753539,114819075,114884611,114950147,115015683,115081219,115146755,115212291,115277827,115343363,115408899,115474435,115539971,115605507,115671043,115736579,115802115,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253955,128319491,128385027,128450563,128516099,128581635,128647171,128712707,128778243,128843779,128909315,128974851,129040387,129105923,129171459,129236995,129302531,129368067,129433603,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661827,131727363,131792899,131858435,131923971,131989507,132055043,132120579,132186115,132251651,132317187,132382723,132448259,132513795,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103619,133169155,133234691,133300227,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824515,133890051,133955587,134021123,134086659,134152195,134217731,134283267,134348803,134414339,134479875,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004163,135069699,135135235,135200771,135266307,135331843,135397379,135462915,135528451,135593987,135659523,135725059,135790595,135856131,135921667,135987203,136052739,136118275,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232387,137297923,137363459,137428995,137494531,137560067,137625603,137691139,137756675,137822211,137887747,137953283,138018819,138084355,138149891,138215427,138280963,138346499,138412035,138477571,138543107,138608643,138674179,138739715,138805251,138870787,138936323,139001859,139067395,139132931,139198467,139264003,139329539,139395075,139460611,139526147,139591683,139657219,139722755,139788291,139853827,139919363,139984899,140050435,140115971,140181507,140247043,140312579,140378115,140443651,140509187,140574723,140640259,140705795,140771331,140836867,140902403,140967939,141033475,141099011,141164547,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244739,144310275,144375811,144441347,144506883,144572419,144637955,144703491,144769027,144834563,144900099,144965635,145031171,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555459,145620995,145686531,145752067,145817603,145883139,145948675,146014211,146079747,146145283,146210819,146276355,146341891,146407427,146472963,146538499,146604035,146669571,146735107,146800643,146866179,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307971,148373507,148439043,148504579,148570115,148635651,148701187,148766723,148832259,148897795,148963331,149028867,149094403,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618691,149684227,149749763,149815299,149880835,149946371,150011907,150077443,150142979,150208515,150274051,150339587,150405123,150601731,150667267,150732803,150798339,150863875,150929411,150994947,151060483,151126019,151191555,151257091,151322627,151388163,151453699,151519235,151584771,151650307,151715843,151781379,151846915,151912451,151977987,152043523,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698883,152764419,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616387,153681923,153747459,153812995,153878531,153944067,154009603,154075139,154140675,154206211,154271747,154337283,154402819,154468355,154533891,154599427,154664963,154730499,154796035,154861571,154927107,154992643,155058179,155123715,155189251,155254788,155320324,155385860,155451395,155516931,155582467,155648003,155713539,155779075,155844611,155910147,155975684,156041220,156106756,156172292,156237828,156303364,156368900,156434436,156499972,156565508,156631044,156696580,156762116,156827652,156893188,156958724,157024260,157089796,157155332,157220868,157286404,157351940,157417476,157483012,157548548,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400515,158466052,158531588,158597123,158662659,158728195,158793731,158859267,158924803,158990339,159055875,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645700,159711236,159776772,159842308,159907844,159973380,160038916,160104452,160169988,160235524,160301060,160366596,160432132,160497668,160563204,160628740,160694276,160759812,160825348,160890884,160956420,161021956,161087492,161153028,161218564,161284100,161349636,161415172,161480708,161546244,161611779,161677316,161742852,161808388,161873924,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708931,163774467,163840003,163905539,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691972,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903235,167968771,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131460,170196996,170262532,170328068,170393604,170459140,170524676,170590212,170655748,170721284,170786820,170852356,170917892,170983428,171048964,171114500,171180036,171245572,171311108,171376644,171442180,171507716,171573252,171638788,171704324,171769860,171835396,171900932,171966468,172032004,172097540,172163076,172228612,172294148,172359684,172425220,172490756,172556292,172621828,172687364,172752900,172818436,172883972,172949508,173015044,173080580,173146116,173211652,173277188,173342724,173408260,173473796,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063620,174129159,174194692,174260228,174325764,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850051,174915587,174981123,175046659,175112195,175177732,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702019,175767555,175833091,175898627,175964163,176029699,176095235,176160771,176226307,176291843,176357379,176422915,176488451,176553987,176619523,176685059,176750595,176816131,176881667,176947203,177012739,177078275,177143811,177209347,177274883,177340419,177405955,177471492,177537028,177602564,177668100,177733636,177799172,177864708,177930243,177995779,178061315,178126851,178192388,178257923,178323459,178388995,178454531,178520067,178585603,178651139,178716675,178782211,178847747,178913283],"parkedcalleventhandler":[4325383,69337089,175964166],"parkedcallevent":[4325377,24117251,61472775,69402625,69468162,90439683,139460610,139526146,139591682,139657218,139722754,139788290,162004994,171573258,171704321,173211649,175964165],"parkedcallgiveupeventhandler":[4390919,69337089,176029702],"parkedcallgiveupevent":[4390913,24182787,61538311,69468162,90505219,166395905,171638794,176029701],"parkedcallscompleteeventhandler":[4456455,69337089,176095238],"parkedcallscompleteevent":[4456449,24248323,61603847,69402625,69468162,90570755,162004994,171704330,173211649,176095237],"parkedcalltimeouteventhandler":[4521991,69337089,176160774],"parkedcalltimeoutevent":[4521985,24313859,61669383,69468162,90636291,166395905,171769866,176160773],"peerentryeventhandler":[4587527,69337089,176226310],"peerentryevent":[4587521,24379395,61734918,69402626,69468162,90701827,139853827,139919362,139984898,140050435,140115970,140181507,140247043,140312579,140378115,140443650,140509187,140574723,162988034,163053570,171835401,171900929,173211649,176226309],"peerlistcompleteeventhandler":[4653063,69337089,176291846],"peerlistcompleteevent":[4653057,24444931,61800455,69402626,69468162,90767363,140640258,162988034,163053570,171900938,173211649,176291845],"peerstatuseventhandler":[4718599,69337089,176357382],"peerstatusevent":[4718593,24510467,61865991,69468162,90832899,140705794,140771330,140836866,140902402,140967938,170328065,171966474,176357381],"port":[6356994,7536641,8519681,33947654,34013190,34144262,34209800,42795014,43122694,65536006,65601542,77529089,77660162,93323267,96206849,96534530,151191559,155058178,155648001,155844610,175046659],"pool":[6356993,7995393,28246018,34013185,34144257,68878338,69599233,77660162,96665602,155058177,155844610,178913283],"provided":[6356994,8454145,8519681,10682374,30081025,30146561,30212097,30277633,31588353,31653889,46858241,46923777,69140483,69402625,69468161,69861380,70320130,73859074,155058178,155713542,156106753,157024257,158138369,160235522,163250177,174129153],"protected":[9109507,9764867,9830403,10027011,10092547,30015491,30081027,30146563,30212099,30277635,30343171,30408707,30474243,30539779,30605315,30670851,30736387,30801923,30867459,30932995,30998531,31064067,31129603,31195139,31260675,31326211,31391747,31457283,31522819,31588355,31653891,31719427,31784963,31850499,31916035,31981571,32047107,32112643,32178179,32243715,32309251,32374787,32440323,32505859,32571395,32702467,32768003,32833539,32899075,32964611,33030147,33095683,33161219,33226755,33292291,33423363,33488899,34340867,34471939,49676291,49807363,49938435,50987011,57212931,57671683,64618499,64684035,96468995],"particular":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,46268417,69402625,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907843,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"playback":[10551297,10682376,29163521,30081026,30146562,30212098,30277634,69140490,69402625,69861384,155516929,155713544,156106754,157089793,157155329,157220865,157286401,157351937,157417473,158138370,159121409],"part":[10551297,29229057,69074945,69206017,91881473,144703489,155516929,158662657,158793729,173015041],"parameter":[10616833,29687816,83099649,84279297,110755841,114884609,155648001,161873921,163053569],"parametermap":[10616833,29753351,155648001],"parametervalues":[10616833,29818888,155648001],"plays":[10682380,30081025,30146561,30212097,30277633,30867457,30932993,30998529,31195137,31260673,31457281,33226753,33292289,69140483,69861380,70057987,70189058,70254593,70844418,155713548,156106753,156631041,158138369],"play":[10682372,30081025,30146561,30212097,30277633,30867457,30932993,30998529,33226753,33292289,40239105,45613057,69140482,69861380,79495169,100466690,155713540,156106753,157941761,158138369],"pressed":[10682378,30081026,30146562,30212098,30277634,31195139,31260675,31784962,31916034,31981570,32047106,32178178,32309250,32440322,32571394,33292290,33423362,69140500,69861384,70189058,155713546,156106754,156631043,157089794,157155331,157220866,157286402,157351938,157417474,158138370],"prefix":[10682369,30474242,69926913,155713537],"presses":[10682371,30867457,30932993,30998529,31260673,36765697,69140481,70057987,78315521,98435073,155713539,156499969,156631041],"press":[10682372,31195139,31260675,36700161,36765697,69140482,70189060,78315521,98304001,155713540,156631043],"playmusiconhold":[10682370,31457286,31522824,70254595,155713538],"phonetics":[10682370,32374785,32440321,69140481,70647810,155713538,157351937],"priority":[10682369,32964615,40370182,45481990,52625415,52690951,69140481,69402626,70778881,75563010,77529090,79560706,80740354,83099653,84017154,85655553,86573057,86769665,86900737,90243074,91750401,92602369,93454341,95879174,100597766,104726534,110690305,110821377,110886919,114163718,118751238,128253958,138936326,144506881,149028870,152043521,152174593,152240135,155648002,155713537,158007299,159514626,161873927,162791428,166658049,167575553,167772161,168034305,171376642,172883969,173735937,175833093],"playing":[10682369,33161217,40173569,40239105,72220674,155713537,157941762],"pressing":[10682369,33292289,70844417,155713537],"pause":[11075585,30277633,34996226,35258369,71041025,77791233,97124353,156106754],"parkaction":[16842755,50659338,50724871,69402626,74973190,83165187,111083522,111149058,111214594,111280130,111345666,161611777,161939468],"pingaction":[16973827,50921478,69402626,83296259,111476738,161611777,162070538],"proxyaction":[17039363,50987014,69402625,82837506,82903042,82968578,83361797,109707266,161611779,161677314,161742850,162136076],"provide":[18153473,54132737,75890689,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,163250177,164691969,166002689,175177729,178192385],"parse":[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,26673154,26738689,26804225,26869761,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,59965447,64028682,67502087,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,136511490,153812994,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129156,174194691,174260227,174325763,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243],"properties":[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,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673154,26738691,26804227,26869763,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,57475073,59965441,60030977,60096514,67502081,67567617,69402626,69468163,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575363,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099653,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454341,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,109248513,110690305,110821377,110886913,152043521,152174593,152240129,155123713,155254785,155320321,155385857,155516929,155648001,155713537,155844609,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158662657,158728193,158793729,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349634,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873926,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068228,166133764,166199301,166264836,166330373,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131460,170196996,170262532,170328068,170393604,170459140,170524676,170590212,170655748,170721284,170786820,170852356,170917892,170983428,171048964,171114500,171180036,171245572,171311108,171376644,171442180,171507716,171573252,171638788,171704324,171769860,171835396,171900932,171966468,172032004,172097540,172163076,172228612,172294148,172359685,172425220,172490756,172556292,172621828,172687364,172752900,172818436,172883972,172949508,173015044,173080580,173146116,173211652,173277188,173342724,173408260,173473796,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063620,174129155,174194692,174260228,174325764,174718977,175046657,175177729,175833092,177274881,177340417,177405953,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243,177995777,178192385,178782209,178847745],"parser":[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,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673153,26738690,26804226,26869762,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,57475073,59965441,60030977,67502081,67567617,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129153,174194690,174260226,174325762,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"parsespecial":[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,20512770,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,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,57475078,60030982,67567622,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837698,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"prievent":[24576003,61931526,69468161,90898436,141033475,141099017,141164547,141230083,170328065,172032010],"protocol":[27000836,64880642,64946178,76611588,87818241,93323265,132055041,151519233,168951809,175046661],"particulary":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"picked":[28246017,68812801,178913281],"param":[28311553,28377092,28442627,28573698,28901378,29097985,29622273,29687809,29818881,31129601,31522817,32636930,32702465,32768001,32833537,32899073,32964609,33030145,33554433,33619969,33882113,33947652,34078721,34209797,34340865,37617665,38141953,40566785,40960001,41353217,41615361,41811969,41877505,41943041,42139649,42205185,42270722,42401793,42598401,42795011,43188225,43253761,43319298,43384834,43450369,43515905,43581442,43646978,43712513,43778049,43843586,43909122,44040194,44236801,44302337,44367874,44433410,45219842,45350926,46137346,46268417,46530561,46661634,46792706,46923777,47054849,47185921,47316994,47644673,50331649,50462722,50528257,50659331,51380229,51838979,51970052,52232193,52363265,53411841,53673985,53870593,53936130,54001667,54067204,54263810,54329347,54394883,54525954,54657025,54788097,54919169,55377921,55443457,55574530,55640065,55705601,55771137,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028674,64094209,64159745,64225281,64290817,64487425,64552962,65077249,65142785,65208322,65273857,65339393,65404929,65601537,65798145,65863681,65994754,66060289,66256897,66322433,66387971,66650113,66715650,66977793,67305473,67764225,68812801],"pausedigit":[30277637,34996229,35258373,77791233,97124357,156106753],"played":[31653889,37814273,78643201,98762753,157024257],"param1":[32636934],"param2":[32636934],"poolsize":[33947654,34013189,34144261,34209800,77660161,96665605,155844609],"pausing":[35061761,35127297,35192833,35258369,71106564,156106756],"pathtoxml":[42205190,42270726],"params":[43384833,43646977,43909121,44433409],"paramarray":[43384833,43646977,43909121,44433409],"pbx":[45547521,45613057,69402625,69468161,73334786,159580162,161284097,171376641],"profile":[46858241,46923777,73859074,160235522],"performs":[49086465,49152001,49217537,69402625,74711043,161349635,162070529],"password":[49086466,49152001,49217537,65536006,65601542,69337089,69402625,74711041,82575362,93323267,109051905,109248513,151060487,159186945,161349635,164691969,175046659],"parkinglot":[50724869,83165185,111280133,161939457],"penalty":[51249161,51773441,51838983,69468161,75038721,75235330,83427332,83623937,91291650,91357186,91553794,91684866,111804424,112721926,142475270,143065094,143785990,162201605,162398211,172425218,172490754,172687363,172818434],"positive":[51249153,83427329,111804417,162201601],"penalties":[51249153,83427329,91291649,91357185,91684865,111804417,142475265,143065089,162201601,172425217,172490753,172818433],"partial":[55312385,69337089,85000194,116260866,166002692],"partialresult":[55312389,85000193,116260869,166002689],"parts":[55312385,116260865],"parsed":[59965441,67502081],"passed":[60227585,77529090,90243073,95551490,138608641,155648002,171376641],"property":[68288513,69402627,69468162,77463553,80412676,80936962,82706433,82771969,83034115,83099649,83427330,83558401,83755009,84082690,84410369,84541442,84606977,84672513,84738049,84869121,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881475,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93323265,93454337,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94502916,94568452,94633988,94699524,94765059,94830595,94896132,94961668,95027204,95092740,95158276,95223812,95289348,95354883,95420420,95485956,95551492,95617028,95682564,95748100,95813636,95879172,95944708,96010244,96075780,96141316,96206852,96272388,96337923,96403459,96468996,96534532,96600068,96665604,96731140,96796676,96862212,96927748,96993284,97058820,97124356,97189892,97255428,97320964,97386500,97452036,97517572,97583108,97648644,97714180,97779716,97845252,97910788,97976324,98041860,98107396,98172932,98238468,98304004,98369540,98435076,98500612,98566147,98631684,98697220,98762756,98828292,98893828,98959364,99024900,99090436,99155972,99221508,99287044,99352580,99418116,99483652,99549188,99614724,99680260,99745796,99811332,99876868,99942404,100007940,100073475,100139011,100204547,100270084,100335620,100401155,100466691,100532228,100597764,100663300,100728836,100794372,100859908,100925444,100990980,101056516,101122052,101187588,101253124,101318659,101384195,101449732,101515268,101580804,101646340,101711876,101777412,101842948,101908484,101974020,102039556,102105092,102170628,102236164,102301700,102367236,102432772,102498308,102563844,102629381,102694916,102760453,102825988,102891525,102957061,103022595,103088132,103153667,103219204,103284740,103350276,103415812,103481348,103546884,103612420,103677956,103743492,103809028,103874564,103940100,104005636,104071172,104136708,104202244,104267780,104333316,104398852,104464388,104529924,104595460,104660996,104726532,104792068,104857604,104923140,104988676,105054212,105119748,105185284,105250821,105316357,105381892,105447428,105512964,105578500,105644036,105709572,105775108,105840644,105906180,105971716,106037252,106102788,106168324,106233860,106299396,106364932,106430468,106496004,106561540,106627076,106692612,106758148,106823684,106889220,106954756,107020292,107085828,107151364,107216900,107282436,107347972,107413508,107479044,107544580,107610116,107675652,107741188,107806723,107872260,107937796,108003332,108068868,108134404,108199940,108265476,108331012,108396548,108462084,108527620,108593156,108658692,108724228,108789764,108855300,108920836,108986372,109051908,109117444,109182980,109248516,109314052,109379588,109445124,109510661,109576196,109641733,109707268,109772804,109838340,109903876,109969412,110034949,110100485,110166021,110231556,110297092,110362628,110428164,110493700,110559236,110624773,110690308,110755844,110821380,110886916,110952452,111017988,111083524,111149060,111214596,111280132,111345668,111411204,111476740,111542276,111607813,111673348,111738884,111804420,111869957,111935492,112001028,112066564,112132100,112197636,112263172,112328708,112394245,112459780,112525316,112590852,112656388,112721924,112787460,112852996,112918532,112984068,113049604,113115140,113180676,113246213,113311748,113377284,113442820,113508356,113573892,113639428,113704964,113770500,113836036,113901572,113967108,114032644,114098180,114163716,114229252,114294788,114360325,114425861,114491396,114556932,114622468,114688004,114753540,114819076,114884612,114950148,115015684,115081221,115146756,115212292,115277828,115343364,115408900,115474436,115539973,115605509,115671044,115736581,115802116,115867653,115933188,115998725,116064260,116129796,116195333,116260867,116326404,116391940,116457476,116523012,116588548,116654084,116719620,116785156,116850692,116916228,116981764,117047300,117112836,117178372,117243908,117309444,117374980,117440516,117506052,117571588,117637124,117702660,117768196,117833732,117899268,117964804,118030340,118095876,118161412,118226948,118292484,118358020,118423556,118489092,118554628,118620164,118685700,118751236,118816772,118882308,118947844,119013380,119078916,119144452,119209988,119275524,119341060,119406596,119472132,119537668,119603204,119668740,119734276,119799812,119865348,119930884,119996420,120061956,120127492,120193028,120258564,120324100,120389636,120455172,120520708,120586244,120651780,120717316,120782852,120848388,120913924,120979460,121044996,121110532,121176068,121241604,121307140,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156804,126222340,126287876,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598596,127664132,127729668,127795204,127860740,127926276,127991812,128057348,128122884,128188420,128253956,128319492,128385028,128450564,128516100,128581636,128647172,128712708,128778244,128843780,128909316,128974852,129040388,129105924,129171460,129236996,129302532,129368068,129433604,129499140,129564676,129630212,129695748,129761284,129826820,129892356,129957892,130023428,130088964,130154500,130220036,130285572,130351108,130416644,130482180,130547716,130613252,130678788,130744324,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661828,131727364,131792900,131858436,131923972,131989508,132055044,132120580,132186116,132251652,132317188,132382724,132448260,132513796,132579332,132644868,132710404,132775940,132841476,132907012,132972548,133038084,133103620,133169156,133234692,133300228,133365764,133431300,133496836,133562372,133627908,133693444,133758980,133824516,133890052,133955588,134021124,134086660,134152196,134217732,134283268,134348804,134414340,134479876,134545412,134610948,134676484,134742020,134807556,134873092,134938628,135004164,135069700,135135236,135200772,135266308,135331844,135397380,135462916,135528452,135593988,135659524,135725060,135790596,135856132,135921668,135987204,136052740,136118276,136183812,136249348,136314884,136380420,136445956,136511492,136577028,136642564,136708101,136773636,136839172,136904709,136970244,137035780,137101316,137166852,137232388,137297924,137363460,137428996,137494532,137560068,137625604,137691140,137756676,137822212,137887748,137953284,138018820,138084356,138149892,138215428,138280964,138346500,138412036,138477572,138543108,138608644,138674180,138739716,138805252,138870788,138936324,139001860,139067396,139132932,139198468,139264004,139329540,139395076,139460612,139526148,139591684,139657220,139722756,139788292,139853828,139919364,139984900,140050436,140115972,140181508,140247044,140312580,140378116,140443652,140509188,140574724,140640260,140705796,140771332,140836868,140902404,140967940,141033476,141099012,141164548,141230084,141295620,141361156,141426692,141492228,141557764,141623300,141688836,141754372,141819908,141885444,141950980,142016516,142082052,142147588,142213124,142278660,142344196,142409732,142475268,142540804,142606340,142671876,142737412,142802948,142868484,142934020,142999556,143065092,143130628,143196164,143261700,143327236,143392772,143458308,143523844,143589380,143654916,143720452,143785988,143851524,143917060,143982596,144048132,144113668,144179204,144244740,144310276,144375812,144441348,144506884,144572420,144637956,144703492,144769029,144834564,144900100,144965636,145031172,145096708,145162244,145227780,145293316,145358852,145424388,145489924,145555460,145620996,145686532,145752068,145817604,145883140,145948676,146014212,146079748,146145284,146210820,146276356,146341892,146407428,146472964,146538500,146604036,146669572,146735108,146800644,146866180,146931716,146997252,147062788,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147652612,147718148,147783684,147849220,147914756,147980292,148045828,148111364,148176900,148242436,148307972,148373508,148439044,148504580,148570116,148635652,148701188,148766724,148832260,148897796,148963332,149028868,149094404,149159940,149225476,149291012,149356548,149422084,149487620,149553156,149618692,149684228,149749764,149815300,149880836,149946372,150011908,150077444,150142980,150208516,150274052,150339588,150405124,150470660,150536196,150601732,150667268,150732804,150798341,150863876,150929412,150994948,151060484,151126020,151191556,151257092,151322628,151388164,151453700,151519236,151584772,151650308,151715844,151781380,151846916,151912452,151977989,152043524,152109060,152174596,152240132,152305668,152371204,152436740,152502276,152567812,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009605,154075140,154140676,154206212,154271748,154337284,154402820,154468356,154533892,154599428,154664964,154730500,154796035,154861572,154927108,154992644,155516929,159186948,159711234,161480705,161546241,161677313,161742849,161808387,161873921,162201602,162332673,162529281,162856963,163184641,163315714,163381249,163446785,163512321,163643393,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015043,173080578,173146114,173211651,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129155,174194690,174260226,174325762,175046657,175833089,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,178782209],"processing":[69074945,69337089,155320321,177405953],"problem":[69074945,155385857],"provides":[69074945,69402625,155713537,163250177],"parenthesis":[69140483,77463553,94568450,155516929,156303361,156565505,156696577],"parentheses":[69140481,156958721],"passing":[69206017,158597121],"period":[69337090,166002689,178192385],"permitted":[69402625,159121409],"previous":[69402625,159121409],"party":[69402626,88539137,133955585,159121410,169672705],"precondition":[69402626,161349633,161939457],"pong":[69402625,93323266,151126018,162070529,175046658],"plain":[69402625,163250177],"place":[69402625,163250177],"providing":[69468163,166199297,166330369,172359681],"pseudo":[69468162,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,136642561,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951810,169017345,169082881,169148417,169213953,169279489,169345026,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"patches":[69468161,169672705],"pertaining":[69468161,170328065],"privilege":[69468161,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136708101,154009605,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"proxy":[69468161,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932546,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"plan":[69468161,77529091,95420417,95617025,95879169,155648003,174129153],"private":[69468161,174129153],"parses":[69533698,177537025,177668097],"parsing":[69533697,177668097],"pairs":[77266945,77332481,77398017,79953921,80019457,84475905,84934657,85000193,93388801,94306305,115212289,155254785,155320321,155385857,158466049,158531585,163250177,164691969,166002689,175177729,178192385],"preloadedassembly":[80150529,101515270,158728193],"proxykey":[80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,109838343,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393],"pick":[80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"park":[83165185,111083521,161939457],"parkedcalls":[83230721,111411201,162004993],"ping":[83296257,88866817,90832897,93323265,111476737,135593990,140967937,151126017,162070529,170000385,171966465,175046657],"possible":[85000193,92471297,116260865,148439041,166002689,173604865],"privileges":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136708097,154009601,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"peercount":[87097345,130482182,168230913],"peername":[87162881,131072006,168296449],"parties":[87621633,131923974,168755201],"protocolidentifier":[87818241,132055045,168951809],"path":[88539137,134086657,169672705],"pagestransferred":[88539137,134217733,169672705],"pages":[88539137,134217729,169672705],"packet":[88801281,135004166,169934849],"position":[88932354,90963969,91029505,91095041,91160578,136249350,141426694,141557766,141623302,141819910,170065922,172097537,172163073,172228609,172294146],"presentation":[90112002,138477569,138543105,171245570],"parkingtime":[90439681,139788289,171573249],"peerevents":[90767361,140640257,171900929],"pee":[90832897,140836865,171966465],"prieventcode":[90898433,141164550,172032001],"pausedreason":[91488257,143654917,172621825],"people":[91750401,144179202,172883969],"percent":[91750401,144375809,172883969],"packetslost":[92143617,145817606,173277185],"pinginterval":[93323265,151126021,175046657],"processed":[155582465],"process":[155582467],"proper":[155582465]} \ No newline at end of file +{"project":[131074,196609,64094209,155320321],"point":[196609,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132186113,149815297,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"port":[917506,2097153,3080193,28573702,28639238,28770310,28835848,37421062,37748742,60227590,60293126,72220673,72351746,88080387,90963969,91291650,147128327,150994946,151584769,151781378,171048963],"pool":[917505,2555905,22872066,28639233,28770305,63569922,64290817,72351746,91422722,150994945,151781378,174981123],"provided":[917506,3014657,3080193,5242886,24707073,24772609,24838145,24903681,26214401,26279937,41484289,41549825,63832067,64094209,64159745,64552964,65011714,68550658,150994946,151650310,152043521,152961025,154075137,156172290,159186945,170131457],"public":[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,3604483,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4456451,4521987,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,27262979,27983875,28180483,28246019,28311555,28377091,28442627,28508163,28573699,28639235,28704771,28770307,28835843,28901379,29032451,29163523,29229059,29294595,29360131,29425667,29491203,29556739,29622275,29687811,29753347,29818883,29884419,29949955,30015491,30081027,30146563,30212099,30277635,30343171,30408707,30474243,30539779,30605315,30670851,30736387,30801923,30867459,30932995,30998531,31064067,31129603,31195139,31260675,31326211,31391747,31457283,31522819,31588355,31653891,31719427,31784963,31850499,31916035,31981571,32047107,32112643,32178179,32243715,32309251,32374787,32440323,32505859,32571395,32636931,32702467,32768003,32833539,32899075,32964611,33030147,33095683,33161219,33226755,33292291,33357827,33423363,33488899,33554435,33619971,33685507,33751043,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34275331,34340867,34406403,34471939,34537475,34603011,34668547,34734083,34799619,34865155,34930691,34996227,35061763,35127299,35192835,35258371,35323907,35389443,35454979,35520515,35586051,35651587,35717123,35782659,35848195,35913731,36110339,36175875,36241411,36306947,36372483,36438019,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,38404099,38469635,38535171,38600707,38666243,38731779,38797315,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173571,40239107,40304643,40370179,40435715,40501251,40566787,40632323,40697859,40763395,40828931,40894467,40960003,41025539,41091075,41156611,41222147,41287683,41353219,41418755,41484291,41549827,41615363,41680899,41746435,41811971,41877507,41943043,42008579,42074115,42139651,42205187,42270723,42336259,42401795,42467331,42532867,42598403,42663939,42729475,42795011,42860547,42926083,42991619,43057155,43122691,43188227,43253763,43319299,43384835,43450371,43515907,43581443,43646979,43712515,43778051,43843587,43909123,43974659,44040195,44105731,44171267,44236803,44367875,44498947,44630019,44695555,44761091,44826627,44892163,44957699,45023235,45088771,45154307,45219843,45285379,45350915,45416451,45481987,45547523,45678595,45744131,45809667,45875203,45940739,46006275,46071811,46137347,46202883,46268419,46333955,46399491,46465027,46530563,46596099,46661635,46727171,46792707,46858243,46923779,46989315,47054851,47120387,47185923,47251459,47316995,47382531,47448067,47513603,47579139,47644675,47710211,47775747,47841283,47906819,47972355,48037891,48103427,48168963,48234499,48300035,48365571,48431107,48496643,48562179,48627715,48693251,48758787,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49610755,49676291,49741827,49807363,49872899,49938435,50003971,50069507,50135043,50200579,50266115,50331651,50397187,50462723,50528259,50593795,50659331,50724867,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51904515,51970051,52035587,52101123,52166659,52232195,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591491,54657027,54722563,54788099,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59179011,59244547,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965443,60030979,60096515,60162051,60227587,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,64159747,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91291651,91357187,91422723,91488259,91553795,91619331,91684867,91750403,91815939,91881475,91947011,92012547,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,93257731,93323267,93388803,93454339,93519875,93585411,93650947,93716483,93782019,93847555,93913091,93978627,94044163,94109699,94175235,94240771,94306307,94371843,94437379,94502915,94568451,94633987,94699523,94765059,94830595,94896131,94961667,95027203,95092739,95158275,95223811,95289347,95354883,95420419,95485955,95551491,95617027,95682563,95748099,95813635,95879171,95944707,96010243,96075779,96141315,96206851,96272387,96337923,96403459,96468995,96534531,96600067,96665603,96731139,96796675,96862211,96927747,96993283,97058819,97124355,97189891,97255427,97320963,97386499,97452035,97517571,97583107,97648643,97714179,97779715,97845251,97910787,97976323,98041859,98107395,98172931,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221507,99287043,99352579,99418115,99483651,99549187,99614723,99680259,99745795,99811331,99876867,99942403,100007939,100073475,100139011,100204547,100270083,100335619,100401155,100466691,100532227,100597763,100663299,100728835,100794371,100859907,100925443,100990979,101056515,101122051,101187587,101253123,101318659,101384195,101449731,101515267,101580803,101646339,101711875,101777411,101842947,101908483,101974019,102039555,102105091,102170627,102236163,102301699,102367235,102432771,102498307,102563843,102629379,102694915,102760451,102825987,102891523,102957059,103022595,103088131,103153667,103219203,103284739,103350275,103415811,103481347,103546883,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529923,104595459,104660995,104726531,104792067,104857603,104923139,104988675,105054211,105119747,105185283,105250819,105316355,105381891,105447427,105512963,105578499,105644035,105709571,105775107,105840643,105906179,105971715,106037251,106102787,106168323,106233859,106299395,106364931,106430467,106496003,106561539,106627075,106692611,106758147,106823683,106889219,106954755,107020291,107085827,107151363,107216899,107282435,107347971,107413507,107479043,107544579,107610115,107675651,107741187,107806723,107872259,107937795,108003331,108068867,108134403,108199939,108265475,108331011,108396547,108462083,108527619,108593155,108658691,108724227,108789763,108855299,108920835,108986371,109051907,109117443,109182979,109248515,109314051,109379587,109445123,109510659,109576195,109641731,109707267,109772803,109838339,109903875,109969411,110034947,110100483,110166019,110231555,110297091,110362627,110428163,110493699,110559235,110624771,110690307,110755843,110821379,110886915,110952451,111017987,111083523,111149059,111214595,111280131,111345667,111411203,111476739,111542275,111607811,111673347,111738883,111804419,111869955,111935491,112001027,112066563,112132099,112197635,112263171,112328707,112394243,112459779,112525315,112590851,112656387,112721923,112787459,112852995,112918531,112984067,113049603,113115139,113180675,113246211,113311747,113377283,113442819,113508355,113573891,113639427,113704963,113770499,113836035,113901571,113967107,114032643,114098179,114163715,114229251,114294787,114360323,114425859,114491395,114556931,114622467,114688003,114753539,114819075,114884611,114950147,115015683,115081219,115146755,115212291,115277827,115343363,115408899,115474435,115539971,115605507,115671043,115736579,115802115,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253955,128319491,128385027,128450563,128516099,128581635,128647171,128712707,128778243,128843779,128909315,128974851,129040387,129105923,129171459,129236995,129302531,129368067,129433603,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661827,131727363,131792899,131858435,131923971,131989507,132055043,132120579,132186115,132251651,132317187,132382723,132448259,132513795,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103619,133169155,133234691,133300227,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824515,133890051,133955587,134021123,134086659,134152195,134217731,134283267,134348803,134414339,134479875,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004163,135069699,135135235,135200771,135266307,135331843,135397379,135462915,135528451,135593987,135659523,135725059,135790595,135856131,135921667,135987203,136052739,136118275,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232387,137297923,137363459,137428995,137494531,137560067,137625603,137691139,137756675,137822211,137887747,137953283,138018819,138084355,138149891,138215427,138280963,138346499,138412035,138477571,138543107,138608643,138674179,138739715,138805251,138870787,138936323,139001859,139067395,139132931,139198467,139264003,139329539,139395075,139460611,139526147,139591683,139657219,139722755,139788291,139853827,139919363,139984899,140050435,140115971,140181507,140247043,140312579,140378115,140443651,140509187,140574723,140640259,140705795,140771331,140836867,140902403,140967939,141033475,141099011,141164547,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244739,144310275,144375811,144441347,144506883,144572419,144637955,144703491,144769027,144834563,144900099,144965635,145031171,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555459,145620995,145686531,145752067,145817603,145883139,145948675,146014211,146079747,146145283,146210819,146276355,146341891,146538499,146604035,146669571,146735107,146800643,146866179,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307971,148373507,148439043,148504579,148570115,148635651,148701187,148766723,148832259,148897795,148963331,149028867,149094403,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618691,149684227,149749763,149815299,149880835,149946371,150011907,150077443,150142979,150208515,150274051,150339587,150405123,150470659,150536195,150601731,150667267,150732803,150798339,150863875,150929411,150994947,151060483,151126019,151191556,151257092,151322628,151388163,151453699,151519235,151584771,151650307,151715843,151781379,151846915,151912452,151977988,152043524,152109060,152174596,152240132,152305668,152371204,152436740,152502276,152567812,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075140,154140676,154206212,154271748,154337283,154402820,154468356,154533891,154599427,154664963,154730499,154796035,154861571,154927107,154992643,155058180,155123716,155189252,155254788,155320324,155385860,155451396,155516932,155582468,155648004,155713540,155779076,155844612,155910148,155975684,156041220,156106756,156172292,156237828,156303364,156368900,156434436,156499972,156565508,156631044,156696580,156762116,156827652,156893188,156958724,157024260,157089796,157155332,157220868,157286404,157351940,157417476,157483012,157548547,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400516,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645699,159711235,159776771,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563203,160628740,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163840003,163905539,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903236,167968772,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131463,170196996,170262532,170328068,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180036,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998083,174063619,174129155,174194691,174260228,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850051,174915587,174981123],"protected":[3670019,4325379,4390915,4587523,4653059,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,26935299,27000835,27066371,27131907,27197443,27328515,27394051,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,28049411,28114947,28966915,29097987,44302339,44433411,44564483,45613059,51838979,52297731,59310083,59375619,91226115],"perform":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,64028673,64159745,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133762,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170917889,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"particular":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,40894465,64094209,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844611,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"playback":[5111809,5242888,23789569,24707074,24772610,24838146,24903682,63832074,64094209,64552968,151453697,151650312,152043522,153026561,153092097,153157633,153223169,153288705,153354241,154075138,155058177],"part":[5111809,23855105,63766529,63897601,86638593,140640257,151453697,154599425,154730497,169017345],"parameter":[5177345,24313864,77791233,78970881,105512961,109641729,151584769,157810689,158990337],"parametermap":[5177345,24379399,151584769],"parametervalues":[5177345,24444936,151584769],"plays":[5242892,24707073,24772609,24838145,24903681,25493505,25559041,25624577,25821185,25886721,26083329,27852801,27918337,63832067,64552964,64749571,64880642,64946177,65536002,151650316,152043521,152567809,154075137],"play":[5242884,24707073,24772609,24838145,24903681,25493505,25559041,25624577,27852801,27918337,34865153,40239105,63832066,64552964,74186753,95223810,151650308,152043521,153878529,154075137],"pressed":[5242890,24707074,24772610,24838146,24903682,25821187,25886723,26411010,26542082,26607618,26673154,26804226,26935298,27066370,27197442,27918338,28049410,63832084,64552968,64880642,151650314,152043522,152567811,153026562,153092099,153157634,153223170,153288706,153354242,154075138],"prefix":[5242881,25100290,64618497,151650305],"presses":[5242883,25493505,25559041,25624577,25886721,31391745,63832065,64749571,73007105,93192193,151650307,152436737,152567809],"press":[5242884,25821187,25886723,31326209,31391745,63832066,64880644,73007105,93061121,151650308,152567811],"playmusiconhold":[5242882,26083334,26148872,64946179,151650306],"phonetics":[5242882,27000833,27066369,63832065,65339394,151650306,153288705],"priority":[5242881,27590663,34996230,40108038,47251463,47316999,63832065,64094210,65470465,70254594,72220674,74252290,75431938,77791237,78708738,80347137,81264641,81461249,81592321,84934658,86507521,87359489,88211461,90636294,95354886,99483654,105447425,105578497,105644039,108920838,114294790,123797510,134479878,140443649,144965638,147980289,148111361,148176903,151584770,151650305,153944067,155451394,157810695,158728196,162594817,163512321,163708929,163971073,167313410,168886273,169738241,171835397],"playing":[5242881,27787265,34799617,34865153,66912258,151650305,153878530],"pressing":[5242881,27918337,65536001,151650305],"pause":[5636097,24903681,29622274,29884417,65732609,72482817,91881473,152043522],"parkaction":[11403267,45285386,45350919,64094210,69664774,77856771,105840642,105906178,105971714,106037250,106102786,157548545,157876236],"parkedcallsaction":[11468803,45416452,45481990,64028674,64094210,64159746,77922307,106168322,157614081,157941770,167510018,167641090,171966465,172097537],"pingaction":[11534339,45547526,64094210,77987843,106233858,157548545,158007306],"proxyaction":[11599875,45613062,64094209,77529090,77594626,77660162,78053381,104464386,157548547,157614082,157679618,158072844],"provide":[12713985,48758785,70582273,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,159186945,160628737,161939457,171180033,174260225],"parameters":[12713985,22937601,23003137,23068673,23199745,23330817,23396353,23527425,23724033,23789569,24248321,24313857,24444929,24576001,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362434,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,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,27852801,27918337,27983873,28049409,28180481,28246017,28508161,28573697,28639233,28704769,28770305,28835841,28966913,29425665,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31719425,32047105,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35913729,35979265,36110337,36175873,36241409,36438017,36503553,36569089,36765697,36831233,36896769,37027841,37224449,37421057,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39256065,39387137,39452673,39583745,39649281,39845889,39976961,40108033,40239105,40370177,40501249,40632321,40763393,40894465,41156609,41287681,41418753,41549825,41680897,41811969,41943041,42270721,42401793,42532865,42729473,42860545,42991617,43253761,43384833,43450369,43581441,43712513,43778049,43843585,44040193,44171265,44695553,44761089,44826625,44957697,45088769,45154305,45285377,45350913,45744129,45809665,45875201,46006273,46137345,46202881,46268417,46333953,46465025,46596103,46727169,46858241,46989313,47251457,47316993,47448065,47513601,47644673,47710209,48037889,48300033,48496641,48562177,48627713,48693249,48758786,48889857,48955393,49020929,49152001,49283073,49414145,49545217,49807361,49872897,49938433,50003969,50069505,50200577,50266113,50331649,50397185,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59113473,59179009,59244545,59637761,59768833,59834369,59899905,59965441,60030977,60096513,60227586,60293122,60358657,60424193,60489729,60555265,60686337,60751873,60948481,61014017,61079553,61145089,61341697,61407233,61669377,61997057,62062593,62193665,62259201,62455809,62717953,62849025,62914561,62980097,63307777,63373313,63438849,63504385,63635457,63766529,63897601,64028673,64094209,64159745,70582273,71499778,77791234,78381057,84934658,88211457,105185281,105512962,107741190,134152194,148045825,151519235,154599425,154730497,157810691,158400513,159186945,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,167313410,168886273,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171048962,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080578,173146113,173211649,173277185,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"parse":[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,21299202,21364737,21430273,21495809,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,54591495,58720266,62193671,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,132055042,149749762,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131460,170196995,170262531,170328067,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"properties":[13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,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,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,21168131,21233667,21299202,21364739,21430275,21495811,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,52101121,54591489,54657025,54722562,62193665,62259201,64094210,64159747,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266947,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791237,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211461,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,104005633,105447425,105578497,105644033,147980289,148111361,148176897,151060481,151191553,151257089,151322625,151453697,151584769,151650305,151781377,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154599425,154664961,154730497,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810694,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004996,162070532,162136069,162201604,162267141,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903236,167968772,168034308,168099844,168165380,168230916,168296453,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131459,170196996,170262532,170328068,170721281,171048961,171180033,171835396,173342721,173408257,173473793,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063617,174260225,174850049,174915585],"parser":[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,21299201,21364738,21430274,21495810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,52101121,54591489,54657025,62193665,62259201,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131457,170196994,170262530,170328066,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"parsespecial":[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,15073282,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,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,52101126,54657030,62259206,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774466,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"parkedcallevent":[18677763,56098823,64094209,64159746,85131267,135004162,135069698,135135234,135200770,135266306,135331842,157941762,167510026,167641089,169213953,171966469],"parkedcallgiveupevent":[18743299,56164359,64159746,85196803,162332673,167575562,172032005],"parkedcallscompleteevent":[18808835,56229895,64094209,64159746,85262339,157941762,167641098,169213953,172097541],"parkedcalltimeoutevent":[18874371,56295431,64159746,85327875,162332673,167706634,172163077],"peerentryevent":[18939907,56360966,64094210,64159746,85393411,135397379,135462914,135528450,135593987,135659522,135725059,135790595,135856131,135921667,135987202,136052739,136118275,158924802,158990338,167772169,167837697,169213953,172228613],"peerlistcompleteevent":[19005443,56426503,64094210,64159746,85458947,136183810,158924802,158990338,167837706,169213953,172294149],"peerstatusevent":[19070979,56492039,64159746,85524483,136249346,136314882,136380418,136445954,136511490,166264833,167903242,172359685],"prievent":[19136515,56557574,64159745,85590020,136577027,136642569,136708099,136773635,166264833,167968778],"protocol":[21626884,59572226,59637762,71303172,82509825,88080385,127598593,147456001,164888577,171048965],"particulary":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"picked":[22872065,63504385,174981121],"param":[22937601,23003140,23068675,23199746,23527426,23724033,24248321,24313857,24444929,25755649,26148865,27262978,27328513,27394049,27459585,27525121,27590657,27656193,28180481,28246017,28508161,28573700,28704769,28835845,28966913,32243713,32768001,35192833,35586049,35979265,36241409,36438017,36503553,36569089,36765697,36831233,36896770,37027841,37224449,37421059,37814273,37879809,37945346,38010882,38076417,38141953,38207490,38273026,38338561,38404097,38469634,38535170,38666242,38862849,38928385,38993922,39059458,39845890,39976974,40763394,40894465,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,44957697,45088770,45154305,45285379,46006277,46465027,46596100,46858241,46989313,48037889,48300033,48496641,48562178,48627715,48693252,48889858,48955395,49020931,49152002,49283073,49414145,49545217,50003969,50069505,50200578,50266113,50331649,50397185,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720258,58785793,58851329,58916865,58982401,59179009,59244546,59768833,59834369,59899906,59965441,60030977,60096513,60293121,60489729,60555265,60686338,60751873,60948481,61014017,61079555,61341697,61407234,61669377,61997057,62455809,63504385],"pausedigit":[24903685,29622277,29884421,72482817,91881477,152043521],"pass":[25362433,30736385,64028673,64094209,64159745,72810497,77791233,88211457,92667905,105512962,148045825,152371201,155123713,157810689,170131457,171442177,171835393],"played":[26279937,32440321,73334785,93519873,152961025],"param1":[27262982],"param2":[27262982],"poolsize":[28573702,28639237,28770309,28835848,72351745,91422725,151781377],"pausing":[29687809,29753345,29818881,29884417,65798148,152043524],"pathtoxml":[36831238,36896774],"params":[38010881,38273025,38535169,39059457],"paramarray":[38010881,38273025,38535169,39059457],"pbx":[40173569,40239105,64094209,64159745,68026370,155516930,157220865,167313409],"progress":[41484289,41549825,64028673,68550658,156172290,161218561],"profile":[41484289,41549825,68550658,156172290],"performs":[43712513,43778049,43843585,64094209,69402627,157286403,158007297],"password":[43712514,43778049,43843585,60227590,60293126,64028673,64094209,69402625,77266946,88080387,103809025,104005633,146997255,155123713,157286403,160628737,171048963],"parkinglot":[45350917,77856769,106037253,157876225],"parked":[45350913,64028676,64094210,64159748,77856769,80084996,85131270,85196804,85327876,87687173,105906177,112132097,112197633,112263169,112328705,135004161,135069697,135135233,135200769,135266305,135331841,145686529,157876225,157941762,162332676,167510023,167575557,167641089,167706628,170065926,171966465,172032001,172097537,174522369],"parking":[45350913,64028673,64094209,64159746,77856769,106037249,157876226,162332673,167706625,172163073],"penalty":[45875209,46399489,46465031,64159745,69730305,69926914,78118916,78315521,80150530,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,106561544,107479046,112984070,138018822,138608646,139067398,139657222,158138373,158334979,162398210,168361986,168427522,168493058,168558594,168624131,168689666,168755202,168820738],"positive":[45875201,78118913,106561537,158138369],"penalties":[45875201,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,106561537,112984065,138018817,138608641,139657217,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737],"paused":[46202885,46333957,64028674,64159746,78118915,78249985,80150533,85983237,86048769,86114308,86179846,86245381,86310917,86376453,86441989,106496007,107216901,112852999,112918530,137953287,138543110,138936321,139001857,139591687,158138371,158269441,162398213,168361989,168427521,168493061,168558599,168624133,168689669,168755205,168820741,172818433,172883969],"peer":[48037895,64028673,64094211,64159745,70451201,78970882,85393411,85524483,109641734,135528449,135659521,135987201,136249345,136380423,158924801,158990341,163905538,167772164,167903235,172228609],"partial":[49938433,64028673,79691778,111017986,161939460],"partialresult":[49938437,79691777,111017989,161939457],"parts":[49938433,111017985],"passed":[50724865,54853633,56950785,57081857,57147393,57212929,57278465,57344001,57409537,72220674,84934657,90308610,134152193,151584770,167313409],"parsed":[54591489,62193665],"property":[62980097,64094211,64159746,72155137,75104260,75628546,77398017,77463553,77725699,77791233,78118914,78249985,78446593,78774274,79101953,79233026,79298561,79364097,79429633,79560705,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638595,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88080385,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89260036,89325572,89391108,89456644,89522179,89587715,89653252,89718788,89784324,89849860,89915396,89980932,90046468,90112003,90177540,90243076,90308612,90374148,90439684,90505220,90570756,90636292,90701828,90767364,90832900,90898436,90963972,91029508,91095043,91160579,91226116,91291652,91357188,91422724,91488260,91553796,91619332,91684868,91750404,91815940,91881476,91947012,92012548,92078084,92143620,92209156,92274692,92340228,92405764,92471300,92536836,92602372,92667908,92733444,92798980,92864516,92930052,92995588,93061124,93126660,93192196,93257732,93323267,93388804,93454340,93519876,93585412,93650948,93716484,93782020,93847556,93913092,93978628,94044164,94109700,94175236,94240772,94306308,94371844,94437380,94502916,94568452,94633988,94699524,94765060,94830595,94896131,94961667,95027204,95092740,95158275,95223811,95289348,95354884,95420420,95485956,95551492,95617028,95682564,95748100,95813636,95879172,95944708,96010244,96075779,96141315,96206852,96272388,96337924,96403460,96468996,96534532,96600068,96665604,96731140,96796676,96862212,96927748,96993284,97058820,97124356,97189892,97255428,97320964,97386501,97452036,97517573,97583108,97648645,97714181,97779715,97845252,97910787,97976324,98041860,98107396,98172932,98238468,98304004,98369540,98435076,98500612,98566148,98631684,98697220,98762756,98828292,98893828,98959364,99024900,99090436,99155972,99221508,99287044,99352580,99418116,99483652,99549188,99614724,99680260,99745796,99811332,99876868,99942404,100007941,100073477,100139012,100204548,100270084,100335620,100401156,100466692,100532228,100597764,100663300,100728836,100794372,100859908,100925444,100990980,101056516,101122052,101187588,101253124,101318660,101384196,101449732,101515268,101580804,101646340,101711876,101777412,101842948,101908484,101974020,102039556,102105092,102170628,102236164,102301700,102367236,102432772,102498308,102563843,102629380,102694916,102760452,102825988,102891524,102957060,103022596,103088132,103153668,103219204,103284740,103350276,103415812,103481348,103546884,103612420,103677956,103743492,103809028,103874564,103940100,104005636,104071172,104136708,104202244,104267781,104333316,104398853,104464388,104529924,104595460,104660996,104726532,104792069,104857605,104923141,104988676,105054212,105119748,105185284,105250820,105316356,105381893,105447428,105512964,105578500,105644036,105709572,105775108,105840644,105906180,105971716,106037252,106102788,106168324,106233860,106299396,106364933,106430468,106496004,106561540,106627077,106692612,106758148,106823684,106889220,106954756,107020292,107085828,107151365,107216900,107282436,107347972,107413508,107479044,107544580,107610116,107675652,107741188,107806724,107872260,107937796,108003333,108068868,108134404,108199940,108265476,108331012,108396548,108462084,108527620,108593156,108658692,108724228,108789764,108855300,108920836,108986372,109051908,109117445,109182981,109248516,109314052,109379588,109445124,109510660,109576196,109641732,109707268,109772804,109838341,109903876,109969412,110034948,110100484,110166020,110231556,110297093,110362629,110428164,110493701,110559236,110624773,110690308,110755845,110821380,110886916,110952453,111017987,111083524,111149060,111214596,111280132,111345668,111411204,111476740,111542276,111607812,111673348,111738884,111804420,111869956,111935492,112001028,112066564,112132100,112197636,112263172,112328708,112394244,112459780,112525316,112590852,112656388,112721924,112787460,112852996,112918532,112984068,113049604,113115140,113180676,113246212,113311748,113377284,113442820,113508356,113573892,113639428,113704964,113770500,113836036,113901572,113967108,114032644,114098180,114163716,114229252,114294788,114360324,114425860,114491396,114556932,114622468,114688004,114753540,114819076,114884612,114950148,115015684,115081220,115146756,115212292,115277828,115343364,115408900,115474436,115539972,115605508,115671044,115736580,115802116,115867652,115933188,115998724,116064260,116129796,116195332,116260868,116326404,116391940,116457476,116523012,116588548,116654084,116719620,116785156,116850692,116916228,116981764,117047300,117112836,117178372,117243908,117309444,117374980,117440516,117506052,117571588,117637124,117702660,117768196,117833732,117899268,117964804,118030340,118095876,118161412,118226948,118292484,118358020,118423556,118489092,118554628,118620164,118685700,118751236,118816772,118882308,118947844,119013380,119078916,119144452,119209988,119275524,119341060,119406596,119472132,119537668,119603204,119668740,119734276,119799812,119865348,119930884,119996420,120061956,120127492,120193028,120258564,120324100,120389636,120455172,120520708,120586244,120651780,120717316,120782852,120848388,120913924,120979460,121044996,121110532,121176068,121241604,121307140,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156804,126222340,126287876,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598596,127664132,127729668,127795204,127860740,127926276,127991812,128057348,128122884,128188420,128253956,128319492,128385028,128450564,128516100,128581636,128647172,128712708,128778244,128843780,128909316,128974852,129040388,129105924,129171460,129236996,129302532,129368068,129433604,129499140,129564676,129630212,129695748,129761284,129826820,129892356,129957892,130023428,130088964,130154500,130220036,130285572,130351108,130416644,130482180,130547716,130613252,130678788,130744324,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661828,131727364,131792900,131858436,131923972,131989508,132055044,132120580,132186116,132251653,132317188,132382724,132448261,132513796,132579332,132644868,132710404,132775940,132841476,132907012,132972548,133038084,133103620,133169156,133234692,133300228,133365764,133431300,133496836,133562372,133627908,133693444,133758980,133824516,133890052,133955588,134021124,134086660,134152196,134217732,134283268,134348804,134414340,134479876,134545412,134610948,134676484,134742020,134807556,134873092,134938628,135004164,135069700,135135236,135200772,135266308,135331844,135397380,135462916,135528452,135593988,135659524,135725060,135790596,135856132,135921668,135987204,136052740,136118276,136183812,136249348,136314884,136380420,136445956,136511492,136577028,136642564,136708100,136773636,136839172,136904708,136970244,137035780,137101316,137166852,137232388,137297924,137363460,137428996,137494532,137560068,137625604,137691140,137756676,137822212,137887748,137953284,138018820,138084356,138149892,138215428,138280964,138346500,138412036,138477572,138543108,138608644,138674180,138739716,138805252,138870788,138936324,139001860,139067396,139132932,139198468,139264004,139329540,139395076,139460612,139526148,139591684,139657220,139722756,139788292,139853828,139919364,139984900,140050436,140115972,140181508,140247044,140312580,140378116,140443652,140509188,140574724,140640260,140705797,140771332,140836868,140902404,140967940,141033476,141099012,141164548,141230084,141295620,141361156,141426692,141492228,141557764,141623300,141688836,141754372,141819908,141885444,141950980,142016516,142082052,142147588,142213124,142278660,142344196,142409732,142475268,142540804,142606340,142671876,142737412,142802948,142868484,142934020,142999556,143065092,143130628,143196164,143261700,143327236,143392772,143458308,143523844,143589380,143654916,143720452,143785988,143851524,143917060,143982596,144048132,144113668,144179204,144244740,144310276,144375812,144441348,144506884,144572420,144637956,144703492,144769028,144834564,144900100,144965636,145031172,145096708,145162244,145227780,145293316,145358852,145424388,145489924,145555460,145620996,145686532,145752068,145817604,145883140,145948676,146014212,146079748,146145284,146210820,146276356,146341892,146407428,146472964,146538500,146604036,146669572,146735109,146800644,146866180,146931716,146997252,147062788,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147652612,147718148,147783684,147849220,147914757,147980292,148045828,148111364,148176900,148242436,148307972,148373508,148439044,148504580,148570116,148635652,148701188,148766724,148832260,148897796,148963332,149028868,149094404,149159940,149225476,149291012,149356548,149422084,149487620,149553156,149618692,149684228,149749764,149815300,149880836,149946373,150011908,150077444,150142980,150208516,150274052,150339588,150405124,150470660,150536196,150601732,150667268,150732803,150798340,150863876,150929412,151453697,155123716,155648002,157417473,157483009,157614081,157679617,157745155,157810689,158138370,158269441,158466049,158793731,159121409,159252482,159318017,159383553,159449089,159580161,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017347,169082882,169148418,169213955,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131459,170196994,170262530,170328066,171048961,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174850049],"processing":[63766529,64028673,151257089,173473793],"problem":[63766529,151322625],"provides":[63766529,64094209,151650305,159186945],"parenthesis":[63832067,72155137,89325570,151453697,152240129,152502273,152633345],"parentheses":[63832065,152895489],"passing":[63897601,154533889],"period":[64028674,161939457,174260225],"previously":[64028674,64159746,64225281,159711233,160104449,162529281,162922497,173998081],"phone":[64028673,64159745,80281601,113639425,161742849,162529281,165216257],"parkedcalleventhandler":[64028673,171966469],"parkedcall":[64028673,171966465],"parkedcallgiveupeventhandler":[64028673,172032005],"parkedcallgiveup":[64028673,172032001],"parkedcallscompleteeventhandler":[64028673,172097541],"parkedcallscomplete":[64028673,172097537],"parkedcalltimeouteventhandler":[64028673,172163077],"parkedcalltimeout":[64028673,172163073],"peerentryeventhandler":[64028673,172228613],"peerentry":[64028673,172228609],"peerlistcompleteeventhandler":[64028673,172294149],"peerlistcomplete":[64028673,172294145],"peers":[64028673,64094210,64159745,81788929,85393411,85524484,125960193,135462913,135528449,135987201,136249346,136511490,158924802,164167681,167772163,167837697,167903236,172294145],"peerstatuseventhandler":[64028673,172359685],"peerstatus":[64028673,85524481,136445957,167903233,172359681],"permitted":[64094209,155058177],"previous":[64094209,155058177],"party":[64094210,83230721,129499137,155058178,165609473],"precondition":[64094210,157286401,157876225],"pong":[64094209,88080386,147062786,158007297,171048962],"plain":[64094209,159186945],"place":[64094209,159186945],"providing":[64159747,162136065,162267137,168296449],"pseudo":[64159746,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132186113,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281794,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"patches":[64159745,165609473],"pertaining":[64159745,166264833],"privilege":[64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251653,149946373,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"proxy":[64159745,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934850,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"plan":[64159745,72220675,90177537,90374145,90636289,151584771,170131457],"private":[64159745,170131457],"parses":[64225282,173604865,173735937],"parsing":[64225281,173735937],"pairs":[71958529,72024065,72089601,74645505,74711041,79167489,79626241,79691777,88145921,89063425,109969409,151191553,151257089,151322625,154402817,154468353,159186945,160628737,161939457,171180033,174260225],"preloadedassembly":[74842113,96272390,154664961],"proxykey":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,104595463,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161],"pick":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"park":[77856769,105840641,157876225],"parkedcalls":[77922305,106168321,157941761],"ping":[77987841,83558401,85524481,88080385,106233857,131137542,136511489,147062785,158007297,165937153,167903233,171048961],"possible":[79691777,87228417,111017985,144375809,161939457,169607169],"privileges":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"pausedreason":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,112918533,138870789,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"peercount":[81788929,126025734,164167681],"peername":[81854465,126615558,164233217],"parties":[82313217,127467526,164691969],"protocolidentifier":[82509825,127598597,164888577],"path":[83230721,129630209,165609473],"pagestransferred":[83230721,129761285,165609473],"pages":[83230721,129761281,165609473],"packet":[83492865,130547718,165871617],"position":[83623938,85655553,85721089,85786625,85852162,131792902,136970246,137101318,137166854,137363462,166002690,168034305,168099841,168165377,168230914],"presentation":[84803586,134021121,134086657,167182338],"parkingtime":[85131265,135331841,167510017],"peerevents":[85458945,136183809,167837697],"pee":[85524481,136380417,167903233],"prieventcode":[85590017,136708102,167968769],"people":[86507521,140115970,168886273],"percent":[86507521,140312577,168886273],"packetslost":[86900737,141754374,169279489],"pinginterval":[88080385,147062789,171048961],"processed":[151519233],"process":[151519235],"proper":[151519233]} \ No newline at end of file diff --git a/docs/fti/FTI_113.json b/docs/fti/FTI_113.json index bf9d866..ff7633f 100644 --- a/docs/fti/FTI_113.json +++ b/docs/fti/FTI_113.json @@ -1 +1 @@ -{"queues":[786434,1114113,5439489,51511297,51576833,51904514,51970050,69402625,69468162,75169794,75300868,91357185,91684865,91750403,142868481,144179201,144310273,144506881,162332674,162463748,162725889,166658049,172490753,172818433,172883971,172949505,175046658],"queue":[786446,1310721,3473409,3538945,4784129,4849665,4915201,4980737,5046273,5111810,5177345,5242882,5373953,28246017,44761089,44826625,51118087,51183623,51249159,51380230,51642375,51707911,51773441,51838983,51904514,51970056,52101127,52166657,52232199,68812801,69402630,69468176,75038723,75169794,75235330,75300868,75366401,75431938,83427332,83492865,83558402,83623937,83689473,83755010,83820545,83951618,85065731,85131265,85458946,85655554,85721091,85786627,85852163,88539139,88932358,88997891,90963969,91029507,91095043,91160580,91226115,91291656,91357192,91422723,91488261,91553795,91619330,91684872,91750409,111738882,111869958,112197638,112525318,112787462,113049606,113311750,113442822,113770502,116457478,116523009,117702662,118816774,136118273,136183809,136249345,141492230,141819905,141885446,141950977,142016513,142082054,142344195,142409729,142540802,142802945,142868482,142934017,143130630,143196162,143327233,143523841,143589377,143654913,143785985,143982594,144113666,144179202,144244742,144441345,144506883,162201608,162267137,162332677,162398211,162463749,162529284,162594819,162725893,166068227,166133761,166461443,166658050,166723587,166789123,166854660,169672707,170065927,170131460,172097537,172163076,172228612,172294149,172359683,172425226,172490761,172556292,172621830,172687364,172752900,172818440,172883978,175046670,178913281],"queuecallerabandon":[786433,4784133,175046657],"queueentryevent":[786434,4784129,4980738,24838147,62193671,69402625,69468162,91160579,141688834,141754370,141819906,141885442,141950978,162725890,172294154,173211649,175046658,176619525],"queuestatusaction":[786437,4784129,4980737,5046273,5373953,5439489,17629187,52428804,52494342,69402626,69468164,83951619,113639426,113704962,113770498,161677313,162725898,172294146,172490754,172883970,172949506,175046661],"queuecallerjoin":[786433,4849669,175046657],"queuecallerleave":[786433,4915205,175046657],"queueentry":[786433,4980741,175046657],"queuemember":[786433,5046277,175046657],"queuememberevent":[786434,5046274,5308417,25034755,62390279,69402625,69468163,91357187,91684874,142606338,142671874,142737410,142802946,142868482,142934018,142999555,143065090,143130626,143196162,162725890,172490762,172818448,173211649,175046658,176750597],"queuememberadded":[786433,5111813,175046657],"queuememberaddedevent":[786433,5111810,24969219,62324743,69468162,91291651,142147586,142213122,142278658,142344194,142409730,142475266,142540802,166461441,172425226,175046657,176685061],"queuememberpaused":[786433,5177349,175046657],"queuememberpausedevent":[786433,5177346,25100291,62455815,69468162,91422723,143261698,143327234,143392771,166461441,172556298,175046657,176816133],"queuememberremoved":[786433,5242885,175046657],"queuememberremovedevent":[786433,5242882,25296899,62652423,69468162,91619331,143851522,166461441,172752906,175046657,176881669],"queuememberstatus":[786433,5308421,175046657],"queuememberstatusevent":[786433,5308418,25362435,62717959,69468162,91684867,172490753,172818442,175046657,176947205],"queueparams":[786433,5373957,175046657],"queueparamsevent":[786433,5373954,25427971,62783495,69402625,69468162,91750403,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,162725890,172883978,173211649,175046657,177012741],"queuestatuscomplete":[786433,5439493,175046657],"queuestatuscompleteevent":[786433,5439490,25493507,62849031,69402625,69468162,91815939,162725890,172949514,173211649,175046657,177078277],"queuecallerabandoneventhandler":[4784135,69337089,176422918],"queuecallerabandonevent":[4784129,24641539,61997062,69468161,90963971,141295619,141361155,141426691,141492227,170328065,172097545,176422917],"queuecallerjoineventhandler":[4849671,69337089,176488454],"queuecallerjoinevent":[4849665,24707075,62062599,69468162,91029507,141557763,172163082,172359681,176488453],"queuecallerleaveeventhandler":[4915207,69337089,176553990],"queuecallerleaveevent":[4915201,24772611,62128135,69468162,91095043,141623299,172228618,172359681,176553989],"queueentryeventhandler":[4980743,69337089,176619526],"queuemembereventhandler":[5046279,69337089,176750598],"queuememberaddedeventhandler":[5111815,69337089,176685062],"queuememberpausedeventhandler":[5177351,69337089,176816134],"queuememberremovedeventhandler":[5242887,69337089,176881670],"queuememberstatuseventhandler":[5308423,69337089,176947206],"queueparamseventhandler":[5373959,69337089,177012742],"queuestatuscompleteeventhandler":[5439495,69337089,177078278],"queueaddaction":[17104899,51052551,51118087,51183623,51249159,69402626,75038730,83427331,111542274,111607810,111673346,111738882,111804418,111869954,161611777,162201616],"queuelogaction":[17170435,51314694,51380235,69402625,75104260,83492867,111935491,112001027,112066563,112132099,112197635,112263171,161611777,162267146],"queuepauseaction":[17235971,51445767,51511303,51576839,51642375,51707911,69402626,75169804,83558403,112328706,112394242,112459778,112525314,161611777,162332690],"queuepenaltyaction":[17301507,51773446,51838985,69402625,75235332,83623939,112590851,112656387,112721923,112787459,161611777,162398218],"queuereloadaction":[17367043,51904518,51970058,69402625,75300868,83689475,112852995,112918531,112984067,113049603,113115139,161611777,162463754],"queueremoveaction":[17432579,52035591,52101127,69402626,75366406,83755011,113180674,113246210,113311746,161611777,162529292],"queueresetaction":[17498115,52166662,52232199,69402625,75431940,83820547,113377283,113442819,161611777,162594826],"queueruleaction":[17563651,52297735,52363272,69402625,75497478,83886083,113508355,113573891,161611777,162660364],"queueevent":[24903683,62259207,69468161,88932354,88997890,91029506,91095042,91226115,142016514,142082050,170065927,170131463,170328065,172163079,172228615,172359689],"queuememberpauseevent":[25165827,62521351,69468162,91488259,143458306,143523842,143589378,143654914,143720450,166461441,172556289,172621833],"queuememberpenaltyevent":[25231363,62586887,69468162,91553795,143785986,166461441,172687370],"queries":[34799617,48758785,48824321,49414145,69402627,70975489,74579970,74776577,156041217,161087489,161218563,161480706],"query":[34799617,48758785,48824321,49414145,82313218,82444291,82706433,82771969,108396545,108462081,108724226,108789761,109510657,109641729,161087490,161218563,161480705,161546241],"queue_log":[51314689,51380225,75104258,162267138],"qualified":[69074945,69206017,158662657,158793729],"queried":[69468161,87949315,132186113,132251649,132317185,169082884],"quite":[69533697,177537025],"queueadd":[83427329,91357185,91684865,111542273,142868481,162201601,172490753,172818433],"queuepause":[83558401,112328705,162332673],"queueremove":[83755009,113180673,162529281],"queuestatus":[83951617,113639425,162725889],"queu":[91750401,144506881,172883969],"quoting":[155582465]} \ No newline at end of file +{"queueaddaction":[11665411,45678599,45744135,45809671,45875207,64094210,69730314,78118915,106299394,106364930,106430466,106496002,106561538,106627074,157548545,158138384],"queuelogaction":[11730947,45940742,46006283,64094209,69795844,78184451,106692611,106758147,106823683,106889219,106954755,107020291,157548545,158203914],"queuepauseaction":[11796483,46071815,46137351,46202887,46268423,46333959,64094210,69861388,78249987,107085826,107151362,107216898,107282434,157548545,158269458],"queuepenaltyaction":[11862019,46399494,46465033,64094209,69926916,78315523,107347971,107413507,107479043,107544579,157548545,158334986],"queuereloadaction":[11927555,46530566,46596106,64094209,69992452,78381059,107610115,107675651,107741187,107806723,107872259,157548545,158400522],"queueremoveaction":[11993091,46661639,46727175,64094210,70057990,78446595,107937794,108003330,108068866,157548545,158466060],"queueresetaction":[12058627,46792710,46858247,64094209,70123524,78512131,108134403,108199939,157548545,158531594],"queueruleaction":[12124163,46923783,46989320,64094209,70189062,78577667,108265475,108331011,157548545,158597132],"queuestatusaction":[12189699,47054852,47120390,64028676,64094210,64159748,78643203,108396546,108462082,108527618,157614081,158662666,168230914,168427522,168886274,168951810,172621825,172752897,173080577,173146113],"queuecallerabandonevent":[19202051,56623110,64159745,85655555,136839171,136904707,136970243,137035779,166264833,168034313,172425221],"queuecallerjoinevent":[19267587,56688647,64159746,85721091,137101315,168099850,168296449,172490757],"queuecallerleaveevent":[19333123,56754183,64159746,85786627,137166851,168165386,168296449,172556293],"queueentryevent":[19398659,56819719,64028673,64094209,64159746,85852163,137232386,137297922,137363458,137428994,137494530,158662658,168230922,169213953,172621830],"queueevent":[19464195,56885255,64159745,83623938,83689474,85721090,85786626,85917699,137560066,137625602,166002695,166068231,166264833,168099847,168165383,168296457],"queuememberaddedevent":[19529731,56950790,64028673,64159746,85983235,137691138,137756674,137822210,137887746,137953282,138018818,138084354,162398209,168361994,172687366],"queuememberevent":[19595267,57016327,64028674,64094209,64159746,86048771,138149890,138215426,138280962,138346498,138412034,138477570,138543107,138608642,138674178,138739714,158662658,168427530,169213953,172752902,173015041],"queuememberpausedevent":[19660803,57081862,64028673,64159746,86114307,138805250,138870786,138936322,162398209,168493066,172818438],"queuememberpauseevent":[19726339,57147398,64028673,64159746,86114306,86179843,138805249,138870785,139001858,162398209,168493059,168558601,172883974],"queuememberpenaltyevent":[19791875,57212934,64159746,86245379,139067394,162398209,168624138],"queuememberremovedevent":[19857411,57278470,64028673,64159746,86310915,139132930,162398209,168689674,172949510],"queuememberringinuseevent":[19922947,57344006,64159745,86376451,139198466,162398209,168755209],"queuememberstatusevent":[19988483,57409542,64028673,64159745,86441987,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,162398209,168820745,173015046],"queueparamsevent":[20054019,57475079,64028673,64094209,64159746,86507523,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,158662658,168886282,169213953,173080582],"queuestatuscompleteevent":[20119555,57540615,64028673,64094209,64159746,86573059,158662658,168951818,169213953,173146118],"queue":[22872065,39387137,39452673,45744135,45809671,45875207,46006278,46268423,46333959,46399489,46465031,46530562,46596104,46727175,46792705,46858247,63504385,64028686,64094214,64159761,69730307,69861378,69926914,69992452,70057985,70123522,78118916,78184449,78249986,78315521,78381057,78446594,78512129,78643202,79757315,79822849,80150540,80347138,80412675,80478211,80543747,83230723,83623942,83689475,85655553,85721091,85786627,85852164,85917699,85983241,86048776,86114315,86179852,86245388,86310923,86376460,86441993,86507529,106496002,106627078,106954758,107282438,107544582,107806726,108068870,108199942,108527622,111214598,111280129,112394241,112525313,112721921,112787459,112852993,112918529,112984065,113049606,113246209,114360326,131661825,131727361,131792897,137035782,137363457,137428998,137494529,137560065,137625606,137887747,137953281,138084353,138346497,138412034,138477569,138674182,138739714,139067393,139526147,139591681,139788289,139919362,140050434,140115970,140181510,140378113,140443651,158138376,158203905,158269445,158334979,158400517,158466052,158531587,158662661,159973377,162004995,162070529,162398221,162594818,162660355,162725891,162791428,165609475,166002695,166068228,168034305,168099844,168165380,168230917,168296451,168361995,168427529,168493068,168558605,168624141,168689677,168755212,168820746,168886282,170786817,170852353,172490753,172556289,172621825,172687362,172752897,172818433,172883969,172949506,173080577,174981121],"queries":[29425665,43384833,43450369,44040193,64094211,65667073,69271554,69468161,151977985,157024257,157155331,157417474],"query":[29425665,43384833,43450369,44040193,77004802,77135875,77398017,77463553,103153665,103219201,103481346,103546881,104267777,104398849,157024258,157155331,157417473,157483009],"queue_log":[45940737,46006273,69795842,158203906],"queues":[46137345,46202881,46530562,46596098,64028674,64094209,64159746,69861378,69992452,86048769,86507523,138412033,140115969,140247041,140443649,158269442,158400516,158662657,159776769,162594817,168427521,168886275,168951809,173146113],"qualified":[63766529,63897601,154599425,154730497],"queuecallerabandoneventhandler":[64028673,172425222],"queuecallerjoineventhandler":[64028673,172490757],"queuecallerleaveeventhandler":[64028673,172556293],"queueentryeventhandler":[64028673,172621829],"queuememberaddedeventhandler":[64028673,172687365],"queuemembereventhandler":[64028673,172752901],"queuememberpausedeventhandler":[64028673,172818437],"queuememberpauseeventhandler":[64028673,172883973],"queuememberremovedeventhandler":[64028673,172949509],"queuememberstatuseventhandler":[64028673,173015045],"queueparamseventhandler":[64028673,173080581],"queuestatuscompleteeventhandler":[64028673,173146117],"queried":[64159745,82640899,127729665,127795201,127860737,165019652],"quite":[64225281,173604865],"queueadd":[78118913,86048769,106299393,138412033,158138369,168427521],"queuepause":[78249985,107085825,158269441],"queueremove":[78446593,107937793,158466049],"queuestatus":[78643201,108396545,158662657],"queu":[86507521,140443649,168886273],"quoting":[151519233]} \ No newline at end of file diff --git a/docs/fti/FTI_114.json b/docs/fti/FTI_114.json index a920eed..b0282e2 100644 --- a/docs/fti/FTI_114.json +++ b/docs/fti/FTI_114.json @@ -1 +1 @@ -{"redirected":[1],"resources":[131073,196609,262145,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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,41811974,42270726,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"reached":[196609,50724866,69140481,69402625,83165186,111214593,111345665,156499969,159121409,161939458],"release":[196609,262145],"resharper":[196609],"released":[262145],"reference":[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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69206017,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597122,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281],"ring":[786433,1114113,85786625,119209985,166789121,175046657],"response":[786447,1507329,1572865,4325377,4456449,4587521,4653057,4784129,4980737,5046273,5373953,5439489,5636097,5701633,6225921,6291457,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,10027011,10092547,16580609,16646146,26935297,27000834,27459590,27525126,27590662,27656198,27721734,27787270,27852806,27918342,27983873,49152001,49217537,49610753,49741827,64421896,64880641,64946177,66322442,66650122,66781186,66846722,66912258,66977796,67043330,67108866,67174402,67239938,67305475,67371014,67436548,67502082,67567618,67633156,67698690,67764227,67829763,67895300,67960834,69337093,69402629,69468176,69533710,74711042,76611586,76939265,77004801,82575361,83099649,86835201,89063425,90374145,90832897,92864513,93323268,93585409,93650945,93716490,93782026,93847562,93913098,93978634,94044170,94109706,94175242,94240770,109051905,110493697,116260866,128778246,139395078,140967937,150667266,150732801,151519233,152698886,152895494,152961026,153026562,153092099,153157635,153223171,153288707,153354242,153419778,153485314,153550850,153616386,153681922,153747460,153812994,153878531,153944068,154009602,154075145,154140674,154206211,154271747,154337283,154402819,154468355,154533891,154599433,154664963,154730499,159645698,161349636,161480705,161546241,161677313,161742851,161873923,162070529,167051265,167116801,167837697,169082881,170196993,171507713,171573249,171704321,171835393,171900929,171966465,172294145,172490753,172883969,172949505,173211649,173670401,173735937,173998081,174260225,174325761,174718978,175046677,175177729,177274882,177340417,177405955,177471507,177537044,177602579,177668117,177733651,177799187,177864724,177930267,177995781],"reported":[786438,1572865,4456449,4653057,5439489,5701633,6291457,69402628,69468167,90767361,140640257,159318017,162004993,162988033,163119105,167051265,167837697,171704321,171900930,172949505,173670401,174260225,175046662],"record":[786433,2293761,10682372,31588355,31653891,37748737,37814273,52822017,52887553,69140482,69402626,69468161,70320132,75628546,78643201,83099649,93454337,99090433,110297089,151781377,155713540,157024259,161873922,162856963,168165377,175046657,175833089],"requests":[786433,2555905,34013185,34144257,45744129,53411841,69402630,73400321,75759617,77660161,96665601,155844609,159318017,159645698,162004993,162725889,163053569,163119105,163577857,175046657],"reload":[786433,2686977,51904513,51970049,54329350,54394886,69402626,69468161,75300866,84475907,91947013,115343367,144965636,145096705,162463746,163250181,173080582,175046657],"raised":[786436,2883585,2949121,4849665,4915201,69468161,172621825,175046660],"registrer":[786433,4718593,69468161,171966465,175046657],"removed":[786433,5242881,52101121,69468162,83755009,113311745,162529281,172556289,172752897,175046657],"registry":[786434,5505030,175046658],"register":[786433,5505025,27000833,65077249,69468162,91881473,144703489,173015042,174129153,175046658],"rename":[786433,5570565,175046657],"renameevent":[786433,5570562,6684675,9764867,9830403,25690115,63045639,69468162,92012547,145162242,145227778,170328065,173146122,175046657,177209349],"resumed":[786433,6029313,69468161,174063617,175046657],"remove":[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,52101121,83755009,113246209,162529281],"registryeventhandler":[5505031,69337089,177143814],"registryevent":[5505025,25559043,62914567,69468162,91881475,144572418,144637954,144703490,144769026,144834562,144900098,170328065,173015050,177143813],"renameeventhandler":[5570567,69337089,177209350],"response_key_value_separator":[6356993,8781830,155058177],"returned":[6422529,8978433,46858241,46923777,69402627,73859074,88932354,93782017,136118273,136183809,153026561,155844609,159121409,160235522,161677313,161742849,170065922,177537025],"return":[6422529,9043969,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28311553,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29687809,29753345,29818881,29884417,30081025,30146561,30212097,30277633,30539777,30670850,30736386,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31588353,31653889,31784961,31916033,31981569,32047105,32178177,32309249,32440321,32571393,33292289,33423361,34275329,34340865,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,41353217,41615361,41943041,42205185,42401793,42663937,42926081,43974657,44040193,45088769,46202881,46333953,47972353,48496641,49610753,49741825,49872897,50266113,50331649,50397185,50790401,52428801,53149697,53280769,53477377,53739521,54984705,55443457,55508993,57475073,59965441,60030977,60096513,64028673,64487425,64552961,64618497,64684033,64749569,64815105,65142785,65208321,65273857,65339393,65404929,65863681,65929217,66977793,67371009,67436546,67502081,67567617,67633153,67829762,67895297,68091905,68157441,69140483,69402626,69468161,77463554,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,94568449,94765059,94830595,95354881,96337921,96403457,98566145,100073473,100139009,100204545,100401153,100466689,101318657,101384193,103022593,103088129,103153665,107806721,116260865,136642561,154796033,155516930,155844609,156303361,156565505,156696577,161677313,161742849,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129154,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777],"reply":[6422529,9043969,10551299,29163523,69074946,77201409,77463553,94502913,94568449,155123713,155516932,155844609,158466049,158531585],"result":[6881281,10027014,10551298,29229059,30081025,30146561,30212097,30277633,31588353,31653889,55312385,69140483,69337089,69402626,69533697,77463553,85000194,86179841,86376449,86441985,86507521,93782017,94765058,116260866,120061958,120455174,121962502,125501446,153026565,155516931,156303361,156565505,156696577,161677313,161742849,166002692,167182337,167378945,167444481,167510017,177537026,177930241],"regex":[7340037,7405573,7864325,7929861,8060933,8126469,8192005,8257541,8323077,8847365],"reclaimed":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"returns":[10158081,10223617,10289154,10354690,10420226,10485761,10551301,10682380,10747905,10813441,13434882,13500418,13565953,13631489,13697025,13762561,13828097,13893633,13959170,16580609,16646145,18612226,18677762,27000834,27066370,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656194,27721729,27787265,27852801,27918337,28049410,28114945,28180481,28246017,28311553,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491201,29687809,29753345,29818881,29884417,30081025,30146561,30212097,30277633,30539777,30801921,31064065,31129601,31326209,31588354,31653890,34275329,34340865,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,41353217,41615361,41943041,42205185,42401793,42663937,43974657,44040193,45088769,46202881,46333953,47972353,48496641,49610754,49741826,49872897,50266113,50331649,50397185,50790401,52428801,53149697,53280769,53477377,53739521,54984705,55443457,55508993,64028673,64487425,64552961,64618497,64684033,64749569,64815105,65142785,65208321,65273857,65339393,65404929,65863681,65929217,66977794,67371009,67436545,67633153,67829761,67895297,69140520,69402626,69861380,70123522,70320132,77463555,77529099,78446593,78708737,79953922,80281601,80412673,80478210,82116609,83034113,83558401,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458947,85524481,85590019,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014850,88080386,88145922,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832902,90898433,90963969,91029505,91095041,91160577,91226113,91291652,91357185,91422724,91488259,91553795,91619332,91684865,91750409,91815937,91881473,91947011,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602375,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93978625,94568449,94765057,94830593,94896129,95354881,95420417,95551489,95617025,95682561,95879169,96206849,96272385,96337921,96403457,98566145,99221505,101318657,101384193,101974017,102957057,103022593,103088129,107806721,110231553,112525313,116260865,117637121,117702657,117899265,118095873,132907009,136904705,140705793,140836865,140902401,140967938,142278657,143261697,143851521,143917057,143982593,144048129,144113665,144179201,144310273,144375809,144506881,144965633,145031169,148570113,148635649,148701185,148766721,148963329,149094401,153550849,155123713,155189249,155254786,155320322,155385858,155451393,155516936,155648011,155713548,155779073,155844609,156106753,156172289,156237825,156303363,156368897,156434434,156499969,156565508,156631041,156696580,156762113,156893186,156958721,157024258,157089794,157155329,157220865,157286401,157351937,157417473,157483010,157548546,157876225,157941761,158138369,158203905,158269441,158334977,158466052,158531586,158597121,158662657,158728193,158793729,158859265,158924802,158990338,159186945,159252482,160890881,161480705,161546241,161677313,161742849,161808385,162332673,164691970,166002691,166068225,166133761,166199297,166264833,166330369,166395905,166461443,166526977,166592515,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148418,169213954,169279490,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966470,172032001,172097537,172163073,172228609,172294145,172359681,172425220,172490753,172556292,172621827,172687363,172752900,172818433,172883977,172949505,173015041,173080579,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735943,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046658,175177730,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668098,177733634,177799169,177864705,177930241,178192386,178782209,178847745,178913281],"represents":[10158081,10223617,10485761,10682369,10747905,10813441,13565953,13631489,13697025,13762561,13828097,13893633,13959169,27000833,27131905,27197441,27262977,27328513,27394049,28114945,28180481,28246017,69533698,155123713,155189249,155451393,155713537,155779073,155844609,158597121,158662657,158728193,158793729,158859265,158924801,158990337,175046657,175243265,175833089,177274881,177340417,177405953,177864705,177930241,178782209,178847745,178913281],"root":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"runtime":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"representation":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,77266945,77332481,77398017,79953921,80019457,84934657,85000193,88604673,89128961,93388801,94306305,134545409,136380417,155254786,155320322,155385858,158466050,158531586,164691970,166002690,169738241,170262529,175177730,178192386],"readreply":[10485761,28966919,155451393],"readrequest":[10485761,29032455,155451393],"retrieved":[10551297,29163521,155516929],"remember":[10682372,30081025,30146561,30212097,30277633,69140483,69861380,155713540,156106753,156631041,158138369],"retrieves":[10682369,30539777,48103425,69140481,69402627,74317825,155713537,156303361,160890882,162988033,163053569],"recordfile":[10682370,31588358,31653894,46858241,46923777,70320131,73859074,155713538,160235522],"received":[10682375,13893633,26935297,27000834,27328513,29949953,31588353,31653889,31784961,32178177,32309249,32440321,32571393,42926082,55312385,64421890,64880641,64946177,66453506,69074945,69140489,69337094,69402626,69468162,69533699,70320130,70385665,70516737,70582273,70647809,70713345,76611586,85000193,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539141,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93323265,93585409,93716484,93782020,93847556,93913092,93978628,94044164,94109700,94175236,116260867,134021121,134086657,134348801,136642562,151126017,152567809,153747457,153878529,153944065,154206209,155189249,155713543,156893185,157024257,157089793,157220865,157286401,157351937,157417473,158334978,158924801,159645697,161349633,166002691,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672710,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328067,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174718978,175046659,177274881,177340418,177405953,177471492,177537028,177602564,177668101,177733636,177799172,177864709,177930245,178192385],"recorded":[10682370,31588354,31653890,37748737,37814273,69140481,70320130,78643201,98959361,155713538,157024258],"reaching":[10682370,31588353,31653890,37814273,69140481,70320130,155713538,157024257],"returning":[10682373,31653889,31784961,32178177,32309249,32440321,32571393,37814273,69140486,70385665,70516737,70582273,70647809,70713345,155713541,157089793,157155329,157220865,157286401,157351937,157417473],"receive":[10682369,13893633,33423362,37421057,41287681,42860545,69140481,78512129,78577665,79888385,80412673,98631681,98697217,101253121,102957057,155582465,155713537,156893185,156958721,158334978,158924801,159186945],"rewind":[11075586,30277633,34930690,34996226,35061761,35127297,35192833,35258370,71041026,71106564,77791233,97189889,156106759],"receivecharcommand":[11862019,37289988,37355527,37421063,69140481,71630854,78512131,98631682,155910145,156893195],"receivetextcommand":[11927555,37486596,37552135,37617672,69140481,71696390,78577667,98697218,155910145,156958731],"recordfilecommand":[11993091,37683204,37748743,37814279,69140481,71761926,78643203,98762754,98828290,98893826,98959362,99024898,99090434,155910145,157024267],"resourcemappingstrategy":[13631491,41943045,42008579,42074119,42139656,69206017,72548358,80084995,101449731,158662667,158793732],"ressources":[13893633,42860545,158924801],"readline":[13893634,42860545,42926085,158924802],"reads":[13893633,42926081,69074945,155189249,158924801],"replaces":[16777218,18743298,18808834,19333122,19398658,19464194,19529730,22216706,27197442,50331649,50462721,55443457,55574529,65863681,65994753,161873922,166068226,166133762,166658050,166723586,166789122,166854658,169672706,175833090],"redirectaction":[17694723,52559879,52625415,52690951,69402625,75563016,84017155,113836034,113901571,113967106,114032642,114098178,114163714,161611777,162791437],"required":[18153473,54132738,69402626,75890689,80412673,83099649,93454337,102629377,110624769,151977985,155582465,159186945,161873921,163250179,175833089],"reloadevent":[25624579,62980103,69468162,91947011,144965634,145031170,145096706,169017345,173080586],"responseevent":[25755651,27328513,49610753,63111175,66453511,69337089,69468161,86048770,86114306,87425026,87556098,87949314,90374146,90439682,90570754,90701826,90767362,91160578,91357186,91684866,91750402,91815938,92078083,92536834,92602370,93126658,93192194,145293314,145358850,152633350,161677313,161742849,167051271,167116807,168558599,168689671,169082887,170328065,171507719,171573255,171704327,171835399,171900935,172294151,172490759,172818435,172883975,172949511,173211658,173670407,173735943,174260231,174325767,177340418],"rtcpreceivedevent":[25821187,63176711,69468161,92143619,145424387,145489923,145555459,145620995,145686531,145752067,145817603,145883139,145948675,146014211,146079747,146145283,170328065,173277194],"rtcpsentevent":[25886723,63242247,69468161,92209155,146210819,146276355,146341891,146407427,146472963,146538499,146604035,146669571,146735107,146800643,146866179,146931715,170328065,173342730],"rtpreceiverstatevent":[25952259,63307783,69468161,92274691,146997251,147062787,147128323,147193859,147259395,147324931,170328065,173408266],"rtpsenderstatevent":[26017795,63373319,69468161,92340227,147390467,147456003,147521539,147587075,147652611,147718147,170328065,173473802],"reader":[27000834,64880641,64946177,69074946,69533697,76611586,158466049,158531585,175046658,177537025],"registerusereventclass":[27000833,65077254,174129153,175046657],"responsehandler":[27000833,27394051,65208336,66584579,66650116,66715655,69337089,76677121,93650947,152764419,152829955,152895491,175046657,177405960],"responseeventhandler":[27262979,66191363,66256900,66322436,66387976,69337089,93519875,152371203,152436739,152502275,177274888],"responseevents":[27328515,55312390,65339397,65404933,66453506,66519045,69337091,69468161,93519873,93585411,116260871,152502284,152567810,152633347,152698883,166002689,173211649,177274882,177340424],"running":[28180481,28246017,68485121,68878337,178847745,178913281],"realize":[28246017,68878337,178913281],"retrieve":[29163521,30539778,31064065,31129601,31326209,33095681,35782658,36503553,36569089,36896769,47775745,47906817,48103425,69337089,77987841,78249985,82116609,84279297,97583105,98238465,107872257,114884609,156303361,156565505,160890881,163053569,166002689],"rewinddigit":[30277637,34930693,34996229,35258373,77791233,97189893,156106753],"recording":[31588353,31653890,37748737,37814274,46727169,46792705,46858242,46923778,46989313,47054849,69402626,73793538,73859076,73924610,78643202,98762753,98828289,157024258,160169986,160235524,160301058,161808385,163184641],"read":[36372481,49414145,69140481,69402626,74776577,78184450,98041858,156499971,161480706,163250177],"request":[41353222,41615367,41943047,42401799,69074946,77529090,91881473,96141318,96206849,144769025,155189250,155648002,173015041],"resourcename":[42139654,42598406],"removes":[46071809,46137345,52101121,69402625,73596930,75366401,159842306,162529282],"record_file":[46858242,46923778,73859076,160235524],"rules":[51970054,83689473,113115142,162463745],"reset":[52166657,52232193,75431938,162594818],"rule":[52363270,83886081,113573894,162660353],"redirects":[52625409,52690945,69402625,75563010,162791427],"redirect":[52625409,52690946,84017154,113836033,114098177,162791426],"renamecat":[54132737,69402625,163250177],"references":[68681729,68747265],"runnable":[68812806],"runs":[69074945,155189249],"receives":[69074946,69140482,156893185,156958721,158466049,158531585],"resource":[69074946,69206019,158597121,158662658,158793730],"recieve":[69140481,156499969],"recieved":[69140481,156499969],"reception":[69140484,156893186,156958721,158203905],"responsehandlerresult":[69337089,177405953],"responses":[69337089,174718977],"results":[69402626,159645697,161349633],"res":[69402627,69468165,159711233,161808385,163184641,169803777,171573249,171638785,171769857,174063617],"res_monitor":[69402627,159711233,161808385,163184641],"reports":[69402625,161873921],"repeatable":[69402625,163250177],"related":[69468166,166068225,166395905,166461441,168951809,169017345,169345025],"rung":[69468161,166658049],"report":[69468161,167837697],"res_features":[69468165,169803777,171573249,171638785,171769857,174063617],"replaced":[69468161,83034113,110100481,161808385,172556289],"restarted":[69468161,92471297,148307969,173604866],"recognized":[69468161,174129153],"raw":[69533697,177537025],"requires":[69533697,177668097],"requested":[69533697,91947012,144965636,173080580,177668097],"responsebuilder":[69533697,177668097],"resultcode":[77463553,86179841,94765061,120127494,155516929,167182337],"resultcodeaschar":[77463553,94830597,155516929],"rdnis":[77529089,95944710,155648001],"remoteaddress":[77529089,80281601,88473601,96010246,102236166,133890054,155648001,158924801,169607169],"remoteport":[77529089,80281601,96075782,102301702,155648001,158924801],"requesturl":[77529089,96206853,155648001],"resourcebundlename":[80084993,80216065,101449734,101777414,158662657,158793729],"reloaded":[84475905,115343361,163250177],"reason":[85590019,85721089,86835201,89063425,89128963,90374145,91422721,91488259,92864513,94240769,118095880,118947845,128712710,136380422,136445953,139329542,143392774,143654913,143720454,154533894,166592515,166723585,167837697,170196993,170262531,171507713,172556289,172621827,173998081,177995777],"ringtime":[85786625,119209989,166789121],"red":[86310913,93192193,120258561,150274049,167313409,174325761],"recovering":[86310913,93192193,120258561,150274049,167313409,174325761],"registrycount":[87097345,130547718,168230913],"reloadreason":[87097345,130613253,168230913],"reconnect":[87818242,87883778,88211458,91947010,92471298,93323269,132120582,150929409,151257089,151322625,151388161,151453697,168951810,169017346,169345026,173080578,173604866,175046661],"remotestationid":[88539137,134283269,169672705],"remote":[88539137,134283265,167968769,169672705],"resolution":[88539138,134348806,169672706],"row":[88539137,134348801,169672705],"rate":[88539137,134414337,169672705],"remotedropped":[88866817,135659526,170000385],"remotejbdelay":[88866817,135725062,170000385],"remotejitter":[88866817,135790598,170000385],"remotelosspercent":[88866817,135856134,170000385],"remoteooo":[88866817,135921670,170000385],"remotereceived":[88866817,135987206,170000385],"remotetotallost":[88866817,136052742,170000385],"reasoncode":[89128961,136445957,170262529],"realtimedevice":[90701825,140378118,171835393],"rejection":[90832897,140705794,171966465],"rejected":[90832898,91881476,140705793,140902401,144572418,144769026,171966466,173015044],"registered":[90832898,91881474,140836866,140902401,144769026,171966466,173015042],"registration":[90832898,91881479,140836865,140902402,144572418,144769025,144834561,144900099,171966466,173015047],"reachable":[90832898,140902401,140967937,171966466],"ratio":[91750401,144375810,172883969],"registrations":[91881473,144769025,173015041],"receptionreports":[92143617,145948678,173277185],"rtt":[92143617,92340225,146014214,147521542,173277185,173473793],"reportblock":[92209153,146538502,173342721],"receivedpackets":[92274689,147128326,173408257],"rrcount":[92274689,147193862,173408257],"restart":[92471298,148307973,148439041,173604866],"reconnecting":[93323265,150994945,175046657],"reconnection":[93323265,150994945,175046657],"reconnectintervalfast":[93323265,151257093,175046657],"reconnectintervalmax":[93323265,151322629,175046657],"reconnectretryfast":[93323265,151388165,175046657],"retry":[93323266,151388161,151453697,175046658],"reconnectretrymax":[93323265,151453701,175046657],"referencing":[93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,153747457,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"representing":[93782017,153026561,177537025],"readonly":[94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95879169,95944705,96141313,96206849,96272385,96337921,96403457,96468993,96993281,97124353,97189889,100990977,101318657,101384193,101842945,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102694913,103022593,103219201,103284737,103481345,104464385,104792065,105054209,105185281,105381889,105512961,105709569,105840641,105906177,106037249,106233857,106430465,106561537,106692609,106823681,107020289,107085825,107151361,107216897,107347969,107544577,107741185,107937793,108199937,108331009,108527617,108658689,108855297,108986369,109379585,109445121,109576193,109707265,109969409,110362625,111083521,111411201,111476737,111542273,111935489,112328705,112590849,112852993,113180673,113377281,113508353,113639425,113836033,114229249,114491393,114753537,114819073,114950145,115015681,115146753,115212289,115474433,115671041,115802113,115933185,116064257,116129793,116260865,136445953,138543105,150470657,150601729,151715841,152371201,152502273,152633345,152764417,152895489,153354241,153812993,154468353,154796033,154861569],"resulting":[154796033],"ref":[155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"rtp":[167968770]} \ No newline at end of file +{"redirected":[1],"resources":[131073,196609,262145,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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,36438022,36896774,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"reached":[196609,45350914,63832065,64094209,77856770,105971713,106102785,152436737,155058177,157876226],"release":[196609,262145],"resharper":[196609],"released":[262145],"reference":[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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63897601,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533890,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"response_key_value_separator":[917505,3342342,150994945],"returned":[983041,3538945,41484289,41549825,64094211,68550658,83623938,88539137,131661825,131727361,148963329,151781377,155058177,156172290,157614081,157679617,166002690,173604865],"return":[983041,3604481,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22937601,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707073,24772609,24838145,24903681,25165825,25296898,25362434,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26214401,26279937,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,28049409,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,37552129,38600705,38666241,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50069505,50135041,52101121,54591489,54657025,54722561,58720257,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,61669377,62062593,62128130,62193665,62259201,62324737,62521346,62586881,62783489,62849025,63832067,64094210,64159745,72155138,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,89325569,89522179,89587715,90112001,91095041,91160577,93323265,94830593,94896129,94961665,95158273,95223809,96075777,96141313,97779713,97845249,97910785,102563841,111017985,132186113,150732801,151453698,151781377,152240129,152502273,152633345,157614081,157679617,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617],"reply":[983041,3604481,5111811,23789571,63766530,71892993,72155137,89260033,89325569,151060481,151453700,151781377,154402817,154468353],"renameevent":[1245187,4325379,4390915,20316163,57737223,64028673,64159746,86769667,141099010,141164546,166264833,169148426,173277190],"response":[1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4587523,4653059,11141121,11206658,21561345,21626882,22085638,22151174,22216710,22282246,22347782,22413318,22478854,22544390,22609921,43778049,43843585,44236801,44367875,59113480,59572225,59637761,61014026,61341706,61472770,61538306,61603842,61669380,61734914,61800450,61865986,61931522,61997059,62062598,62128132,62193666,62259202,62324740,62390274,62455811,62521347,62586884,62652418,64028691,64094213,64159760,64225294,69402626,71303170,71630849,71696385,77266945,77791233,81526785,83755009,85065729,85524481,87621633,88080388,88342529,88408065,88473610,88539146,88604682,88670218,88735754,88801290,88866826,88932362,88997890,103809025,105250817,111017986,124321798,134938630,136511489,146604034,146669569,147456001,148635654,148832262,148897794,148963330,149028867,149094403,149159939,149225475,149291010,149356546,149422082,149487618,149553154,149618690,149684228,149749762,149815299,149880836,149946370,150011913,150077442,150142979,150208515,150274051,150339587,150405123,150470659,150536201,150601731,150667267,155582466,157286404,157417473,157483009,157614081,157679619,157810691,158007297,160169985,160235521,162988033,163053569,163774465,165019649,166133761,167444481,167510017,167641089,167772161,167837697,167903233,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170000385,170262529,170328065,170721282,171048966,171180033,171966465,172097537,172228609,172294145,172621825,172752897,173080577,173146113,173342722,173408257,173473795,173539347,173604884,173670419,173735957,173801491,173867027,173932564,173998107,174063621,174129153,174325761,174718977,174784513],"result":[1441793,4587526,5111810,23855107,24707073,24772609,24838145,24903681,26214401,26279937,49938433,63832067,64028673,64094210,64225281,72155137,79691778,80871425,81068033,81133569,81199105,88539137,89522178,111017986,115605510,115998726,117506054,121044998,148963333,151453699,152240129,152502273,152633345,157614081,157679617,161939460,163119105,163315713,163381249,163446785,173604866,173998081],"regex":[1900549,1966085,2424837,2490373,2621445,2686981,2752517,2818053,2883589,3407877],"reclaimed":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"returns":[4718593,4784129,4849666,4915202,4980738,5046273,5111813,5242892,5308417,5373953,7995394,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8519682,11141121,11206657,13172738,13238274,21626882,21692418,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22544385,22675458,22740993,22806529,22872065,22937601,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707073,24772609,24838145,24903681,25165825,25427969,25690113,25755649,25952257,26214402,26279938,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,38600705,38666241,39714817,40828929,40960001,42598401,43122689,44236802,44367874,44498945,44892161,44957697,45023233,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50069505,50135041,58720257,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,61669378,62062593,62128129,62324737,62521345,62586881,63832104,64094210,64552964,64815106,65011716,72155139,72220683,73138177,73400321,74645506,74973185,75104257,75169794,76808193,77725697,78249985,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,80281603,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706434,82771970,82837506,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524486,85590017,85655553,85721089,85786625,85852161,85917697,85983235,86048769,86114306,86179842,86245378,86310915,86376450,86441987,86507529,86573057,86638593,86704131,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359495,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88735745,89325569,89522177,89587713,89653249,90112001,90177537,90308609,90374145,90439681,90636289,90963969,91029505,91095041,91160577,93323265,93978625,96075777,96141313,96731137,97714177,97779713,97845249,102563841,104988673,107282433,111017985,112656385,113442817,113639425,128450561,132448257,136249345,136380417,136445953,136511490,137822209,139132929,139460609,139853825,139919361,139984897,140050433,140115969,140247041,140312577,140443649,140902401,140967937,144506881,144572417,144637953,144703489,144900097,145031169,149487617,151060481,151126017,151191554,151257090,151322626,151388161,151453704,151584779,151650316,151715841,151781377,152043521,152109057,152174593,152240131,152305665,152371202,152436737,152502276,152567809,152633348,152698881,152829954,152895489,152961026,153026562,153092097,153157633,153223169,153288705,153354241,153419778,153485314,153812993,153878529,154075137,154140673,154206209,154271745,154402820,154468354,154533889,154599425,154664961,154730497,154796033,154861570,154927106,155123713,155189250,156827649,157417473,157483009,157614081,157679617,157745153,158269441,160628738,161939459,162004993,162070529,162136065,162201601,162267137,162332673,162398210,162463745,162529283,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085186,165150722,165216258,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903238,167968769,168034305,168099841,168165377,168230913,168296449,168361987,168427521,168493058,168558594,168624130,168689667,168755202,168820739,168886281,168951809,169017345,169082883,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738247,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,171180034,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735938,173801474,173867009,173932545,173998081,174260226,174850049,174915585,174981121],"represents":[4718593,4784129,5046273,5242881,5308417,5373953,8126465,8192001,8257537,8323073,8388609,8454145,8519681,21626881,21757953,21823489,21889025,21954561,22020097,22740993,22806529,22872065,64225282,151060481,151126017,151388161,151650305,151715841,151781377,154533889,154599425,154664961,154730497,154796033,154861569,154927105,171048961,171245569,171835393,173342721,173408257,173473793,173932545,173998081,174850049,174915585,174981121],"root":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"runtime":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"representation":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,71958529,72024065,72089601,74645505,74711041,79626241,79691777,83296257,83820545,88145921,89063425,130088961,131923969,151191554,151257090,151322626,154402818,154468354,160628738,161939458,165675009,166199297,171180034,174260226],"readreply":[5046273,23592967,151388161],"readrequest":[5046273,23658503,151388161],"retrieved":[5111809,23789569,151453697],"remember":[5242884,24707073,24772609,24838145,24903681,63832067,64552964,151650308,152043521,152567809,154075137],"retrieves":[5242881,25165825,42729473,63832065,64094211,69009409,151650305,152240129,156827650,158924801,158990337],"recordfile":[5242882,26214406,26279942,41484289,41549825,65011715,68550658,151650306,156172290],"record":[5242884,26214403,26279939,32374785,32440321,47448065,47513601,63832066,64028673,64094210,64159745,65011716,70320130,73334785,77791233,88211457,93847553,105054209,147718145,151650308,152961027,157810690,158793731,161087489,164102145,171835393],"received":[5242887,8454145,21561345,21626882,21954561,24576001,26214401,26279937,26411009,26804225,26935297,27066369,27197441,37552130,49938433,59113474,59572225,59637761,61145090,63766529,63832073,64028678,64094210,64159746,64225283,65011714,65077249,65208321,65273857,65339393,65404929,71303170,79691777,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230725,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88080385,88342529,88473604,88539140,88604676,88670212,88735748,88801284,88866820,88932356,111017987,129564673,129630209,129892353,132186114,147062785,148504577,149684225,149815297,149880833,150142977,151126017,151650311,152829953,152961025,153026561,153157633,153223169,153288705,153354241,154271746,154861569,155582465,157286401,161939459,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609478,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264835,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170721282,171048963,173342721,173408258,173473793,173539332,173604868,173670404,173735941,173801476,173867012,173932549,173998085,174260225],"recorded":[5242882,26214402,26279938,32374785,32440321,63832065,65011714,73334785,93716481,151650306,152961026],"reaching":[5242882,26214401,26279938,32440321,63832065,65011714,151650306,152961025],"returning":[5242885,26279937,26411009,26804225,26935297,27066369,27197441,32440321,63832070,65077249,65208321,65273857,65339393,65404929,151650309,153026561,153092097,153157633,153223169,153288705,153354241],"receive":[5242881,8454145,28049410,32047105,35913729,37486593,63832065,73203713,73269249,74579969,75104257,93388801,93454337,96010241,97714177,151519233,151650305,152829953,152895489,154271746,154861569,155123713],"rewind":[5636098,24903681,29556738,29622274,29687809,29753345,29818881,29884418,65732610,65798148,72482817,91947009,152043527],"receivecharcommand":[6422531,31916036,31981575,32047111,63832065,66322438,73203715,93388802,151846913,152829963],"receivetextcommand":[6488067,32112644,32178183,32243720,63832065,66387974,73269251,93454338,151846913,152895499],"recordfilecommand":[6553603,32309252,32374791,32440327,63832065,66453510,73334787,93519874,93585410,93650946,93716482,93782018,93847554,151846913,152961035],"resourcemappingstrategy":[8192003,36569093,36634627,36700167,36765704,63897601,67239942,74776579,96206851,154599435,154730500],"ressources":[8454145,37486593,154861569],"readline":[8454146,37486593,37552133,154861570],"reads":[8454145,37552129,63766529,151126017,154861569],"replaces":[11337730,13303810,13369346,13893634,13959170,14024706,14090242,16777218,21823490,44957697,45088769,50069505,50200577,60555265,60686337,157810690,162004994,162070530,162594818,162660354,162725890,162791426,165609474,171835394],"redirectaction":[12255235,47185927,47251463,47316999,64094209,70254600,78708739,108593154,108658691,108724226,108789762,108855298,108920834,157548545,158728205],"required":[12713985,48758786,64094210,70582273,75104257,77791233,88211457,97386497,105381889,147914753,151519233,155123713,157810689,159186947,171835393],"registryevent":[20185091,57606151,64159746,86638595,140509186,140574722,140640258,140705794,140771330,140836866,166264833,169017354,173211653],"reloadevent":[20250627,57671687,64159746,86704131,140902402,140967938,141033474,164954113,169082890],"responseevent":[20381699,21954561,44236801,57802759,61145095,64028673,64159745,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835203,87293954,87359490,87883778,87949314,141230082,141295618,148570118,157614081,157679617,162988039,163053575,164495367,164626439,165019655,166264833,167444487,167510023,167641095,167772167,167837703,168230919,168427527,168886279,168951815,169213962,169672711,169738247,170262535,170328071,173408258],"rtcpreceivedevent":[20447235,57868295,64159745,86900739,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,166264833,169279498],"rtcpsentevent":[20512771,57933831,64159745,86966275,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,166264833,169345034],"rtpreceiverstatevent":[20578307,57999367,64159745,87031811,142934019,142999555,143065091,143130627,143196163,143261699,166264833,169410570],"rtpsenderstatevent":[20643843,58064903,64159745,87097347,143327235,143392771,143458307,143523843,143589379,143654915,166264833,169476106],"reader":[21626882,59572225,59637761,63766530,64225281,71303170,154402817,154468353,171048962,173604865],"registerusereventclass":[21626881,59768838,170131457,171048961],"register":[21626881,59768833,64028673,64159746,86638593,140640257,169017346,170131457,171048961,173211649],"responsehandler":[21626881,22020099,59899920,61276163,61341700,61407239,64028673,71368705,88408067,148701187,148766723,148832259,171048961,173473800],"responseeventhandler":[21889027,60882947,60948484,61014020,61079560,64028673,88276995,148307971,148373507,148439043,173342728],"responseevents":[21954563,49938438,60030981,60096517,61145090,61210629,64028675,64159745,88276993,88342531,111017991,148439052,148504578,148570115,148635651,161939457,169213953,173342722,173408264],"running":[22806529,22872065,63176705,63569921,174915585,174981121],"realize":[22872065,63569921,174981121],"retrieve":[23789569,25165826,25690113,25755649,25952257,27721729,30408706,31129601,31195137,31522817,42401793,42532865,42729473,64028673,72679425,72941569,76808193,78970881,92340225,92995585,102629377,109641729,152240129,152502273,156827649,158990337,161939457],"rewinddigit":[24903685,29556741,29622277,29884421,72482817,91947013,152043521],"recording":[26214401,26279938,32374785,32440322,41353217,41418753,41484290,41549826,41615361,41680897,64094210,68485122,68550660,68616194,73334786,93519873,93585409,152961026,156106754,156172292,156237826,157745153,159121409],"requests":[28639233,28770305,40370177,48037889,64028673,64094214,68091905,70451201,72351745,91422721,151781377,155254785,155582466,157941761,158662657,158990337,159055873,159514625,161349633],"read":[30998529,44040193,63832065,64094210,69468161,72876034,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,92798978,113180673,139722753,152436739,157417474,159186945,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"request":[35979270,36241415,36569095,37027847,63766530,72220674,86638593,90898438,90963969,140705793,151126018,151584770,169017345],"resourcename":[36765702,37224454],"removes":[40697857,40763393,46727169,64094209,68288514,70057985,155779074,158466050],"record_file":[41484290,41549826,68550660,156172292],"reload":[46530561,46596097,48955398,49020934,64028673,64094210,64159745,69992450,79167491,86704133,110100487,140902404,141033473,158400514,159186949,161480705,169082886],"rules":[46596102,78381057,107872262,158400513],"removed":[46727169,64028673,64159746,78446593,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,108068865,112656385,158466049,162398209,168361985,168493058,168558593,168624129,168689666,168755201,168820737,172949505],"remove":[46727169,78446593,108003329,158466049],"reset":[46792705,46858241,70123522,158531586],"rule":[46989318,78577665,108331014,158597121],"redirects":[47251457,47316993,64094209,70254594,158728195],"redirect":[47251457,47316994,78708738,108593153,108855297,158728194],"renamecat":[48758785,64094209,159186945],"references":[63373313,63438849],"runnable":[63504390],"runs":[63766529,151126017],"receives":[63766530,63832066,152829953,152895489,154402817,154468353],"resource":[63766530,63897603,154533889,154599426,154730498],"recieve":[63832065,152436737],"recieved":[63832065,152436737],"reception":[63832068,152829954,152895489,154140673],"responsehandlerresult":[64028673,173473793],"responses":[64028673,170721281],"ring":[64028673,80478209,114753537,159776769,162725889],"reported":[64028678,64094212,64159751,85458945,136183809,155254785,157941761,158924801,159055873,160169985,162988033,163774465,167641089,167837698,168951809,169672705,170262529,172097537,172294145,173146113,174325761,174718977],"raised":[64028676,64159747,161611777,161677313,168558593,168755201,168820737,172490753,172556289],"registrer":[64028673,64159745,167903233,172359681],"registryeventhandler":[64028673,173211653],"registry":[64028673,173211649],"renameeventhandler":[64028673,173277189],"resumed":[64028673,64159745,170065921,174522369],"results":[64094210,155582465,157286401],"res":[64094211,64159749,155648001,157745153,159121409,165740545,167510017,167575553,167706625,170065921],"res_monitor":[64094211,155648001,157745153,159121409],"reports":[64094209,157810689],"repeatable":[64094209,159186945],"related":[64159750,162004993,162332673,162398209,164888577,164954113,165281793],"rung":[64159745,162594817],"report":[64159745,163774465],"res_features":[64159749,165740545,167510017,167575553,167706625,170065921],"replaced":[64159745,77725697,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,104857601,112656385,157745153,162398209,168361985,168493058,168558593,168624129,168689665,168755201,168820737],"ringinuse":[64159745,80150530,85983234,86114306,86179842,86245378,86310914,86376450,86441986,113115142,139198470,162398210,168361986,168493058,168558594,168624130,168689666,168755203,168820738],"restarted":[64159745,87228417,144244737,169607170],"recognized":[64159745,170131457],"raw":[64225281,173604865],"requires":[64225281,173735937],"requested":[64225281,86704132,140902404,169082884,173735937],"responsebuilder":[64225281,173735937],"resultcode":[72155137,80871425,89522181,115671046,151453697,163119105],"resultcodeaschar":[72155137,89587717,151453697],"rdnis":[72220673,90701830,151584769],"remoteaddress":[72220673,74973185,83165185,90767366,96993286,129433606,151584769,154861569,165543937],"remoteport":[72220673,74973185,90832902,97058822,151584769,154861569],"requesturl":[72220673,90963973,151584769],"resourcebundlename":[74776577,74907649,96206854,96534534,154599425,154730497],"reloaded":[79167489,110100481,159186945],"realtime":[80150530,86114306,86179842,86245378,86310914,86376450,112787458,162398210,168493058,168558594,168624130,168689666,168755202],"reason":[80150529,80281603,80412673,81526785,83755009,83820547,85065729,85983233,86114306,86179843,86245377,86310913,86376449,86441985,87621633,88997889,112918529,113639432,114491397,124256262,131923974,131989505,134873094,138936326,139001862,150470662,162398209,162529283,162660353,163774465,166133761,166199299,167444481,168361985,168493058,168558595,168624129,168689665,168755201,168820737,170000385,174063617],"ringtime":[80478209,114753541,162725889],"red":[81002497,87949313,115802113,146210817,163250177,170328065],"recovering":[81002497,87949313,115802113,146210817,163250177,170328065],"registrycount":[81788929,126091270,164167681],"reloadreason":[81788929,126156805,164167681],"reconnect":[82509826,82575362,82903042,86704130,87228418,88080389,127664134,146866177,147193857,147259393,147324929,147390465,164888578,164954114,165281794,169082882,169607170,171048965],"remotestationid":[83230721,129826821,165609473],"remote":[83230721,129826817,163905537,165609473],"resolution":[83230722,129892358,165609474],"row":[83230721,129892353,165609473],"rate":[83230721,129957889,165609473],"remotedropped":[83558401,131203078,165937153],"remotejbdelay":[83558401,131268614,165937153],"remotejitter":[83558401,131334150,165937153],"remotelosspercent":[83558401,131399686,165937153],"remoteooo":[83558401,131465222,165937153],"remotereceived":[83558401,131530758,165937153],"remotetotallost":[83558401,131596294,165937153],"reasoncode":[83820545,131989509,166199297],"realtimedevice":[85393409,135921670,167772161],"rejection":[85524481,136249346,167903233],"rejected":[85524482,86638596,136249345,136445953,140509186,140705794,167903234,169017348],"registered":[85524482,86638594,136380418,136445953,140705794,167903234,169017346],"registration":[85524482,86638599,136380417,136445954,140509186,140705793,140771329,140836867,167903234,169017351],"reachable":[85524482,136445953,136511489,167903234],"ratio":[86507521,140312578,168886273],"registrations":[86638593,140705793,169017345],"receptionreports":[86900737,141885446,169279489],"rtt":[86900737,87097345,141950982,143458310,169279489,169476097],"reportblock":[86966273,142475270,169345025],"receivedpackets":[87031809,143065094,169410561],"rrcount":[87031809,143130630,169410561],"restart":[87228418,144244741,144375809,169607170],"reconnecting":[88080385,146931713,171048961],"reconnection":[88080385,146931713,171048961],"reconnectintervalfast":[88080385,147193861,171048961],"reconnectintervalmax":[88080385,147259397,171048961],"reconnectretryfast":[88080385,147324933,171048961],"retry":[88080386,147324929,147390465,171048962],"reconnectretrymax":[88080385,147390469,171048961],"referencing":[88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,149684225,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"representing":[88539137,148963329,173604865],"readonly":[89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90636289,90701825,90898433,90963969,91029505,91095041,91160577,91226113,91750401,91881473,91947009,95748097,96075777,96141313,96600065,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104464385,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,109969409,110231553,110428161,110559233,110690305,110821377,110886913,111017985,131989505,134086657,146407425,146538497,147652609,148307969,148439041,148570113,148701185,148832257,149291009,149749761,150405121,150732801,150798337],"resulting":[150732801],"ref":[150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"rtp":[163905538]} \ No newline at end of file diff --git a/docs/fti/FTI_115.json b/docs/fti/FTI_115.json index f818463..f5f488c 100644 --- a/docs/fti/FTI_115.json +++ b/docs/fti/FTI_115.json @@ -1 +1 @@ -{"sandcastle":[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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281],"search":[65537],"sort":[65537],"section":[131073,51904513,51970049,69468161,75300866,162463746,168165377],"select":[131073],"source":[196609,55377926,55705606,55771142,55902214,55967750,56033286,56098822,56164358,56229894,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950790,57016326,57081862,57147398,57212934,57278470,57344006,57409542,57540614,57606150,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58720262,58785798,58851334,58916870,58982406,59047942,59113478,59244550,59310086,59375622,59441158,59506694,59572230,59637766,59703302,59768838,59834374,59899910,60162049,60227589,60293126,60358662,60424198,60489734,60555270,60620806,60686342,60751878,60817414,60882950,60948486,61014022,61079558,61145094,61210630,61276166,61341702,61407238,61472774,61538310,61603846,61669382,61734918,61800454,61865990,61931526,61997062,62062598,62128134,62193670,62259206,62324742,62390278,62455814,62521350,62586886,62652422,62717958,62783494,62849030,62914566,62980102,63045638,63111174,63176710,63242246,63307782,63373318,63438854,63504390,63569926,63635462,63700998,63766534,63832070,63897606,63963142,64094214,64159750,64225286,64290822,76480513,77266945,77332481,77398017,79953921,80019457,84475905,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014851,88080387,88145923,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93388801,94306305,115408897,132907009,132972545,136839173,155254785,155320321,155385857,158466049,158531585,163250177,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148419,169213955,169279491,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175177729,178192385],"status":[196609,786434,5308417,5636101,6422530,8978433,9043969,10551298,29294595,54657025,54788097,69074946,69402626,69468161,76087297,76152833,84344833,86114306,87818241,87883777,88211457,88276993,88408065,88735745,89456641,89587713,89653249,89784321,90701826,90832900,91291651,91357187,91684867,91881473,91947011,92471297,93847553,94437377,114950145,119799814,132120577,133169157,133693445,134873094,137363462,137428998,137494534,137887750,140443654,140705794,140967938,142540807,143196167,144769029,145096710,153288710,154861569,155516930,155582469,155844610,158466049,158531585,163119105,163381250,163446786,167116802,168951809,169017345,169345025,169410561,169541633,169869313,170590209,170721281,170786817,170917889,171835394,171966468,172425219,172490755,172818436,173015041,173080579,173604865,175046658,177602561,178847745],"separation":[196609],"special":[196609,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"serializeobjectstate":[327681,393217,458753,524289,589825,655361,720897,851969,917505,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"serialized":[327682,393218,458754,524290,589826,655362,720898,851970,917506,155254786,155320322,155385858,158466050,158531586,164691970,166002690,175177730,178192386],"state":[327681,393217,458753,524289,589825,655361,720897,786442,851969,917505,1572865,1703937,1769473,3014657,3145729,4194305,5439489,5701633,6225921,6291457,28180482,68354049,68485121,69402631,69468170,80281601,85196803,88276995,88408065,88604675,90177539,90308611,90832897,91881473,92602369,93192193,101974017,116850689,116916225,117112838,133103622,133169153,133693441,140902402,144769025,149159942,150274049,155254785,155320321,155385857,158466049,158531585,158924801,159318018,161087489,162725889,163119106,163577857,164691969,166002689,166199299,167051265,167247873,167313409,169410564,169541634,169738243,171311107,171442180,171966465,172949505,173015041,173670401,173735937,174260225,174325762,175046666,175177729,178192385,178847746],"successfully":[786434,983041,1376257,69337089,69468162,155582465,166002689,166526977,166920193,175046658],"set":[786435,1114113,4325377,6160385,6422532,6553602,8978434,9043970,9175041,9240577,13959170,16777219,18743299,18808835,19333123,19398659,19464195,19529731,22216707,27197443,29163521,31129601,31326209,33095681,35913731,36241409,36306945,40566785,40960001,44105729,44171265,48234498,48365569,49217537,50397185,50528258,50724867,51773441,51838977,53018625,53084161,55508993,55640066,60162049,65929217,66060290,68288513,69140486,69402627,69468163,69533697,71368706,72876034,75235330,76480513,77529089,77791235,77856770,77922306,77987842,78053382,78118914,78184451,78249986,78315523,78512129,78577665,78643206,78708738,78774276,78839810,78905346,78970882,79036418,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560706,79626244,79691779,79757315,79822850,79888385,80347139,80412676,80478209,80871425,80936962,81002497,81985538,82051074,82116609,82182150,82247682,82313218,82378753,82444290,82509825,82575366,82706433,82771969,83034117,83099667,83165187,83427334,83558403,83755010,83951618,84017156,84082693,84148228,84279297,84410369,84475908,84541442,84606977,84672513,84738049,84869121,85065737,85131270,85196813,85262340,85327877,85393416,85458948,85524485,85590021,85655560,85721100,85786636,85852169,85917701,85983237,86048774,86114316,86179844,86245380,86310917,86376452,86441988,86507524,86573060,86638596,86704132,86769668,86835204,86900740,86966276,87031812,87097349,87162885,87228420,87293956,87359492,87425030,87490564,87556102,87621636,87687172,87752708,87818246,87883781,87949321,88014858,88080394,88145930,88211461,88276998,88342532,88408072,88473604,88539153,88604687,88670216,88735748,88801284,88866820,88932365,88997894,89063428,89128965,89194500,89260037,89325573,89391109,89456645,89522181,89587717,89653253,89718792,89784324,89849860,89915396,89980932,90046468,90112006,90177549,90243081,90308621,90374150,90439692,90505224,90570758,90636296,90701832,90767367,90832903,90898436,90963972,91029510,91095046,91160587,91226118,91291658,91357199,91422725,91488264,91553797,91619332,91684879,91750408,91815942,91881480,91947013,92012550,92078086,92143620,92209156,92274692,92340228,92405764,92471303,92536838,92602374,92667908,92733444,92798980,92864516,92930057,92995588,93061126,93126662,93192200,93323269,93454353,93716487,93782023,93847558,93913094,93978632,94044168,94109702,94175238,94568449,94896129,95748100,95813636,96010244,96075780,96534532,96600068,96665604,96731140,96796676,96862213,96927749,97058821,97255429,97320965,97386501,97452037,97517573,97583109,97648646,97714182,97779718,97845253,97910789,97976325,98041861,98107397,98172933,98238469,98304005,98369541,98435077,98500612,98566148,98631685,98697221,98762757,98828293,98893829,98959365,99024901,99090437,99155973,99221509,99287045,99352581,99418117,99483653,99549189,99614725,99680261,99745797,99811333,99876869,99942405,100007941,100073477,100139013,100204549,100270085,100335621,100401157,100466693,100532229,100597765,100663302,100728838,100794373,100859909,100925445,100990977,101056518,101122053,101187589,101253125,101449732,101515268,101580804,101646340,101711876,101777412,101908484,102498309,102563846,102629381,102760453,102825989,102891525,102957060,103088132,103153669,103350276,103415812,103546884,103612420,103677956,103743492,103809028,103874564,103940100,104005636,104071172,104136708,104202244,104267780,104333316,104398852,104529924,104595460,104660996,104726532,104857604,104923140,104988676,105119749,105250821,105316357,105447429,105578500,105644036,105775108,105971716,106102788,106168324,106299396,106364932,106496004,106627076,106758148,106889220,106954756,107282436,107413509,107479045,107610117,107675653,107806724,107872261,108003334,108068870,108134406,108265478,108396549,108462085,108593157,108724229,108789765,108920837,109051909,109117446,109182981,109248517,109314053,109510661,109641733,109772804,109838341,109903876,110034949,110100486,110166022,110231556,110297093,110428165,110493701,110559238,110624773,110690311,110755845,110821382,110886919,110952454,111017990,111149061,111214597,111280133,111345668,111607813,111673349,111738885,111804422,111869957,112001028,112066564,112132100,112197636,112263172,112394245,112459781,112525317,112656388,112721924,112787460,112918532,112984068,113049604,113115140,113246213,113311749,113442820,113573892,113704965,113770501,113901572,113967109,114032645,114098181,114163717,114294789,114360326,114425862,114556933,114622469,114688006,114884613,115081221,115277829,115343366,115408901,115539973,115605509,115736581,115867653,115998725,116195333,116326405,116391941,116457477,116523014,116588549,116654087,116719620,116785159,116850693,116916229,116981764,117047300,117112836,117178372,117243909,117309444,117374981,117440517,117506053,117571589,117637124,117702660,117768197,117833732,117899268,117964804,118030340,118095877,118161412,118226948,118292484,118358021,118423557,118489092,118554628,118620164,118685700,118751236,118816772,118882309,118947845,119013381,119078917,119144453,119209989,119275525,119341060,119406597,119472132,119537669,119603205,119668741,119734277,119799813,119865349,119930884,119996420,120061956,120127492,120193028,120258565,120324100,120389636,120455172,120520708,120586244,120651780,120717316,120782852,120848388,120913924,120979460,121044996,121110532,121176068,121241604,121307140,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156804,126222340,126287876,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598596,127664132,127729668,127795204,127860740,127926276,127991812,128057348,128122884,128188420,128253956,128319492,128385028,128450564,128516100,128581636,128647172,128712708,128778244,128843780,128909316,128974852,129040388,129105924,129171460,129236996,129302532,129368068,129433604,129499140,129564676,129630212,129695748,129761284,129826820,129892356,129957892,130023428,130088964,130154500,130220036,130285572,130351108,130416644,130482180,130547716,130613253,130678788,130744325,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661828,131727364,131792900,131858436,131923972,131989508,132055045,132120581,132186117,132251653,132317189,132382724,132448261,132513797,132579333,132644869,132710405,132775940,132841476,132907012,132972549,133038084,133103621,133169157,133234692,133300228,133365764,133431300,133496837,133562373,133627909,133693445,133758980,133824516,133890052,133955589,134021125,134086661,134152197,134217733,134283269,134348805,134414341,134479877,134545413,134610949,134676485,134742021,134807557,134873092,134938628,135004164,135069700,135135236,135200772,135266308,135331844,135397380,135462916,135528452,135593988,135659524,135725060,135790596,135856132,135921668,135987204,136052740,136118279,136183815,136249349,136314885,136380420,136511493,136577029,136642565,136708101,136773636,136839172,136904708,136970245,137035780,137101316,137166852,137232388,137297924,137363460,137428996,137494532,137560069,137625605,137691141,137756677,137822212,137887748,137953284,138018820,138084356,138149892,138215428,138280965,138346500,138412037,138477572,138608645,138674180,138739717,138805253,138870789,138936325,139001860,139067396,139132932,139198468,139264004,139329540,139395076,139460613,139526149,139591685,139657221,139722757,139788293,139853828,139919364,139984900,140050436,140115973,140181508,140247044,140312580,140378116,140443653,140509188,140574724,140640261,140705799,140771332,140836868,140902404,140967940,141033476,141099012,141164548,141230084,141295620,141361156,141426692,141492228,141557764,141623300,141688837,141754373,141819909,141885445,141950981,142016517,142082053,142147589,142213125,142278660,142344197,142409733,142475269,142540805,142606341,142671877,142737413,142802949,142868485,142934021,142999556,143065093,143130629,143196165,143261700,143327237,143392772,143458310,143523844,143589381,143654917,143720452,143785989,143851524,143917060,143982596,144048132,144113668,144179204,144244741,144310276,144375812,144441349,144506884,144572421,144637956,144703493,144769029,144834564,144900101,144965636,145031172,145096708,145162245,145227781,145293317,145358853,145424388,145489924,145555460,145620996,145686532,145752068,145817604,145883140,145948676,146014212,146079748,146145284,146210820,146276356,146341892,146407428,146472964,146538500,146604036,146669572,146735108,146800644,146866180,146931716,146997252,147062788,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147652612,147718148,147783684,147849220,147914756,147980292,148045828,148111364,148176900,148242436,148307973,148373508,148439045,148504580,148570116,148635652,148701188,148766724,148832260,148897796,148963332,149028868,149094404,149159940,149225476,149291012,149356548,149422084,149487620,149553156,149618692,149684228,149749765,149815300,149880836,149946372,150011908,150077444,150142981,150208517,150274053,150339589,150405124,150536196,150667268,150732804,150798342,150863876,150929413,150994949,151060484,151126021,151191556,151257092,151322628,151388164,151453700,151519236,151584772,151650308,151781381,151846917,151912454,151977989,152043527,152109061,152174599,152240135,152305670,152436741,152567812,152698884,152829957,152961029,153026565,153092100,153157636,153223172,153288708,153419781,153485317,153550852,153616389,153681925,153747461,153878533,153944069,154009605,154075141,154140676,154206213,154271748,154337284,154402820,154533892,154599428,154664964,154730500,154927108,154992644,155648001,155844612,156106755,156172290,156237826,156303364,156368902,156434434,156499973,156565508,156631043,156696578,156893185,156958721,157024262,157089794,157155332,157220866,157286402,157351938,157417474,157483009,157548545,157614081,157679617,157745153,157810689,157941761,158007298,158072836,158138371,158203908,158269442,158334977,158990338,159121412,159186948,159252481,159645697,159711234,159776769,160759810,160825346,160890881,160956422,161021954,161087490,161153025,161218562,161284097,161349639,161480705,161546241,161808389,161873943,161939459,162201606,162332675,162398210,162529282,162725890,162791428,162856965,162922502,163053569,163184641,163250180,163315714,163381249,163446785,163512321,163643393,166068236,166133769,166199309,166264836,166330373,166395912,166461444,166526981,166592517,166658060,166723599,166789135,166854668,166920197,166985733,167051270,167116812,167182340,167247876,167313413,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,168034308,168099844,168165380,168230917,168296453,168361988,168427524,168493060,168558598,168624132,168689670,168755204,168820740,168886276,168951814,169017349,169082889,169148426,169213962,169279498,169345029,169410566,169476100,169541640,169607172,169672724,169738255,169803784,169869316,169934852,170000388,170065933,170131462,170196996,170262533,170328069,170393605,170459141,170524677,170590213,170655749,170721285,170786821,170852360,170917892,170983428,171048964,171114500,171180036,171245574,171311117,171376649,171442189,171507718,171573261,171638792,171704326,171769864,171835400,171900935,171966471,172032004,172097540,172163078,172228614,172294155,172359686,172425226,172490767,172556293,172621832,172687365,172752900,172818447,172883976,172949510,173015048,173080581,173146118,173211654,173277188,173342724,173408260,173473796,173539332,173604871,173670406,173735942,173801476,173867012,173932548,173998084,174063625,174129157,174194694,174260230,174325768,175046664,175833108,177471495,177537031,177602566,177668102,177733640,177799177,177864710,177930246,178782209],"sent":[786437,2359297,2424833,2490369,2555905,2621441,10551298,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,29360130,29425666,48365570,49217538,67371009,69140482,69402631,69468161,69533700,77463553,82247682,82575362,84475905,91881474,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94568449,108265474,109117442,115212289,144769026,154206209,155516931,155582465,157483009,157548545,160890881,161021955,161349634,161873921,162725889,162988034,163053569,163250177,169082881,173015042,175046661,177471490,177537027,177602562,177668098,177733635,177799171,177864706,177930243],"stopped":[786433,2621441,10551297,29163521,155516929,175046657],"shutdown":[786433,2686977,28246017,68878341,92471299,148439047,173604867,175046657,178913281],"started":[786433,2883585,69468162,169148417,173080577,175046657],"sip":[786436,3342337,4718593,5505025,5898241,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,30736385,48824321,51118081,51183617,51249153,53411841,67371009,69402626,69468164,75759617,77529089,83427329,87097346,87162881,90701828,90832901,91881477,92667905,96337922,111607809,130416642,130744321,139919362,139984897,140443649,140705793,140771329,140836866,140967937,144637953,144703490,144769025,144900097,149618689,155648001,162201601,162988033,163053570,168230914,168296449,169869313,171835396,171966470,173015046,173801473,173867009,175046660,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"single":[786433,3604481,69206017,69468161,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,158597121,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196994,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"setup":[786433,3604481,69468161,170196993,175046657],"sit":[786433,3604481,69468161,170196993,175046657],"starts":[786433,3866625,10682373,30081025,30146561,30212097,30277633,30474241,46858241,46923777,50069505,50135041,50200577,69140482,69402627,69468161,69861380,69926913,73859074,74907651,90832897,140836865,155713541,156106753,158138369,160235522,161808388,161873922,170721281,171966465,175046657],"sippeersaction":[786434,4587521,4653057,17891331,53149700,53215238,69402625,69468162,84213763,114753539,161677313,162988041,171835393,171900930,175046658],"sipshowpeeraction":[786434,4587521,4653057,17956867,53280772,53346311,53411848,69402625,69468162,75759622,84279299,114819075,114884610,161677313,163053579,171835393,171900930,175046658],"server":[786435,4718593,5505026,27000834,64815106,65011713,65536001,65601537,69074946,69337089,69402632,69468168,69533698,80347141,80412677,80478213,80543749,80609285,80674821,80740357,80805893,80871429,80936965,81002502,81068037,81133573,81199109,81264645,81330181,81395717,81461253,81526789,81592325,81657861,81723397,81788933,81854469,81920005,81985541,82051077,82116613,82182149,82247685,82313221,82378757,82444293,82509829,82575365,82640901,82706437,82771973,82837509,82903045,82968581,83034117,83099653,83165189,83230725,83296261,83361797,83427333,83492869,83558405,83623941,83689477,83755013,83820549,83886085,83951621,84017157,84082693,84148229,84213765,84279301,84344837,84410373,84475909,84541445,84606981,84672517,84738053,84803589,84869125,85065735,85131271,85196807,85262343,85327879,85393415,85458951,85524487,85590023,85655559,85721095,85786631,85852167,85917703,85983239,86048775,86114311,86179847,86245383,86310919,86376455,86441991,86507527,86573063,86638599,86704135,86769671,86835207,86900743,86966279,87031815,87097351,87162887,87228423,87293959,87359495,87425031,87490567,87556103,87621639,87687175,87752711,87818247,87883783,87949319,88014855,88080391,88145927,88211463,88276999,88342535,88408071,88473607,88539144,88604679,88670215,88735751,88801287,88866823,88932359,88997895,89063431,89128967,89194503,89260039,89325575,89391111,89456647,89522183,89587719,89653255,89718791,89784327,89849863,89915399,89980935,90046471,90112007,90177543,90243079,90308615,90374151,90439687,90505223,90570759,90636295,90701831,90767367,90832903,90898439,90963975,91029511,91095047,91160583,91226119,91291655,91357191,91422727,91488263,91553799,91619335,91684871,91750407,91815943,91881480,91947015,92012551,92078087,92143623,92209159,92274695,92340231,92405767,92471304,92536839,92602375,92667911,92733447,92798983,92864519,92930055,92995591,93061127,93126663,93192199,93323268,93716486,93782022,93847558,93913094,93978630,94044166,94109702,94175238,105447425,109903881,111017988,116523012,134086657,136642562,136773641,144703489,148307969,150863873,151060481,151191553,151650305,153878529,154140681,155189249,155385857,159121413,159186949,159252485,159318021,159383557,159449093,159514629,159580165,159645704,159711237,159776775,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160497669,160563205,160628741,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153030,161218565,161284101,161349638,161415174,161480709,161546245,161611781,161677317,161742853,161808389,161873925,161939461,162004997,162070533,162136069,162201605,162267141,162332677,162398213,162463749,162529285,162594821,162660357,162725893,162791429,162856965,162922501,162988037,163053573,163119109,163184645,163250182,163315717,163381253,163446789,163512325,163577861,163643397,166068231,166133767,166199303,166264839,166330375,166395911,166461447,166526983,166592519,166658055,166723591,166789127,166854663,166920199,166985735,167051271,167116807,167182343,167247879,167313415,167378951,167444487,167510023,167575559,167641095,167706631,167772167,167837703,168034311,168099847,168165383,168230919,168296455,168361991,168427527,168493063,168558599,168624135,168689671,168755207,168820743,168886279,168951816,169017351,169082887,169148423,169213959,169279495,169345032,169410567,169476103,169541639,169607175,169672712,169738247,169803783,169869319,169934855,170000391,170065927,170131463,170196999,170262535,170328072,170393607,170459143,170524679,170590215,170655751,170721287,170786823,170852359,170917895,170983431,171048967,171114503,171180039,171245575,171311111,171376647,171442183,171507719,171573255,171638791,171704327,171769863,171835399,171900935,171966472,172032007,172097543,172163079,172228615,172294151,172359687,172425223,172490759,172556295,172621831,172687367,172752903,172818439,172883975,172949511,173015050,173080584,173146119,173211655,173277191,173342727,173408263,173473799,173539335,173604873,173670407,173735943,173801479,173867015,173932551,173998087,174063623,174129159,174194695,174260231,174325767,174718977,175046665,177471494,177537030,177602566,177668102,177733638,177799174,177864711,177930247],"shows":[786434,5308417,6225921,69468162,172818433,174325761,175046658],"statusevent":[786433,5636098,26279939,63635463,69402625,69468162,92602371,148570114,148635650,148701186,148766722,148832259,148897795,148963330,149028867,149094402,149159939,163119106,173211649,173670401,173735946,175046657,178126853],"statusaction":[786434,5636097,5701633,18022403,53477380,53542918,69402626,69468162,84344835,114950146,161677313,163119114,173670402,173735938,175046658],"statuscomplete":[786433,5701637,175046657],"statuscompleteevent":[786433,5701634,26214403,63569927,69402625,69468162,92536835,148504579,163119106,173211649,173670410,175046657,178061317],"syntax":[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,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,10551299,18153473,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294594,29360131,29425667,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132738,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69140482,75890689,79953922,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318659,101384195,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516932,155582466,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565506,156631041,156696578,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466051,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250178,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281],"summary":[1835009,1900545,1966081,2031617,2097153,2162689,2228225,2752513,3080193,3211265,5767169,7340033,7405569,7602177,7667713,7733249,7798785,7864321,7929857,8060929,8126465,8192001,8257537,8323073,8388609,8585217,8716289,8781825,8847361,8912897,9109505,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9961473,10027009,10092545,28311553,28508161,28966913,29032449,29491201,29687809,29753345,29818881,29884417,30801921,31522817,32636929,32768001,33554433,33685505,33751041,34275329,34340865,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,41353217,41418753,41615361,41680897,41943041,42008577,42205185,42270721,42401793,42467329,42663937,42729473,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,44236801,44302337,44367873,44433409,45088769,46202881,46333953,47972353,48496641,49872897,50266113,50790401,52428801,53149697,53280769,53477377,53739521,53805057,53870593,53936129,54001665,54067201,54984705,64028673,64356353,64487425,64552961,64618497,64684033,64749569,65208321,65339393,65404929,66191361,66256897,66322433,66584577,66650113,67633153,67895297,94633985,94699521,94961665,95027201,95092737,95158273,95223809,95289345,95485953,95748097,95813633,95944705,96010241,96075777,96141313,96468993,96731137,96796673,98500609,101449729,101515265,101777409,101842945,101908481,102039553,102105089,102170625,102236161,102301697,102367233,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104792065,104857601,104923137,104988673,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107544577,107741185,107937793,109772801,109838337,111935489,112001025,112066561,112132097,112197633,112263169,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113377281,113442817,113508353,113573889,113901569,114753537,114819073,116719617,116981761,117047297,117112833,117178369,117309441,117833729,117964801,118030337,118161409,118226945,118292481,118489089,118554625,118620161,118685697,118751233,118816769,119341057,119472129,119930881,119996417,120061953,120127489,120193025,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130482177,130547713,130678785,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132382721,132775937,132841473,133038081,133234689,133300225,133365761,133431297,133758977,133824513,133890049,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138346497,138674177,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139853825,140050433,140181505,140247041,140312577,140378113,140509185,140574721,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,142999553,143392769,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148373505,148504577,148832257,148897793,149028865,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149815297,149880833,149946369,150011905,150077441,150405121,150470657,150536193,150601729,151715841,152371201,152436737,152502273,152633345,152698881,152764417,152829953,152895489,153092097,153157633,153223169,153288705,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,155058177,155451393,155582465,155844609,155910145,155975681,156041217,158400513,158728193,158924801,159055873,159449089,159514625,159580161,159842305,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,162136065,162267137,162398209,162463745,162594817,162660353,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166133761,166264833,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167903233,167968769,168034305,168099841,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,169476097,169607169,169934849,170000385,170393601,170590209,170786817,170917889,170983425,171048961,171114497,171180033,171507713,172032001,172097537,173277185,173342721,173408257,173473793,173539329,173801473,174194689,174391297,174456833,174522369,174587905,174653441,174784513,174850049,174915585,174981121,175112193,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177602561,177995777,178061313,178126849,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673],"statuseventhandler":[5636103,69337089,178126854],"statuscompleteeventhandler":[5701639,69337089,178061318],"size":[6356993,7995393,68943873,77660161,96665601,155058177,155844609,178913281],"separator":[6356993,8650753,155058177],"show_version_files_pattern":[6356993,8847366,155058177],"sc511_causes_exception":[6422529,8978437,28377094,28442630,28573702,155844609],"schangup_causes_exception":[6422529,9043973,28377094,28442630,28573702,155844609],"setvaraction":[6553603,9175042,9240578,9306114,17825795,52953095,53018631,53084167,69402625,75694088,84148227,114491394,114556930,114622466,114688002,161611777,162922509],"store":[6553601,9306113,84148225,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,114622465,136511489,153812993,162922498,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"specifiy":[6750209,9895937,175046657],"synchronization":[6750209,9895937,175046657],"static":[7340035,7405571,7471105,7536641,7602177,7667713,7733249,7798785,7864323,7929859,7995393,8060931,8126467,8192003,8257539,8323075,8388611,8454145,8519681,8585219,8650753,8716291,8781827,8847363,8912899,9371649,9437185,9502721,9568257,9633793,9699329,42205187,42270723,43974659,68091907,68157443,69402625,91291651,91357186,91684866,142344195,142868482,155058177,163250177,172425219,172490754,172818434],"shared":[7340033,7405569,7864321,7929857,8060929,8126465,8192001,8257537,8323073,8388609,8585217,8716289,8781825,8847361,8912897,42205185,42270721,43974657,68091905,68157441],"string":[7471109,7667717,7798789,8454149,8650757,9109509,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,10027013,10092554,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10682430,10747905,10813441,11075589,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893635,13959182,18153487,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,20512771,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,26673155,26738689,26804225,26869761,27000834,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,28049409,28114946,28180481,28246017,28704774,28770310,28901383,29163530,29229062,29360133,29425669,29491206,29622279,29687821,29753354,29818893,29884422,29949957,30081030,30146572,30212108,30277662,30343178,30408710,30474252,30539793,30605327,30670854,30736396,30867468,30933004,30998540,31064075,31129619,31195148,31260684,31326218,31522824,31588370,31653906,31719431,31784974,31916038,31981580,32047122,32112648,32178190,32243718,32309261,32374791,32440334,32571399,32768007,32833542,32899078,33030151,33095690,33226758,33292301,33357829,33947658,34078727,34144262,34209803,34275333,34340877,34406406,34537478,34668550,34799622,34865158,34930700,34996242,35061766,35127308,35192844,35258398,35323910,35389446,35454988,35520518,35586054,35651596,35717126,35782666,35848198,35913743,35979270,36044806,36110348,36175878,36241414,36306950,36372486,36438022,36503558,36569100,36634630,36700172,36765708,36831238,36896773,36962310,37093382,37158918,37289990,37486598,37683206,37748754,37814290,37879814,37945350,38010892,38076422,38207494,38273036,38338578,38404102,38469638,38535180,38600710,38666246,38731788,38797318,38862854,38928396,38993926,39124998,39190534,39256069,39321606,39387141,39452678,39583750,39649285,39714822,39780357,39845894,39911429,39976966,40108038,40239110,40304646,40435718,40501254,40566796,40632326,40697862,40763404,40828940,40894470,40960006,41025542,41091077,41156614,41484298,41549829,41877511,42139655,42205192,42270728,42598407,42926085,42991623,43057159,43122693,43253768,43319305,43384841,43515912,43581449,43646985,43778056,43843593,43909129,44040200,44171270,44302344,44367881,44433417,44630022,44761100,44826642,44957702,45023238,45219854,45351152,45482008,45613074,45744134,45875212,46006278,46137360,46268422,46530567,46661648,46792720,46923783,47054855,47185927,47317008,47644679,47775756,47906828,48103436,48234514,48365574,48627718,48758790,48824332,48955398,49086476,49152018,49217560,49414151,49545223,49872902,50069516,50135058,50200594,50331660,50397196,50462734,50528270,50659355,50724888,51118092,51183634,51249170,51380279,51511302,51576838,51642380,51707916,51839003,51970088,52101132,52232199,52363271,52625426,52690968,52822028,52887564,53018636,53084178,53411847,53673991,53870600,53936146,54001694,54067244,54132766,54263824,54329362,54394907,54525960,55181318,55246854,55312389,55443468,55509004,55574542,55640078,57475096,59965452,60031000,60096520,64028692,64487429,64552975,64749573,65536018,65601557,65667078,65732614,65863692,65929226,65994766,66060300,66977797,67305486,67371019,67502092,67567640,67633158,67764238,67895302,68026373,68157446,68288517,68616198,68747270,68943877,69140485,69468162,69730306,69795841,69861386,69926915,69992451,70057987,70123523,70189060,70254593,70320134,70385669,70451206,70516740,70582275,70647813,70713345,70778881,70844419,70909956,70975489,71041029,71106570,71172099,71237635,71303171,71368707,71434243,71499780,71565313,71761926,71827459,71892998,71958531,72024067,72089603,72155137,72220673,72286209,72351749,72482817,72548353,72613889,72679427,72744963,72810499,72876033,72941571,73007105,73072645,73138178,73203724,73269252,73334787,73400321,73465858,73531393,73596930,73662465,73728002,73793538,73859073,73924609,73990145,74055682,74121217,74186754,74252290,74317826,74383363,74448897,74514433,74579971,74645505,74711049,74776577,74842113,74907656,74973191,75038728,75104261,75169798,75235331,75300868,75366402,75431937,75497473,75563015,75628548,75694085,75759617,75825153,75890703,75956231,76021761,76283906,76546049,76808198,76873730,76939266,77004802,77070337,77135874,77266945,77332481,77398017,78839809,79953921,80019457,82706433,82771969,84475905,84934657,85000193,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539139,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93388801,93716483,93782019,93847555,93913091,93978627,94044163,94109699,94175235,94306305,94568454,94633990,94896134,94961670,95027206,95354886,95420422,95485958,95617030,95682566,95879174,95944710,96206854,96272390,96337926,96403462,96796679,96862215,96927751,96993286,97124358,97189894,97255431,97320967,97386503,97452039,97517575,97583111,97648647,97714183,97779719,97845255,97910791,97976327,98172935,98238471,98304007,98369543,98500615,98566151,98828295,98893831,98959367,99155975,99221511,99287047,99352583,99483655,99549192,99614727,99680263,99745799,99811335,99876871,99942407,100073479,100139015,100270087,100335623,100401159,100466695,100532231,100663303,100728839,100794375,100859911,100990982,101056518,101187591,101318662,101384198,101449734,101580807,101646343,101711879,101777414,102432775,102498311,102694919,102760455,102825991,102891527,103022599,103088135,103219207,103284743,103350279,103415815,103481351,103546887,103612423,103677959,103743495,103809031,103874567,103940103,104005639,104071175,104136711,104202247,104267783,104464391,104529927,104595463,104660999,104726535,104792071,104857607,104923143,104988679,105054215,105119751,105185287,105250823,105316359,105381895,105447431,105512967,105578503,105644039,105709575,105775111,105840647,105906183,105971719,106037255,106102791,106168327,106233863,106299399,106364935,106430471,106496007,106561543,106627079,106692615,106758151,106823687,106889223,106954759,107020295,107085831,107151367,107216903,107282439,107347975,107413511,107479047,107544583,107610119,107675655,107741191,107806727,107872263,107937799,108003335,108068871,108134407,108199943,108265479,108331015,108396551,108462087,108527623,108593159,108658695,108724231,108789767,108855303,108920839,108986375,109051911,109117447,109182983,109248519,109314055,109379591,109445127,109510664,109576199,109641736,109707270,109772807,109838344,109903879,109969415,110034951,110100487,110166023,110297095,110362631,110428167,110559239,110624775,110690311,110755847,110821383,110886919,111017991,111083527,111149063,111214599,111280135,111345671,111411207,111476743,111542279,111607815,111673351,111869959,111935495,112001031,112066567,112132103,112197639,112263175,112328711,112394247,112525319,112590855,112656391,112721927,112787463,112852999,112918535,112984071,113049607,113115143,113180679,113246215,113311751,113377287,113442823,113508359,113573895,113639431,113704967,113770503,113836039,113901575,113967111,114032647,114098183,114229255,114360327,114425863,114491399,114556935,114622471,114688007,114753543,114819079,114884615,114950151,115015687,115081223,115146759,115212300,115277831,115343368,115408903,115474439,115539975,115671047,115802119,115933191,116064263,116129799,116326407,116391943,116457479,116523015,116588551,116654087,116719623,116785159,116850695,116916231,116981767,117047303,117112839,117178375,117243911,117374983,117440519,117506055,117571591,117637127,117702663,117768199,117833735,117899271,117964807,118030343,118095879,118161415,118226951,118292487,118358023,118423559,118489095,118554631,118620167,118685703,118751239,118816775,118947847,119078919,119275527,119341063,119406599,119472135,119537671,119603207,119734279,119799815,119865351,119930887,120061959,120193031,120258567,120324103,120389639,120455175,120520711,120586247,120651783,120782855,120848391,120913927,120979463,121044999,121110535,121176071,121241607,121307143,121372679,121438215,121503751,121569287,121634823,121700359,121765895,121831431,121896967,122028039,122093575,122159111,122224647,122290183,122355719,122421255,122486791,122552327,122617863,122683399,122748935,122814471,122880007,122945543,123011079,123076615,123142151,123207687,123273223,123338759,123404295,123469831,123535367,123600903,123666439,123731975,123797511,123863047,123928583,123994119,124059655,124125191,124190727,124256263,124321799,124387335,124452871,124518407,124583943,124649479,124715015,124780551,124846087,124911623,124977159,125042695,125108231,125173767,125239303,125304839,125370375,125435911,125566983,125632519,125698055,125763591,125829127,125894663,125960199,126025735,126091271,126156807,126222343,126287879,126353415,126418951,126484487,126550023,126615559,126681095,126746631,126812167,126877703,126943239,127008775,127074311,127139847,127205383,127270919,127336455,127401991,127467527,127533063,127598599,127664135,127729671,127795207,127860743,127926279,127991815,128057351,128122887,128188423,128253959,128450567,128516103,128581639,128647175,128712711,128778247,128843783,128909319,128974855,129040391,129171463,129236999,129302535,129368071,129433607,129499143,129630215,129695751,129761287,129826823,129892359,130023431,130088967,130154503,130220039,130285575,130351111,130416647,130613255,130744327,130809863,130875399,130940935,131006471,131072007,131137543,131203079,131268615,131334151,131399687,131465223,131530759,131596295,131661831,131727367,131792903,131989511,132055047,132186119,132251655,132317191,132382727,132448263,132513799,132579335,132644871,132710407,132775943,132841479,132907015,132972551,133038087,133103623,133169159,133300231,133365767,133496839,133562375,133627911,133758983,133824519,133890055,133955592,134021127,134086663,134152199,134283271,134545415,134610951,134676487,134742023,134807559,134873095,134938631,135004167,135528455,136118279,136183815,136380423,136511506,136577031,136708103,136773639,136970247,137035783,137101319,137166855,137232391,137560071,137822215,137887751,138018823,138084359,138149895,138215431,138280967,138346503,138412039,138477575,138608647,138674183,138739719,138805255,138870791,139001863,139067399,139132935,139198471,139264007,139395079,139460615,139526151,139591687,139657223,139722759,139919367,139984903,140115975,140312583,140443655,140705799,140771335,140836871,140902407,141033479,141099015,141164551,141230087,141492231,141557767,141623303,141688839,141754375,141885447,142082055,142278663,142344199,142737415,142802951,142868487,142934023,143130631,143261703,143392775,143458311,143523847,143654919,143720455,143851527,144244743,144441351,144572423,144637959,144703495,144769031,144834566,144900103,144965639,145031175,145096711,145162247,145227783,145293319,145358855,145424391,145555463,145752071,145883143,146014215,146276359,146604039,146931719,147783687,148111367,148176903,148439047,148570119,148635655,148701191,148766727,148832263,148897799,148963335,149159943,149225479,149291015,149356551,149487623,149553159,149618695,149684231,149749767,149815303,149880839,149946375,150142983,150208519,150274055,150339591,150405127,150863879,151060487,151650311,151715846,151781383,151846919,151912455,151977991,152043527,152109063,152174599,152961031,153026567,153092103,153157639,153223175,153354246,153419783,153616391,153747463,153813008,153944071,154009607,154075144,154140679,154206215,154271751,154337287,154599431,154730503,154992647,155123713,155189249,155254788,155320322,155385858,155451393,155516930,155713598,155779073,155844613,156041217,156106767,156172291,156237827,156434435,156499971,156565507,156631044,156762113,156958722,157024262,157089796,157155334,157220869,157286403,157351940,157417473,157941761,158007297,158138373,158466050,158531586,158597122,158662658,158728193,158793730,158859265,158924803,158990350,159121409,159186949,159252482,159449100,159514628,159580163,159645697,159711234,159776769,159842306,160038913,160104450,160169986,160235521,160301057,160366593,160432130,160694273,160759810,160825346,160890882,160956419,161021953,161153025,161218563,161284097,161349641,161480706,161546242,161808392,161939463,162201608,162267141,162332678,162398211,162463748,162529282,162594817,162660353,162791431,162856964,162922501,163053569,163184641,163250199,163315713,164691972,166002690,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837701,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672708,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129159,174194691,174260227,174325763,175046664,175177732,175243265,175833089,177274881,177340417,177405953,177471492,177537028,177602564,177668100,177733636,177799172,177864710,177930246,178192386,178782210,178847747,178913281],"specified":[10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682370,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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114948,28180481,28246017,31260673,46071810,46137346,46465025,46530561,46596098,46661634,46727169,46792705,46858243,46923779,46989313,47054849,47120385,47185921,47251458,47316994,49414145,49545217,68091905,68157441,68222977,68288513,69140482,70189057,73596932,73662466,73728004,73793538,73859078,73924610,73990146,74055684,77070338,80150529,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706434,82771970,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750402,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93323267,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,101580801,109510657,109641729,109903873,136773633,144375810,151060481,151191553,151650305,154140673,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713538,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631042,156696577,156762114,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728194,158793729,158859265,158924801,158990337,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842310,159907842,159973378,160038916,160104454,160169988,160235528,160301060,160366596,160432134,160497666,160563202,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480707,161546243,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,164691969,166002689,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883971,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,175046660,175177729,175243265,175833089,177274881,177340417,177405953,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242,177995777,178192385,178782213,178847745,178913281],"serves":[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,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"shallow":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"sendcommand":[10158081,10747905,28311560,33554439,155123713,155779073],"subsequent":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"sets":[10289153,10354689,10420225,10682373,11075586,13434881,13500417,16777217,18612225,18677761,18743297,18808833,19333121,19398657,19464193,19529729,22216705,27066369,27197441,28049409,32833537,32899073,32964609,33030145,33095681,34930689,34996225,48234497,50462721,51118081,51183617,51249153,52822017,52887553,53018625,53084161,55574529,65994753,69140484,69402628,70778882,71041026,74383361,75628546,75694082,77266947,77332483,77398019,77660163,79757313,79953923,80019459,83099649,84475905,84934659,85000195,90112001,91881473,93323271,93388803,94306307,94437378,96534529,96600065,96665601,98566145,101056513,103088129,110755841,111017985,115343361,117899265,118095873,138477569,140705793,140836865,140902401,143917057,143982593,144048129,144113665,144179201,144310273,144375809,144834561,148570113,148635649,148701185,148766721,148963329,149094401,150667265,150732801,150863873,151060481,151191553,151519233,151650305,154927105,154992641,155254788,155320324,155385860,155713541,155844611,156106754,157745153,157810689,158007297,158072833,158203905,158466052,158531588,159121409,159186945,159252481,160956417,161873922,162856962,162922499,163250177,164691972,166002692,166068225,166133761,166658049,166723585,166789121,166854657,169672705,171245569,173015041,175046663,175177732,175833089,178192388,178847746],"serializationinfo":[10289153,10354689,10420225,13434881,13500417,18612225,18677761,27066369,28049409,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"streamfilecommand":[10551297,13107203,29163521,40632324,40697863,40763399,40828935,69140481,72351752,79691779,100794370,100859906,100925442,155516929,155910145,156631041,158138381],"supported":[10551297,29294593,69402625,69468161,77529089,95551489,155516929,155648001,159776769,170328065],"success":[10551297,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,29294593,67436545,69140481,69402625,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,154075137,155516929,156958721,163250177,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"synopsis":[10551297,29360130,41484295,79953922,101318663,155516929,158466051],"sc_invalid_command_syntax":[10551298,29360129,29425665,155516930,155582465],"stream":[10682372,13893633,30081026,30146562,30212098,30277634,31195137,31260673,31588353,31653889,35061761,35127297,35192833,35258369,36241409,36306945,36372481,36700161,36765697,37748737,37814273,40697857,40763393,40828929,42860545,69140482,69861380,77791233,78184449,78315521,78643201,79691778,96927745,97976321,98369537,98893825,100859906,155713540,156106754,156499970,156631041,157024257,158138370,158924801],"seek":[10682374,30081025,30146561,30212097,30277633,31588353,31653889,69140483,69861380,70320130,155713542,156106753,157024257,158138369],"sample":[10682372,30081025,30146561,30212097,30277633,69140482,69861380,155713540,156106753,158138369],"streaming":[10682373,30212097,30277633,30867457,30932993,30998529,31195137,31260674,35061761,35127297,35192834,35258370,36765697,40697857,40763393,40828930,69140483,70057987,70189058,71106564,72351747,77791233,78315521,79691777,97058817,98435073,100925441,155713541,156106757,156499969,156631043,158138372],"starting":[10682371,30867457,30932993,30998529,69140481,70057987,155713539,156499969],"seconds":[10682372,31195137,31260673,31588353,31653890,31850497,31916033,31981569,32047105,32505857,32571393,32702465,36700161,36765697,37814273,38141953,38207489,38273025,38338561,39059457,39124993,39518209,44630017,69140483,69402625,70189057,70320130,71499777,71892993,78774273,79036417,79233025,80347137,83099649,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590018,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114306,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439682,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160578,91226113,91291650,91357186,91422721,91488257,91553793,91619329,91684866,91750403,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602371,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93454338,99418113,100007937,100204546,102563841,110952449,118095873,119668737,136904705,139788289,141950977,142213121,142671873,144113665,144310273,149094407,152305666,155713540,156631041,157024257,157155330,157417474,157614082,159121410,161873921,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592514,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116802,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573250,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294146,172359681,172425218,172490754,172556289,172621825,172687361,172752897,172818434,172883971,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735939,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175833090],"sequence":[10682370,31588353,31653889,69140481,69402625,70320130,155713538,157024257,163250177],"specify":[10682370,31588353,31653889,48365569,49217537,69140483,69402627,70320130,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247683,82313218,82378754,82444290,82509826,82575363,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099652,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,108265473,109117441,109903874,110624769,111017985,136773634,154140674,155713538,156893185,156958721,157024257,159121410,159186947,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497666,160563202,160628738,160694274,160759810,160825346,160890882,160956418,161021956,161087490,161153026,161218562,161284098,161349635,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873924,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250179,163315714,163381250,163446786,163512322,163577858,163643394,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"samples":[10682370,30212097,30277633,31588353,31653890,35192833,35258369,37814273,40828929,69140481,70320130,77791233,78643201,79691777,97058817,99024897,100925441,155713538,156106753,157024258,158138369],"sayalpha":[10682370,31719430,31784966,70385667,155713538],"says":[10682382,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,38141953,38207489,38273025,38338561,70385666,70451204,70516738,70582274,70647810,70713346,71892996,155713550,157155332],"saydatetime":[10682372,31850502,31916038,31981574,32047110,70451205,155713540],"saydigits":[10682370,32112646,32178182,70516739,155713538],"saynumber":[10682370,32243718,32309254,70582275,155713538],"sayphonetic":[10682370,32374790,32440326,70647811,155713538],"saytime":[10682370,32505862,32571398,70713347,155713538],"service":[10682369,32636936,91750402,144310274,144375810,155713537,172883970],"setautohangup":[10682369,32702470,155713537],"setcallerid":[10682369,32768007,155713537],"setcontext":[10682369,32833542,155713537],"setextension":[10682369,32899078,155713537],"setpriority":[10682370,32964615,33030151,70778883,155713538],"setvariable":[10682369,16777217,18743297,18808833,19333121,19398657,19464193,19529729,22216705,27197441,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,33095685,50462727,55574535,65994759,67371009,155713537,161873921,166068225,166133761,166658049,166723585,166789121,166854657,169672705,175833089,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"stopmusiconhold":[10682369,33161221,155713537],"stops":[10682369,33161217,46727169,46792705,46989313,47054849,73793538,73924610,155713537,160169986,160301058],"streamfile":[10682370,33226758,33292294,70844419,155713538],"sends":[10682369,13893634,27000833,33357825,42991617,43057153,65011713,69140483,69402627,69533697,155713537,157483009,157548545,158269441,158924802,159776769,161153025,163250177,175046657,177537025],"system":[10682369,28180481,28377098,28442632,28573702,28704769,28770306,28901382,29163521,29622275,29687812,29818884,29949953,30081025,30146562,30212099,30277638,30343170,30408705,30474242,30539780,30605315,30670849,30736386,30867457,30932994,30998531,31064065,31129604,31195138,31260675,31326209,31522819,31588356,31653895,31719425,31784962,31850497,31916034,31981571,32047108,32112641,32178178,32243713,32309250,32374785,32440322,32505857,32571394,32702466,32768003,32833538,32899074,32964610,33030146,33095682,33226753,33292290,33357827,33423361,33947663,34013186,34078722,34144259,34209822,34340868,34799617,34930690,34996227,35061761,35127298,35192835,35258374,35389441,35454978,35586049,35651586,35782658,35913731,36044801,36110338,36241409,36306946,36372483,36503553,36569090,36700162,36765699,36896769,37093377,37421057,37617666,37748740,37814279,37945345,38010882,38141954,38207490,38273027,38338564,38469633,38535170,38666241,38731778,38862849,38928386,39059457,39124994,39256065,39387137,39518209,39649281,39780353,39911425,40239105,40370177,40435713,40566788,40697857,40763394,40828931,40960002,41091074,41287681,41484290,41549825,41811970,41877506,42139650,42205188,42270728,42598402,42795020,42991617,43057153,43122691,43188227,43253763,43319304,43384840,43450371,43515907,43581448,43646984,43712515,43778051,43843592,43909128,44040196,44105729,44171266,44236803,44302339,44367880,44433416,44630018,44761090,44826627,44957697,45023234,45219846,45351122,45481988,45613059,45744129,45875202,46006273,46137350,46268418,46530562,46661638,46792710,46923778,47054850,47185922,47316998,47644674,47775746,47906818,48103426,48234499,48365570,48627713,48758785,48824322,48955393,49086466,49152003,49217541,49414145,49545217,50069506,50135043,50200580,50331651,50462726,50528260,50659340,50724868,51118082,51183619,51249156,51380254,51511297,51576834,51642370,51707907,51838988,51970068,52101122,52232194,52363266,52625412,52690949,52822018,52887555,53018626,53084163,53411842,53673986,53870595,53936136,54001679,54067224,54132741,54263814,54329356,54394892,54525958,54657026,54788098,54919170,55181313,55246850,55312385,55443459,55574534,55640068,57475073,59965442,60030977,64028682,64552965,64946177,65077250,65273859,65404932,65536004,65601546,65667073,65732610,65863683,65994758,66060292,66387972,66715651,66977795,67305476,67371009,67502082,67567617,67764228,68026369,68157441,68222977,68288513,68485121,68616193,68681729,68747266,68943874,69009409,69140481,69468161,82247681,82575361,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471298,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,108265473,109117441,136708097,148439041,154009601,155058177,155123713,155189249,155254786,155320322,155385858,155451393,155516929,155648001,155713538,155779073,155844609,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269442,158334977,158466050,158531586,158597121,158662657,158728193,158793729,158859265,158924801,158990338,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021954,161087489,161153025,161218561,161284097,161349634,161415169,161480705,161546241,161611778,161677314,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164626433,164691970,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002690,166068227,166133763,166199299,166264837,166330374,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328069,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211653,173277187,173342723,173408259,173473795,173539331,173604868,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391297,174456833,174522369,174587905,174653441,174784513,174850049,174915585,174981121,175046657,175112193,175177730,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930243,177995777,178061313,178126849,178192386,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847746,178913281],"start":[10813441,28180481,33685510,68485125,68681733,68747269,69468161,155844609,167182337,178847745],"stop":[10813441,33751046,155844609],"sayalphacommand":[12058627,37879812,37945351,38010887,69140481,71827462,78708739,99155970,99221506,155910145,157089803],"saydatetimecommand":[12124163,38076420,38141960,38207495,38273031,38338567,69140481,71893002,78774275,99287042,99352578,99418114,99483650,155910145,157155343],"saydigitscommand":[12189699,38404100,38469639,38535175,69140481,71958534,78839811,99549186,99614722,155910145,157220875],"saynumbercommand":[12255235,38600708,38666247,38731783,69140481,72024070,78905347,99680258,99745794,155910145,157286411],"sayphoneticcommand":[12320771,38797316,38862854,38928391,69140481,72089605,78970883,99811330,99876866,155910145,157351946],"saytimecommand":[12386307,38993924,39059463,39124999,69140481,72155142,79036419,99942402,100007938,155910145,157417483],"sendimagecommand":[12451843,39190532,39256070,69140481,79101955,100073474,155910145,157483017],"sendtextcommand":[12517379,39321604,39387142,69140481,79167491,100139010,155910145,157548553],"setautohangupcommand":[12582915,39452676,39518214,69140481,79233027,100204546,155910145,157614089],"setcalleridcommand":[12648451,39583748,39649286,69140481,79298563,100270082,155910145,157679625],"setcontextcommand":[12713987,39714820,39780357,69140481,79364099,100335618,155910145,157745160],"setextensioncommand":[12779523,39845892,39911429,69140481,79429635,100401154,155910145,157810696],"setmusicoffcommand":[12845059,39976964,40042502,69140481,155910145,157876233],"setmusiconcommand":[12910595,40108036,40173575,40239111,69140481,72220678,79495171,100466690,155910145,157941771],"setprioritycommand":[12976131,39780353,39911425,40304644,40370183,40435719,69140482,72286214,79560707,100532226,100597762,155910145,157745153,157810689,158007308],"setvariablecommand":[13041667,40501252,40566790,69140481,79626243,100663298,100728834,155910145,158072840],"scriptmapping":[13697027,41811975,42205194,42270733,42336262,69206017,72482817,80150531,101515267,101580802,101646338,101711874,158597121,158728202],"savemappings":[13697025,42270728,158728193],"serversocket":[13828099,42663940,42729475,42795017,69271554,158859274],"socketconnection":[13893635,28442633,28573703,29097990,33619974,42663941,42860546,42926082,42991618,43057154,43122693,69271553,69664769,80281603,101842947,101908483,101974018,102039555,102105091,102170627,102236163,102301699,102367235,155123713,158924809],"socket":[13893636,27000833,28442630,28573703,29097990,33619974,42860545,42926081,42991617,43057153,64815106,69074946,69271553,69402625,80281601,93323265,101974017,151584769,155189251,158859265,158924805,161349633,175046658],"suitable":[13959169,43974657,158990337],"sending":[16580609,16646145,49610753,49741825,69402628,69533697,85000193,116260865,159645697,161349633,161677314,161742849,161939457,166002689,177668097],"setvariables":[16777217,18743297,18808833,19333121,19398657,19464193,19529729,22216705,27197441,50528263,55640071,66060294,161873921,166068225,166133761,166658049,166723585,166789121,166854657,169672705,175833089],"setcdruserfieldaction":[17760259,52756487,52822023,52887559,69402627,75628552,84082691,114229250,114294786,114360322,114425858,161611777,162856975],"stopmonitoraction":[18087939,53608455,53673992,69402626,75825158,84410371,115015682,115081218,161611777,163184652],"sparing":[18153473,54132737,75890689,163250177],"sections":[18153473,54132737,75890689,163250177],"supply":[18153473,54132737,75890689,163250177],"showdialplancompleteevent":[26083331,63438855,69468161,92405763,147783683,147849219,147914755,147980291,148045827,170328065,173539338],"shutdownevent":[26148867,63504391,69468162,92471299,148111363,148176899,148242435,148307970,148373507,148439042,169017345,173604874],"sendaction":[27000835,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,65142792,65208330,65273864,67371009,76677124,93323266,151519234,175046661,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"send":[27000834,33357825,39256065,39387137,41091073,42991617,43057153,48365569,49217537,65142785,65273858,69402625,69468164,76677122,79101953,79167489,79822849,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002498,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247682,82313217,82378753,82444289,82509825,82575362,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099650,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881474,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93323267,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,100073474,100139010,101187585,105447425,108265473,109117441,109903873,110493697,136773633,144900097,150798338,151126017,154140673,157483009,157548545,158269441,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776770,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021954,161087489,161153025,161218561,161284097,161349634,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873922,161939458,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015042,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129157,174194689,174260225,174325761,175046661,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"sendeventgeneratingaction":[27000834,65339401,65404937,76742659,175046658],"stored":[27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,67371011,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"setchannel":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"sub":[28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,29097985,29556737,29622273,29949953,30015489,30343169,30408705,30474241,30605313,31391745,31457281,31522817,31719425,31850497,32112641,32243713,32374785,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33357825,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34471937,34603009,34734081,34799617,34930689,34996225,35061761,35127297,35192833,35258369,35389441,35454977,35586049,35651585,35782657,35913729,36044801,36110337,36241409,36306945,36372481,36503553,36569089,36700161,36765697,36896769,37027841,37093377,37224449,37355521,37421057,37552129,37617665,37748737,37814273,37945345,38010881,38141953,38207489,38273025,38338561,38469633,38535169,38666241,38731777,38862849,38928385,39059457,39124993,39256065,39387137,39518209,39649281,39780353,39911425,40042497,40173569,40239105,40370177,40435713,40566785,40697857,40763393,40828929,40960001,41091073,41222145,41287681,41418753,41484289,41549825,41680897,41746433,41811969,41877505,42008577,42074113,42139649,42270721,42336257,42467329,42532865,42598401,42729473,42795009,42860545,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46268417,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49676289,49807361,49938433,50003969,50069505,50135041,50200577,50462721,50528257,50593793,50659329,50724865,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904514,51970050,52035585,52101121,52166657,52232193,52297729,52363265,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53215233,53346305,53411841,53542913,53608449,53673985,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,55050241,55115777,55181313,55246849,55312385,55377921,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64094209,64159745,64225281,64290817,64356353,64421889,64880641,64946177,65011713,65077249,65470465,65536001,65601537,65667073,65732609,65798145,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,67043329,67108865,67174401,67239937,67305473,67698689,67764225,67960833,68026369,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,75300866,162463746,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164626433,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,174391297,174456833,174522369,174587905,174653441,174784513,174850049,174915585,174981121,175112193,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,178061313,178126849,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673],"strategy":[28573697,69206017,77660161,91750402,96600065,144441350,155844609,158597121,172883970],"script":[28573697,69074945,69206017,77529094,80150529,95420417,95617025,95879169,96206849,96272390,101711873,155648006,158662657,158728193,158793729],"skip":[30212097,30277633,31653889,35192833,35258369,37814273,40828929,77791233,78643201,79691777,97058817,99024897,100925441,156106753,157024257,158138369],"standard":[30932993,30998529,36306945,36372481,69271553,78184449,98107393,156499969,158859265],"silence":[31653889,37814273],"say":[31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,37945345,38010881,38141953,38207489,38273025,38338561,38469633,38535169,38666241,38731777,38862849,38928385,39059457,39124993,69140486,71892993,78708737,78774273,78839809,78905345,78970881,79036417,99221505,99418113,99549185,99745793,99876865,100007937,157089794,157155331,157220866,157286402,157351938,157417474],"said":[31981569,32047105,38273025,38338561,78774273,99287041,157155329],"saying":[32047105,38338561,78774273,99483649,157155329],"serve":[34013185,34144257,69402625,77660162,93323265,96600065,96665601,150994945,155844610,161611777,175046657],"sc511_causesexception":[34209800],"schangup_causesexception":[34209800],"support":[35061761,35127297,35192833,35258369,69140487,69599233,71106564,156106756,156893186,156958721,157483010,157548546,167968769,178847745],"sayphonticcommand":[38862849,72089601,157351937],"sealed":[41615361,41680897,41943041,42008577,42401793,42467329,50397185,50528257,55508993,55640065,66191361,66322433,66584577,136511490,152371201,152436738,152764417,152829954,153812993,155058177,158990338],"soft":[45023237,69468161,80478209,103153669,159252481,169672705],"separate":[46268417,69402626,159907842,159973377],"separated":[48365569,49217537,82247681,82575361,82771969,83099649,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243074,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044162,94109697,94175233,108265473,109117441,109641729,111017985,136708097,138608641,153616385,154009601,161021953,161349633,161546241,161873921,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376642,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799170,177864705,177930241],"security":[49086465,74711041,161349633],"secret":[49086469,82575364,109248520,161349636],"specific":[51118081,51183617,51249153,69074945,69140481,69402625,77266945,77332481,77398017,79953921,80019457,83427329,84475905,84934657,85000193,93388801,94306305,111607809,115343361,155254786,155320321,155385857,156172289,158466049,158531585,162201601,163250178,164691969,166002689,175177729,178192385],"statistics":[52166657,52232193,75431938,162594818],"second":[52690945],"srcfilename":[54263814,54329350,54394886,69402625,84475905,115408901,163250178],"successful":[69140484,69402626,69468161,91291649,91357185,91684865,91881473,93323265,142213121,142671873,144769025,150929409,156172289,156237825,156368897,158203905,161349633,161939457,168951809,172425217,172490753,172818433,173015041,175046657],"setting":[69140481,69402625,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590018,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750403,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,118095873,136904705,144179201,144310273,157614081,159121409,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592514,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883971,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"supports":[69140481,80871425,82575361,105119745,109051905,158007297,159645697,161349633],"strategies":[69206017],"sciptmapping":[69206017,158597121],"simple":[69337089,177405953],"stores":[69337089,177405953],"series":[69402625,161677313],"short":[69402625,161873921],"setvar":[69402625,84148225,114491393,162922498],"succeeded":[69402625,163250177],"specifying":[69402625,69468161,163250177,174129153],"strings":[69402625,84475905,93782017,115212289,153026561,163250178,177537025],"switches":[69402626,163381249,163446785],"spandsp":[69468163,169672707],"switch":[69468161,84606977,84672513,115736577,115867649,163381249,163446785,169672705],"subclass":[69468162,170328065,174129153],"shut":[69468161,92471297,148439041,173604866],"setter":[69468161,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136511489,153812993,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129154,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"sha":[69599233,178782209],"sized":[69599233,178913281],"stacktrace":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"stack":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"socketencoding":[77660161,93323265,96731142,151584773,155844609,175046657],"scriptassmebly":[80150529,101580805,158728193],"scriptclass":[80150530,101580801,101646341,158728194],"scriptname":[80150529,101711877,158728193],"ser":[83099649,110821377,161873921],"setcdruserfield":[84082689,114229249,162856961],"stopmonitor":[84410369,115015681,163184641],"servers":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136708097,154009601,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"sourced":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,136839169,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"subevent":[86179841,86376449,88014849,88080385,88145921,120193030,120520710,133038086,167182337,167378945,169148417,169213953,169279489],"secondbridgecreator":[86441985,122028038,167444481],"secondbridgename":[86441985,122093574,167444481],"secondbridgenumchannels":[86441985,122159110,167444481],"secondbridgetechnology":[86441985,122224646,167444481],"secondbridgetype":[86441985,122290182,167444481],"secondbridgeuniqueid":[86441985,122355718,167444481],"secondtransfereraccountcode":[86441985,122421254,167444481],"secondtransferercalleridname":[86441985,122486790,167444481],"secondtransferercalleridnum":[86441985,122552326,167444481],"secondtransfererchannel":[86441985,122617862,167444481],"secondtransfererchannelstate":[86441985,122683398,167444481],"secondtransfererchannelstatedesc":[86441985,122748934,167444481],"secondtransfererconnectedlinename":[86441985,122814470,167444481],"secondtransfererconnectedlinenum":[86441985,122880006,167444481],"secondtransferercontext":[86441985,122945542,167444481],"secondtransfererexten":[86441985,123011078,167444481],"secondtransfererlanguage":[86441985,123076614,167444481],"secondtransfererpriority":[86441985,123142150,167444481],"secondtransfereruniqueid":[86441985,123207686,167444481],"src":[87031809,88014849,88080385,88145921,130220038,132907013,168165377,169148417,169213953,169279489],"starttime":[87031809,94240769,130285574,154664966,168165377,177995777],"sipcallid":[87162881,92667905,131137542,149225478,168296449,173801473],"sipfullcontact":[87162881,131203078,168296449],"srcuniqueid":[88014849,88080385,88145921,132972549,169148417,169213953,169279489],"station":[88539138,134152193,134283265,169672706],"screening":[90112002,138477569,138543105,171245570],"span":[90898433,141230086,172032001],"spent":[91160577,141950977,172294145],"statically":[91357185,91684865,142868481,172490753,172818433],"servicelevel":[91750402,144310278,172883970],"servicelevelperf":[91750401,144375813,172883969],"sure":[91881473,144769025,173015041],"subsystem":[91947009,144965633,173080577],"senderssrc":[92143617,146079750,173277185],"sequencenumbercycles":[92143617,146145286,173277185],"sentntp":[92209153,146604038,173342721],"sentoctets":[92209153,146669574,173342721],"sentpackets":[92209153,92340225,146735110,147587078,173342721,173473793],"sentrtp":[92209153,146800646,173342721],"ssrc":[92274689,92340225,147259398,147718150,173408257,173473793],"srcount":[92340225,147652614,173473793],"sequencenumber":[92471297,93061121,148373510,150077446,173604865,174194689],"signalling":[93192193,150405126,174325761],"synchronous":[93323267,150667265,150732801,151519233,175046659],"slow":[93323265,151322625,175046657],"sleeptime":[93323266,151519238,175046658],"sleep":[93323265,151519233,175046657],"small":[93323265,151519233,175046657],"sbyte":[154796036],"signed":[154796035],"sealedattribute":[155058177,158990337],"sc_success":[155582465],"sc_invalid_or_unknown_command":[155582465],"sc_dead_channel":[155582465],"sender":[163708933,163774469,163840005,163905541,163971077,164036613,164102149,164167685,164233221,164298757,164364293,164429829,164495365,164626437,164757509,164823045,164888581,164954117,165019653,165085189,165150725,165216261,165281797,165347333,165412869,165478405,165543941,165609477,165675013,165740549,165806085,165871621,165937157,174391301,174456837,174522373,174587909,174653445,174784517,174850053,174915589,174981125,175112197,175308805,175374341,175439877,175505413,175570949,175636485,175702021,175767557,175898629,175964165,176029701,176095237,176160773,176226309,176291845,176357381,176422917,176488453,176553989,176619525,176685061,176750597,176816133,176881669,176947205,177012741,177078277,177143813,177209349,178061317,178126853,178257925,178323461,178388997,178454533,178520069,178585605,178651141,178716677]} \ No newline at end of file +{"sandcastle":[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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"search":[65537],"sort":[65537],"section":[131073,46530561,46596097,64159745,69992450,158400514,164102145],"select":[131073],"source":[196609,50003974,50331654,50397190,50528262,50593798,50659334,50724869,50790406,50855942,50921478,50987014,51052550,51118086,51183622,51249158,51314694,51380230,51445766,51511302,51576838,51642374,51707910,51773446,51838982,51904518,51970054,52035590,52166662,52232198,52297734,52363270,52428806,52494342,52559878,52625414,52690950,52756486,52822022,52887558,52953094,53018630,53084166,53149702,53215238,53280774,53346310,53411846,53477382,53542918,53608454,53673990,53739526,53870598,53936134,54001670,54067206,54132742,54198278,54263814,54329350,54394886,54460422,54525958,54788097,54853637,54919174,54984710,55050246,55115782,55181318,55246854,55312390,55377926,55443462,55508998,55574534,55640070,55705606,55771142,55836678,55902214,55967750,56033286,56098822,56164358,56229894,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950789,57016326,57081861,57147397,57212933,57278469,57344005,57409541,57475078,57540614,57606150,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58785798,58851334,58916870,58982406,71172097,71958529,72024065,72089601,74645505,74711041,79167489,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706435,82771971,82837507,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88145921,89063425,110166017,128450561,128516097,132382725,151191553,151257089,151322625,154402817,154468353,159186945,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085187,165150723,165216259,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,174260225],"status":[196609,983042,3538945,3604481,5111810,23920643,49283073,49414145,63766530,64028673,64094210,64159745,70778881,70844417,79036417,80150531,80805890,82509825,82575361,82903041,82968577,83099649,83427329,84148225,84279297,84344833,84475905,85393410,85524484,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86638593,86704131,87228417,88604673,89194497,109707265,113246215,115343366,127664129,128712709,129236997,130416646,132907014,132972550,133038086,133431302,135987206,136249346,136511490,138084359,138739719,139788295,140705797,141033478,149225478,150798337,151453698,151519237,151781378,154402817,154468353,159055873,159318018,159383554,162398211,163053570,164888577,164954113,165281793,165347329,165478401,165806081,166526977,166658049,166723585,166854657,167772162,167903236,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820740,169017345,169082883,169607169,173015041,173670401,174915585],"separation":[196609],"special":[196609,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"serializeobjectstate":[327681,393217,458753,524289,589825,655361,720897,786433,851969,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"serialized":[327682,393218,458754,524290,589826,655362,720898,786434,851970,151191554,151257090,151322626,154402818,154468354,160628738,161939458,171180034,174260226],"state":[327681,393217,458753,524289,589825,655361,720897,786433,851969,22806530,63045633,63176705,64028682,64094215,64159754,74973185,79888387,80150530,82968579,83099649,83296259,84869123,85000195,85524481,85983233,86114306,86179842,86245378,86310914,86376450,86441985,86638593,87359489,87949313,96731137,111607809,111673345,111869958,113180673,113246209,128647174,128712705,129236993,136445954,139722753,140705793,145096710,146210817,151191553,151257089,151322625,154402817,154468353,154861569,155254786,157024257,158662657,159055874,159514625,160169985,160366593,160432129,160628737,161808385,161939457,162136067,162398210,162988033,163184641,163250177,165347332,165478402,165675011,167247875,167378948,167903233,168361985,168493058,168558594,168624130,168689666,168755202,168820737,168951809,169017345,169672705,169738241,170262529,170328066,170393601,171180033,171769857,173146113,174260225,174325761,174718977,174784513,174915586],"size":[917505,2555905,63635457,72351745,91422721,150994945,151781377,174981121],"separator":[917505,3211265,150994945],"show_version_files_pattern":[917505,3407878,150994945],"sc511_causes_exception":[983041,3538949,23003142,23068678,23199750,151781377],"set":[983044,1114114,3538946,3604482,3735553,3801089,8519682,11337731,13303811,13369347,13893635,13959171,14024707,14090243,16777219,21823491,23789569,25755649,25952257,27721729,30539779,30867457,30932993,35192833,35586049,38731777,38797313,42860546,42991617,43843585,45023233,45154306,45350915,46399489,46465025,47644673,47710209,50135041,50266114,54788097,60620801,60751874,62980097,63832070,64028675,64094211,64159747,64225281,66060290,67567618,69926914,71172097,72220673,72482819,72548354,72613890,72679426,72744966,72810498,72876035,72941570,73007107,73203713,73269249,73334790,73400322,73465860,73531394,73596930,73662466,73728002,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252290,74317828,74383363,74448899,74514434,74579969,75038723,75104260,75169793,75563009,75628546,75694081,76677122,76742658,76808193,76873734,76939266,77004802,77070337,77135874,77201409,77266950,77398017,77463553,77725701,77791251,77856771,78118918,78249987,78446594,78643202,78708740,78774277,78839812,78970881,79101953,79167492,79233026,79298561,79364097,79429633,79560705,79757321,79822854,79888397,79953924,80019461,80085000,80150533,80216069,80281605,80347144,80412684,80478220,80543753,80609285,80674821,80740358,80805900,80871428,80936964,81002501,81068036,81133572,81199108,81264644,81330180,81395716,81461252,81526788,81592324,81657860,81723396,81788933,81854469,81920004,81985540,82051076,82116614,82182148,82247686,82313220,82378756,82444292,82509830,82575365,82640905,82706442,82771978,82837514,82903045,82968582,83034116,83099656,83165188,83230737,83296271,83361800,83427332,83492868,83558404,83623949,83689478,83755012,83820549,83886084,83951621,84017157,84082693,84148229,84213765,84279301,84344837,84410376,84475908,84541444,84606980,84672516,84738052,84803590,84869133,84934665,85000205,85065734,85131276,85196808,85262342,85327880,85393416,85458951,85524487,85590020,85655556,85721094,85786630,85852171,85917702,85983243,86048783,86114308,86179845,86245382,86310917,86376453,86441995,86507528,86573062,86638600,86704133,86769670,86835206,86900740,86966276,87031812,87097348,87162884,87228423,87293958,87359494,87425028,87490564,87556100,87621636,87687177,87752708,87818246,87883782,87949320,88080389,88211473,88473607,88539143,88604678,88670214,88735752,88801288,88866822,88932358,89325569,89653249,90505220,90570756,90767364,90832900,91291652,91357188,91422724,91488260,91553796,91619333,91684869,91815941,92012549,92078085,92143621,92209157,92274693,92340229,92405766,92471302,92536838,92602373,92667909,92733445,92798981,92864517,92930053,92995589,93061125,93126661,93192197,93257732,93323268,93388805,93454341,93519877,93585413,93650949,93716485,93782021,93847557,93913093,93978629,94044165,94109701,94175237,94240773,94306309,94371845,94437381,94502917,94568453,94633989,94699525,94765061,94830597,94896133,94961669,95027205,95092741,95158277,95223813,95289349,95354885,95420422,95485958,95551493,95617029,95682565,95748097,95813638,95879173,95944709,96010245,96206852,96272388,96337924,96403460,96468996,96534532,96665604,97255429,97320966,97386501,97517573,97583109,97648645,97714180,97845252,97910789,98107396,98172932,98304004,98369540,98435076,98500612,98566148,98631684,98697220,98762756,98828292,98893828,98959364,99024900,99090436,99155972,99287044,99352580,99418116,99483652,99614724,99680260,99745796,99876869,100007941,100073477,100204549,100335620,100401156,100532228,100728836,100859908,100925444,101056516,101122052,101253124,101384196,101515268,101646340,101711876,102039556,102170629,102236165,102367237,102432773,102563844,102629381,102760454,102825990,102891526,103022598,103153669,103219205,103350277,103481349,103546885,103677957,103809029,103874566,103940101,104005637,104071173,104267781,104398853,104529924,104595461,104660996,104792069,104857606,104923142,104988676,105054213,105185285,105250821,105316358,105381893,105447431,105512965,105578502,105644039,105709574,105775110,105906181,105971717,106037253,106102788,106364933,106430469,106496005,106561542,106627077,106758148,106823684,106889220,106954756,107020292,107151365,107216901,107282437,107413508,107479044,107544580,107675652,107741188,107806724,107872260,108003333,108068869,108199940,108331012,108462085,108527621,108658692,108724229,108789765,108855301,108920837,109051909,109117446,109182982,109314053,109379589,109445126,109641733,109838341,110034949,110100486,110166021,110297093,110362629,110493701,110624773,110755845,110952453,111083525,111149061,111214597,111280134,111345669,111411207,111476740,111542279,111607813,111673349,111738884,111804420,111869956,111935492,112001029,112066564,112132101,112197637,112263173,112328709,112394244,112459780,112525316,112590852,112656388,112721924,112787460,112852996,112918533,112984068,113049604,113115140,113180676,113246212,113311749,113377284,113442820,113508356,113573892,113639429,113704964,113770500,113836036,113901573,113967109,114032644,114098180,114163716,114229252,114294788,114360324,114425861,114491397,114556933,114622469,114688005,114753541,114819077,114884612,114950149,115015684,115081221,115146757,115212293,115277829,115343365,115408901,115474436,115539972,115605508,115671044,115736580,115802117,115867652,115933188,115998724,116064260,116129796,116195332,116260868,116326404,116391940,116457476,116523012,116588548,116654084,116719620,116785156,116850692,116916228,116981764,117047300,117112836,117178372,117243908,117309444,117374980,117440516,117506052,117571588,117637124,117702660,117768196,117833732,117899268,117964804,118030340,118095876,118161412,118226948,118292484,118358020,118423556,118489092,118554628,118620164,118685700,118751236,118816772,118882308,118947844,119013380,119078916,119144452,119209988,119275524,119341060,119406596,119472132,119537668,119603204,119668740,119734276,119799812,119865348,119930884,119996420,120061956,120127492,120193028,120258564,120324100,120389636,120455172,120520708,120586244,120651780,120717316,120782852,120848388,120913924,120979460,121044996,121110532,121176068,121241604,121307140,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156805,126222340,126287877,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598597,127664133,127729669,127795205,127860741,127926276,127991813,128057349,128122885,128188421,128253957,128319492,128385028,128450564,128516101,128581636,128647173,128712709,128778244,128843780,128909316,128974852,129040389,129105925,129171461,129236997,129302532,129368068,129433604,129499141,129564677,129630213,129695749,129761285,129826821,129892357,129957893,130023429,130088965,130154501,130220037,130285573,130351109,130416644,130482180,130547716,130613252,130678788,130744324,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661831,131727367,131792901,131858437,131923972,132055045,132120581,132186117,132251653,132317188,132382724,132448260,132513797,132579332,132644868,132710404,132775940,132841476,132907012,132972548,133038084,133103621,133169157,133234693,133300229,133365764,133431300,133496836,133562372,133627908,133693444,133758980,133824517,133890052,133955589,134021124,134152197,134217732,134283269,134348805,134414341,134479877,134545412,134610948,134676484,134742020,134807556,134873092,134938628,135004165,135069701,135135237,135200773,135266309,135331845,135397380,135462916,135528452,135593988,135659525,135725060,135790596,135856132,135921668,135987205,136052740,136118276,136183813,136249351,136314884,136380420,136445956,136511492,136577028,136642564,136708100,136773636,136839172,136904708,136970244,137035780,137101316,137166852,137232389,137297925,137363461,137428997,137494533,137560069,137625605,137691141,137756677,137822212,137887749,137953285,138018821,138084357,138149893,138215429,138280965,138346501,138412037,138477573,138543108,138608645,138674181,138739717,138805252,138870788,138936324,139001860,139067397,139132932,139198468,139264005,139329540,139395077,139460612,139526149,139591685,139657221,139722756,139788293,139853828,139919364,139984900,140050436,140115972,140181509,140247044,140312580,140378117,140443652,140509189,140574724,140640261,140705797,140771332,140836869,140902404,140967940,141033476,141099013,141164549,141230085,141295621,141361156,141426692,141492228,141557764,141623300,141688836,141754372,141819908,141885444,141950980,142016516,142082052,142147588,142213124,142278660,142344196,142409732,142475268,142540804,142606340,142671876,142737412,142802948,142868484,142934020,142999556,143065092,143130628,143196164,143261700,143327236,143392772,143458308,143523844,143589380,143654916,143720452,143785988,143851524,143917060,143982596,144048132,144113668,144179204,144244741,144310276,144375813,144441348,144506884,144572420,144637956,144703492,144769028,144834564,144900100,144965636,145031172,145096708,145162244,145227780,145293316,145358852,145424388,145489924,145555460,145620996,145686533,145752068,145817604,145883140,145948676,146014212,146079749,146145285,146210821,146276357,146341892,146472964,146604036,146669572,146735110,146800644,146866181,146931717,146997252,147062789,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147718149,147783685,147849222,147914757,147980295,148045829,148111367,148176903,148242438,148373509,148504580,148635652,148766725,148897797,148963333,149028868,149094404,149159940,149225476,149356549,149422085,149487620,149553157,149618693,149684229,149815301,149880837,149946373,150011909,150077444,150142981,150208516,150274052,150339588,150470660,150536196,150601732,150667268,150863876,150929412,151584769,151781380,152043523,152109058,152174594,152240132,152305670,152371202,152436741,152502276,152567811,152633346,152829953,152895489,152961030,153026562,153092100,153157634,153223170,153288706,153354242,153419777,153485313,153550849,153616385,153681921,153747457,153878529,153944066,154009604,154075139,154140676,154206210,154271745,154927106,155058180,155123716,155189249,155582465,155648002,155713537,156696578,156762114,156827649,156893190,156958722,157024258,157089793,157155330,157220865,157286407,157417473,157483009,157745157,157810711,157876227,158138374,158269443,158334978,158466050,158662658,158728196,158793733,158859270,158990337,159121409,159186948,159252482,159318017,159383553,159449089,159580161,159776769,162005004,162070537,162136077,162201604,162267141,162332680,162398213,162463749,162529285,162594828,162660367,162725903,162791436,162856965,162922501,162988038,163053580,163119108,163184644,163250181,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163971076,164036612,164102148,164167685,164233221,164298756,164364292,164429828,164495366,164560900,164626438,164691972,164757508,164823044,164888582,164954117,165019657,165085194,165150730,165216266,165281797,165347334,165412868,165478408,165543940,165609492,165675023,165740552,165806084,165871620,165937156,166002701,166068230,166133764,166199301,166264837,166330373,166395909,166461445,166526981,166592517,166658053,166723589,166789128,166854660,166920196,166985732,167051268,167116804,167182342,167247885,167313417,167378957,167444486,167510029,167575560,167641094,167706632,167772168,167837703,167903239,167968772,168034308,168099846,168165382,168230923,168296454,168361995,168427535,168493060,168558597,168624134,168689669,168755205,168820747,168886280,168951814,169017352,169082885,169148422,169213958,169279492,169345028,169410564,169476100,169541636,169607175,169672710,169738246,169803780,169869316,169934852,170000388,170065929,170131461,170196998,170262534,170328072,171048965,171835412,171966465,173539335,173604871,173670406,173735942,173801480,173867017,173932550,173998086,174653441,174850049],"schangup_causes_exception":[983041,3604485,23003142,23068678,23199750,151781377],"setvaraction":[1114115,3735554,3801090,3866626,12386307,47579143,47644679,47710215,64094209,70385672,78839811,109248514,109314050,109379586,109445122,157548545,158859277],"store":[1114113,3866625,78839809,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,109379585,132055041,149749761,158859266,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"specifiy":[1310721,4456449,171048961],"synchronization":[1310721,4456449,171048961],"summary":[1900545,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3145729,3276801,3342337,3407873,3473409,3670017,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4521985,4587521,4653057,22937601,23134209,23592961,23658497,24117249,24313857,24379393,24444929,24510465,25427969,26148865,27262977,27394049,28180481,28311553,28377089,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36044801,36241409,36306945,36569089,36634625,36831233,36896769,37027841,37093377,37289985,37355521,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38862849,38928385,38993921,39059457,39714817,40828929,40960001,42598401,43122689,44498945,44892161,45416449,47054849,47775745,47906817,48103425,48365569,48431105,48496641,48562177,48627713,48693249,49610753,58720257,59047937,59179009,59244545,59310081,59375617,59441153,59899905,60030977,60096513,60882945,60948481,61014017,61276161,61341697,62324737,62586881,89391105,89456641,89718785,89784321,89849857,89915393,89980929,90046465,90243073,90505217,90570753,90701825,90767361,90832897,90898433,91226113,91488257,91553793,93257729,96206849,96272385,96534529,96600065,96665601,96796673,96862209,96927745,96993281,97058817,97124353,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99549185,99614721,99680257,99745793,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102301697,102498305,102694913,104529921,104595457,106692609,106758145,106823681,106889217,106954753,107020289,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,108134401,108199937,108265473,108331009,108658689,109510657,109576193,111476737,111738881,111804417,111869953,111935489,112066561,113377281,113508353,113573889,113704961,113770497,113836033,114032641,114098177,114163713,114229249,114294785,114360321,114884609,115015681,115474433,115539969,115605505,115671041,115736577,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,126025729,126091265,126222337,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127926273,128319489,128385025,128581633,128778241,128843777,128909313,128974849,129302529,129368065,129433601,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133890049,134217729,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135397377,135593985,135725057,135790593,135856129,135921665,136052737,136118273,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,138543105,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144310273,144441345,144769025,144834561,144965633,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145752065,145817601,145883137,145948673,146014209,146341889,146407425,146472961,146538497,147652609,148307969,148373505,148439041,148570113,148635649,148701185,148766721,148832257,149028865,149094401,149159937,149225473,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150994945,151388161,151519233,151781377,151846913,151912449,151977985,154337281,154664961,154861569,154992641,155385857,155451393,155516929,155779073,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,158072833,158203905,158334977,158400513,158531585,158597121,160497665,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161546241,161873921,162070529,162201601,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163840001,163905537,163971073,164036609,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,165412865,165543937,165871617,165937153,166330369,166526977,166723585,166854657,166920193,166985729,167051265,167116801,167444481,167968769,168034305,169279489,169345025,169410561,169476097,169541633,169803777,170196993,170459137,171835393,172425217,173670401,174063617,174194689],"syntax":[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,5111811,12713985,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920642,23986179,24051715,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758786,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63832066,70582273,74645506,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075779,96141315,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453700,151519234,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502274,152567809,152633346,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402819,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"static":[1900547,1966083,2031617,2097153,2162689,2228225,2293761,2359297,2424835,2490371,2555905,2621443,2686979,2752515,2818051,2883587,2949123,3014657,3080193,3145731,3211265,3276803,3342339,3407875,3473411,3932161,3997697,4063233,4128769,4194305,4259841,36831235,36896771,38600707,62783491,62849027,64094209,80150530,85983235,86048770,86114306,86179842,86245378,86310914,86376450,86441987,112787458,137887747,138412034,139526147,150994945,159186945,162398210,168361987,168427522,168493058,168558594,168624130,168689666,168755202,168820739],"shared":[1900545,1966081,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3145729,3276801,3342337,3407873,3473409,36831233,36896769,38600705,62783489,62849025],"string":[2031621,2228229,2359301,3014661,3211269,3670021,3735557,3801093,3866629,3932165,3997701,4063237,4128773,4194309,4259845,4325381,4390917,4587525,4653066,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5242942,5308417,5373953,5636101,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454147,8519694,12713999,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,15073283,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,21299203,21364737,21430273,21495809,21626882,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22675457,22740994,22806529,22872065,23330822,23396358,23527431,23789578,23855110,23986181,24051717,24117254,24248327,24313869,24379402,24444941,24510470,24576005,24707078,24772620,24838156,24903710,24969226,25034758,25100300,25165841,25231375,25296902,25362444,25493516,25559052,25624588,25690123,25755667,25821196,25886732,25952266,26148872,26214418,26279954,26345479,26411022,26542086,26607628,26673170,26738696,26804238,26869766,26935309,27000839,27066382,27197447,27394055,27459590,27525126,27656199,27721738,27852806,27918349,27983877,28573706,28704775,28770310,28835851,28901381,28966925,29032454,29163526,29294598,29425670,29491206,29556748,29622290,29687814,29753356,29818892,29884446,29949958,30015494,30081036,30146566,30212102,30277644,30343174,30408714,30474246,30539791,30605318,30670854,30736396,30801926,30867462,30932998,30998534,31064070,31129606,31195148,31260678,31326220,31391756,31457286,31522821,31588358,31719430,31784966,31916038,32112646,32309254,32374802,32440338,32505862,32571398,32636940,32702470,32833542,32899084,32964626,33030150,33095686,33161228,33226758,33292294,33357836,33423366,33488902,33554444,33619974,33751046,33816582,33882117,33947654,34013189,34078726,34209798,34275333,34340870,34406405,34471942,34537477,34603014,34734086,34865158,34930694,35061766,35127302,35192844,35258374,35323910,35389452,35454988,35520518,35586054,35651590,35717125,35782662,36110346,36175877,36503559,36765703,36831240,36896776,37224455,37552133,37617671,37683207,37748741,37879816,37945353,38010889,38141960,38207497,38273033,38404104,38469641,38535177,38666248,38797318,38928392,38993929,39059465,39256070,39387148,39452690,39583750,39649286,39845902,39977200,40108056,40239122,40370182,40501260,40632326,40763408,40894470,41156615,41287696,41418768,41549831,41680903,41811975,41943056,42270727,42401804,42532876,42729484,42860562,42991622,43253766,43384838,43450380,43581446,43712524,43778066,43843608,44040199,44171271,44498950,44695564,44761106,44826642,44957708,45023244,45088782,45154318,45285403,45350936,45744140,45809682,45875218,46006327,46137350,46202886,46268428,46333964,46465051,46596136,46727180,46858247,46989319,47251474,47317016,47448076,47513612,47644684,47710226,48037895,48300039,48496648,48562194,48627742,48693292,48758814,48889872,48955410,49020955,49152008,49807366,49872902,49938437,50069516,50135052,50200590,50266126,52101144,54591500,54657048,54722568,58720276,59179013,59244559,59441157,60227602,60293141,60358662,60424198,60555276,60620810,60686350,60751884,61669381,61997070,62062603,62193676,62259224,62324742,62455822,62586886,62717957,62849030,62980101,63307782,63438854,63635461,63832069,64159746,64421890,64487425,64552970,64618499,64684035,64749571,64815107,64880644,64946177,65011718,65077253,65142790,65208324,65273859,65339397,65404929,65470465,65536003,65601540,65667073,65732613,65798154,65863683,65929219,65994755,66060291,66125827,66191364,66256897,66453510,66519043,66584582,66650115,66715651,66781187,66846721,66912257,66977793,67043333,67174401,67239937,67305473,67371011,67436547,67502083,67567617,67633155,67698689,67764229,67829762,67895308,67960836,68026371,68091905,68157442,68222977,68288514,68354049,68419586,68485122,68550657,68616193,68681729,68747266,68812801,68878338,68943874,69009410,69074947,69140481,69206017,69271555,69337089,69402633,69468161,69533697,69599240,69664775,69730312,69795845,69861382,69926915,69992452,70057986,70123521,70189057,70254599,70320132,70385669,70451201,70516737,70582287,70647815,70713345,70975490,71237633,71499782,71565314,71630850,71696386,71761921,71827458,71958529,72024065,72089601,73531393,74645505,74711041,77398017,77463553,79167489,79626241,79691777,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230723,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88145921,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,89063425,89325574,89391110,89653254,89718790,89784326,90112006,90177542,90243078,90374150,90439686,90636294,90701830,90963974,91029510,91095046,91160582,91553799,91619335,91684871,91750406,91881478,91947014,92012551,92078087,92143623,92209159,92274695,92340231,92405767,92471303,92536839,92602375,92667911,92733447,92930055,92995591,93061127,93126663,93257735,93323271,93585415,93650951,93716487,93913095,93978631,94044167,94109703,94240775,94306312,94371847,94437383,94502919,94568455,94633991,94699527,94830599,94896135,95027207,95092743,95158279,95223815,95289351,95420423,95485959,95551495,95617031,95748102,95813638,95944711,96075782,96141318,96206854,96337927,96403463,96468999,96534534,97189895,97255431,97452039,97517575,97583111,97648647,97779719,97845255,97976327,98041863,98107399,98172935,98238471,98304007,98369543,98435079,98500615,98566151,98631687,98697223,98762759,98828295,98893831,98959367,99024903,99221511,99287047,99352583,99418119,99483655,99549191,99614727,99680263,99745799,99811335,99876871,99942407,100007943,100073479,100139015,100204551,100270087,100335623,100401159,100466695,100532231,100597767,100663303,100728839,100794375,100859911,100925447,100990983,101056519,101122055,101187591,101253127,101318663,101384199,101449735,101515271,101580807,101646343,101711879,101777415,101842951,101908487,101974023,102039559,102105095,102170631,102236167,102301703,102367239,102432775,102498311,102563847,102629383,102694919,102760455,102825991,102891527,102957063,103022599,103088135,103153671,103219207,103284743,103350279,103415815,103481351,103546887,103612423,103677959,103743495,103809031,103874567,103940103,104005639,104071175,104136711,104202247,104267784,104333319,104398856,104464390,104529927,104595464,104660999,104726535,104792071,104857607,104923143,105054215,105119751,105185287,105316359,105381895,105447431,105512967,105578503,105644039,105775111,105840647,105906183,105971719,106037255,106102791,106168327,106233863,106299399,106364935,106430471,106627079,106692615,106758151,106823687,106889223,106954759,107020295,107085831,107151367,107282439,107347975,107413511,107479047,107544583,107610119,107675655,107741191,107806727,107872263,107937799,108003335,108068871,108134407,108199943,108265479,108331015,108396551,108462087,108527623,108593159,108658695,108724231,108789767,108855303,108986375,109117447,109182983,109248519,109314055,109379591,109445127,109510663,109576199,109641735,109707271,109772807,109838343,109903879,109969420,110034951,110100488,110166023,110231559,110297095,110428167,110559239,110690311,110821383,110886919,111083527,111149063,111214599,111280135,111345671,111411207,111476743,111542279,111607815,111673351,111738887,111804423,111869959,111935495,112001031,112132103,112197639,112263175,112328711,112525319,112656391,112721927,112787463,112918535,113049607,113180679,113311751,113377287,113442823,113508359,113573895,113639431,113704967,113770503,113836039,113901575,113967111,114032647,114098183,114163719,114229255,114294791,114360327,114491399,114622471,114819079,114884615,114950151,115015687,115081223,115146759,115277831,115343367,115408903,115474439,115605511,115736583,115802119,115867655,115933191,115998727,116064263,116129799,116195335,116326407,116391943,116457479,116523015,116588551,116654087,116719623,116785159,116850695,116916231,116981767,117047303,117112839,117178375,117243911,117309447,117374983,117440519,117571591,117637127,117702663,117768199,117833735,117899271,117964807,118030343,118095879,118161415,118226951,118292487,118358023,118423559,118489095,118554631,118620167,118685703,118751239,118816775,118882311,118947847,119013383,119078919,119144455,119209991,119275527,119341063,119406599,119472135,119537671,119603207,119668743,119734279,119799815,119865351,119930887,119996423,120061959,120127495,120193031,120258567,120324103,120389639,120455175,120520711,120586247,120651783,120717319,120782855,120848391,120913927,120979463,121110535,121176071,121241607,121307143,121372679,121438215,121503751,121569287,121634823,121700359,121765895,121831431,121896967,121962503,122028039,122093575,122159111,122224647,122290183,122355719,122421255,122486791,122552327,122617863,122683399,122748935,122814471,122880007,122945543,123011079,123076615,123142151,123207687,123273223,123338759,123404295,123469831,123535367,123600903,123666439,123731975,123797511,123994119,124059655,124125191,124190727,124256263,124321799,124387335,124452871,124518407,124583943,124715015,124780551,124846087,124911623,124977159,125042695,125173767,125239303,125304839,125370375,125435911,125566983,125632519,125698055,125763591,125829127,125894663,125960199,126156807,126287879,126353415,126418951,126484487,126550023,126615559,126681095,126746631,126812167,126877703,126943239,127008775,127074311,127139847,127205383,127270919,127336455,127533063,127598599,127729671,127795207,127860743,127926279,127991815,128057351,128122887,128188423,128253959,128319495,128385031,128450567,128516103,128581639,128647175,128712711,128843783,128909319,129040391,129105927,129171463,129302535,129368071,129433607,129499144,129564679,129630215,129695751,129826823,130088967,130154503,130220039,130285575,130351111,130416647,130482183,130547719,131072007,131661831,131727367,131923975,132055058,132120583,132251655,132317191,132513799,132579335,132644871,132710407,132775943,133103623,133365767,133431303,133562375,133627911,133693447,133758983,133824519,133890055,133955591,134021127,134152199,134217735,134283271,134348807,134414343,134545415,134610951,134676487,134742023,134807559,134938631,135004167,135069703,135135239,135200775,135266311,135462919,135528455,135659527,135856135,135987207,136249351,136314887,136380423,136445959,136577031,136642567,136708103,136773639,137035783,137101319,137166855,137232391,137297927,137428999,137625607,137822215,137887751,138280967,138346503,138412039,138477575,138674183,138870791,138936327,139001863,139132935,139460615,139526151,139722759,140181511,140378119,140509191,140574727,140640263,140705799,140771334,140836871,140902407,140967943,141033479,141099015,141164551,141230087,141295623,141361159,141492231,141688839,141819911,141950983,142213127,142540807,142868487,143720455,144048135,144113671,144375815,144506887,144572423,144637959,144703495,144769031,144834567,144900103,145096711,145162247,145227783,145293319,145424391,145489927,145555463,145620999,145686535,145752071,145817607,145883143,146079751,146145287,146210823,146276359,146341895,146800647,146997255,147587079,147652614,147718151,147783687,147849223,147914759,147980295,148045831,148111367,148897799,148963335,149028871,149094407,149159943,149291014,149356551,149553159,149684231,149749776,149880839,149946375,150011912,150077447,150142983,150208519,150274055,150536199,150667271,150929415,151060481,151126017,151191556,151257090,151322626,151388161,151453698,151650366,151715841,151781381,151977985,152043535,152109059,152174595,152371203,152436739,152502275,152567812,152698881,152895490,152961030,153026564,153092102,153157637,153223171,153288708,153354241,153878529,153944065,154075141,154402818,154468354,154533890,154599426,154664961,154730498,154796033,154861571,154927118,155058177,155123717,155189250,155385868,155451396,155516931,155582465,155648002,155713537,155779074,155975681,156041218,156106754,156172289,156237825,156303361,156368898,156631041,156696578,156762114,156827650,156893187,156958721,157089793,157155331,157220865,157286409,157417474,157483010,157745160,157876231,158138376,158203909,158269446,158334979,158400516,158466050,158531585,158597121,158728199,158793732,158859269,158990337,159121409,159186967,159252481,160628740,161939458,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774469,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609476,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131463,170196995,170262531,170328067,171048968,171180036,171245569,171835393,173342721,173408257,173473793,173539332,173604868,173670404,173735940,173801476,173867012,173932550,173998086,174260226,174850050,174915587,174981121],"specified":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242882,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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740996,22806529,22872065,25886721,40697858,40763394,41091073,41156609,41222146,41287682,41353217,41418753,41484291,41549827,41615361,41680897,41746433,41811969,41877506,41943042,44040193,44171265,62783489,62849025,62914561,62980097,63832066,64880641,68288516,68354050,68419588,68485122,68550662,68616194,68681730,68747268,71761922,74842113,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398018,77463554,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507522,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080387,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,96337921,104267777,104398849,104660993,132317185,140312578,146997249,147128321,147587073,150077441,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650306,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567810,152633345,152698882,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664962,154730497,154796033,154861569,154927105,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779078,155844610,155910146,155975684,156041222,156106756,156172296,156237828,156303364,156368902,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417475,157483011,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,160628737,161939457,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886275,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,171048964,171180033,171245569,171835393,173342721,173408257,173473793,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063617,174260225,174850053,174915585,174981121],"serves":[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,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"shallow":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"sendcommand":[4718593,5308417,22937608,28180487,151060481,151715841],"subsequent":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"sets":[4849665,4915201,4980737,5242885,5636098,7995393,8060929,11337729,13172737,13238273,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21692417,21823489,22675457,27459585,27525121,27590657,27656193,27721729,29556737,29622273,42860545,45088769,45744129,45809665,45875201,47448065,47513601,47644673,47710209,50200577,60686337,63832068,64094212,65470466,65732610,69074945,70320130,70385666,71958531,72024067,72089603,72351747,74448897,74645507,74711043,77791233,79167489,79626243,79691779,84803585,86638593,88080391,88145923,89063427,89194498,91291649,91357185,91422721,93323265,95813633,97845249,105512961,105775105,110100481,113442817,113639425,134021121,136249345,136380417,136445953,139853825,139919361,139984897,140050433,140115969,140247041,140312577,140771329,144506881,144572417,144637953,144703489,144900097,145031169,146604033,146669569,146800641,146997249,147128321,147456001,147587073,150863873,150929409,151191556,151257092,151322628,151650309,151781379,152043522,153681921,153747457,153944065,154009601,154140673,154402820,154468356,155058177,155123713,155189249,156893185,157810690,158793730,158859267,159186945,160628740,161939460,162004993,162070529,162594817,162660353,162725889,162791425,165609473,167182337,169017345,171048967,171180036,171835393,174260228,174915586],"serializationinfo":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"streamfilecommand":[5111809,7667715,23789569,35258372,35323911,35389447,35454983,63832065,67043336,74383363,95551490,95617026,95682562,151453697,151846913,152567809,154075149],"stopped":[5111809,23789569,64028673,151453697,161415169],"supported":[5111809,23920641,64094209,64159745,72220673,90308609,151453697,151584769,155713537,166264833],"success":[5111809,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,23920641,62128129,63832065,64094209,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,150011905,151453697,152895489,159186945,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"synopsis":[5111809,23986178,36110343,74645506,96075783,151453697,154402819],"sent":[5111810,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,23986178,24051714,42991618,43843586,62062593,63832066,64028677,64094215,64159745,64225284,72155137,76939266,77266946,79167489,86638594,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89325569,103022594,103874562,109969409,140705794,150142977,151453699,151519233,153419777,153485313,156827649,156958723,157286402,157810689,158662657,158924802,158990337,159186945,161153025,161218561,161284097,161349633,161415169,165019649,169017346,173539330,173604867,173670402,173735938,173801475,173867011,173932546,173998083],"sc_invalid_command_syntax":[5111810,23986177,24051713,151453698,151519233],"stream":[5242884,8454145,24707074,24772610,24838146,24903682,25821185,25886721,26214401,26279937,29687809,29753345,29818881,29884417,30867457,30932993,30998529,31326209,31391745,32374785,32440321,35323905,35389441,35454977,37486593,63832066,64552964,72482817,72876033,73007105,73334785,74383362,91684865,92733441,93126657,93650945,95617026,151650308,152043522,152436738,152567809,152961025,154075138,154861569],"seek":[5242886,24707073,24772609,24838145,24903681,26214401,26279937,63832067,64552964,65011714,151650310,152043521,152961025,154075137],"sample":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,151650308,152043521,154075137],"starts":[5242885,24707073,24772609,24838145,24903681,25100289,41484289,41549825,44695553,44761089,44826625,63832066,64028673,64094211,64159745,64552964,64618497,68550658,69599235,85524481,136380417,151650309,152043521,154075137,156172290,157745156,157810690,166658049,167903233,171442177],"streaming":[5242885,24838145,24903681,25493505,25559041,25624577,25821185,25886722,29687809,29753345,29818882,29884418,31391745,35323905,35389441,35454978,63832067,64749571,64880642,65798148,67043331,72482817,73007105,74383361,91815937,93192193,95682561,151650309,152043525,152436737,152567811,154075140],"starting":[5242883,25493505,25559041,25624577,63832065,64749571,151650307,152436737],"seconds":[5242884,25821185,25886721,26214401,26279938,26476545,26542081,26607617,26673153,27131905,27197441,27328513,31326209,31391745,32440321,32768001,32833537,32899073,32964609,33685505,33751041,34144257,39256065,63832067,64094209,64880641,65011714,66191361,66584577,73465857,73728001,73924609,75038721,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,80281602,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805890,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131266,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852162,85917697,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507523,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359491,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88211458,94175233,94765057,94961666,97320961,105709569,112590849,113639425,115212289,132448257,135331841,137494529,137756673,138215425,139395073,140050433,140247041,145031175,148242434,151650308,152567809,152961025,153092098,153354242,153550850,155058178,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398210,162463745,162529282,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053570,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510018,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230914,168296449,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886275,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738243,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171835394],"sequence":[5242882,26214401,26279937,63832065,64094209,65011714,151650306,152961025,159186945],"specify":[5242882,26214401,26279937,42991617,43843585,63832067,64094211,65011714,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939267,77004802,77070338,77135874,77201410,77266947,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791236,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,103022593,103874561,104660994,105381889,105775105,132317186,150077442,151650306,152829953,152895489,152961025,155058178,155123715,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958724,157024258,157089794,157155330,157220866,157286403,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810692,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186947,159252482,159318018,159383554,159449090,159514626,159580162,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"samples":[5242882,24838145,24903681,26214401,26279938,29818881,29884417,32440321,35454977,63832065,65011714,72482817,73334785,74383361,91815937,93782017,95682561,151650306,152043521,152961026,154075137],"sayalpha":[5242882,26345478,26411014,65077251,151650306],"says":[5242894,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,32768001,32833537,32899073,32964609,65077250,65142788,65208322,65273858,65339394,65404930,66584580,151650318,153092100],"saydatetime":[5242884,26476550,26542086,26607622,26673158,65142789,151650308],"saydigits":[5242882,26738694,26804230,65208323,151650306],"saynumber":[5242882,26869766,26935302,65273859,151650306],"sayphonetic":[5242882,27000838,27066374,65339395,151650306],"saytime":[5242882,27131910,27197446,65404931,151650306],"service":[5242881,27262984,86507522,140247042,140312578,151650305,168886274],"setautohangup":[5242881,27328518,151650305],"setcallerid":[5242881,27394055,151650305],"setcontext":[5242881,27459590,151650305],"setextension":[5242881,27525126,151650305],"setpriority":[5242882,27590663,27656199,65470467,151650306],"setvariable":[5242881,11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,27721733,45088775,50200583,60686343,62062593,151650305,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"stopmusiconhold":[5242881,27787269,151650305],"stops":[5242881,27787265,41353217,41418753,41615361,41680897,68485122,68616194,151650305,156106754,156237826],"streamfile":[5242882,27852806,27918342,65536003,151650306],"sends":[5242881,8454146,21626881,27983873,37617665,37683201,59703297,63832067,64094211,64225281,151650305,153419777,153485313,154206209,154861570,155713537,157089793,159186945,171048961,173604865],"system":[5242881,22806529,23003146,23068680,23199750,23330817,23396354,23527430,23789569,24248323,24313860,24444932,24576001,24707073,24772610,24838147,24903686,24969218,25034753,25100290,25165828,25231363,25296897,25362434,25493505,25559042,25624579,25690113,25755652,25821186,25886723,25952257,26148867,26214404,26279943,26345473,26411010,26476545,26542082,26607619,26673156,26738689,26804226,26869761,26935298,27000833,27066370,27131905,27197442,27328514,27394051,27459586,27525122,27590658,27656194,27721730,27852801,27918338,27983875,28049409,28573711,28639234,28704770,28770307,28835870,28966916,29425665,29556738,29622275,29687809,29753346,29818883,29884422,30015489,30081026,30212097,30277634,30408706,30539779,30670849,30736386,30867457,30932994,30998531,31129601,31195138,31326210,31391747,31522817,31719425,32047105,32243714,32374788,32440327,32571393,32636930,32768002,32833538,32899075,32964612,33095681,33161218,33292289,33357826,33488897,33554434,33685505,33751042,33882113,34013185,34144257,34275329,34406401,34537473,34865153,34996225,35061761,35192836,35323905,35389442,35454979,35586050,35717122,35913729,36110338,36175873,36438018,36503554,36765698,36831236,36896776,37224450,37421068,37617665,37683201,37748739,37814275,37879811,37945352,38010888,38076419,38141955,38207496,38273032,38338563,38404099,38469640,38535176,38666244,38731777,38797314,38862851,38928387,38993928,39059464,39256066,39387138,39452675,39583745,39649282,39845894,39977170,40108036,40239107,40370177,40501250,40632321,40763398,40894466,41156610,41287686,41418758,41549826,41680898,41811970,41943046,42270722,42401794,42532866,42729474,42860547,42991618,43253761,43384833,43450370,43581441,43712514,43778051,43843589,44040193,44171265,44695554,44761091,44826628,44957699,45088774,45154308,45285388,45350916,45744130,45809667,45875204,46006302,46137345,46202882,46268418,46333955,46465036,46596116,46727170,46858242,46989314,47251460,47316997,47448066,47513603,47644674,47710211,48037890,48300034,48496643,48562184,48627727,48693272,48758789,48889862,48955404,49020940,49152006,49283074,49414146,49545218,49807361,49872898,49938433,50069507,50200582,50266116,52101121,54591490,54657025,58720266,59244549,59637761,59768834,59965443,60096516,60227588,60293130,60358657,60424194,60555267,60686342,60751876,61079556,61407235,61669379,61997060,62062593,62193666,62259201,62455812,62717953,62849025,62914561,62980097,63176705,63307777,63373313,63438850,63635458,63700993,63832065,64159745,76939265,77266945,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228418,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,103022593,103874561,132251649,144375809,149946369,150994945,151060481,151126017,151191554,151257090,151322626,151388161,151453697,151584769,151650306,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206210,154271745,154402818,154468354,154533889,154599425,154664961,154730497,154796033,154861569,154927106,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958722,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548546,157614082,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160628738,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939458,162004995,162070531,162136067,162201605,162267142,162332675,162398213,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264837,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213957,169279491,169345027,169410563,169476099,169541635,169607172,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171048961,171114497,171180034,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998083,174063617,174129153,174194689,174260226,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915586,174981121],"start":[5373953,22806529,28311558,63176709,63373317,63438853,64159745,151781377,163119105,174915585],"stop":[5373953,28377094,151781377],"sayalphacommand":[6619139,32505860,32571399,32636935,63832065,66519046,73400323,93913090,93978626,151846913,153026571],"saydatetimecommand":[6684675,32702468,32768008,32833543,32899079,32964615,63832065,66584586,73465859,94044162,94109698,94175234,94240770,151846913,153092111],"saydigitscommand":[6750211,33030148,33095687,33161223,63832065,66650118,73531395,94306306,94371842,151846913,153157643],"saynumbercommand":[6815747,33226756,33292295,33357831,63832065,66715654,73596931,94437378,94502914,151846913,153223179],"sayphoneticcommand":[6881283,33423364,33488902,33554439,63832065,66781189,73662467,94568450,94633986,151846913,153288714],"saytimecommand":[6946819,33619972,33685511,33751047,63832065,66846726,73728003,94699522,94765058,151846913,153354251],"sendimagecommand":[7012355,33816580,33882118,63832065,73793539,94830594,151846913,153419785],"sendtextcommand":[7077891,33947652,34013190,63832065,73859075,94896130,151846913,153485321],"setautohangupcommand":[7143427,34078724,34144262,63832065,73924611,94961666,151846913,153550857],"setcalleridcommand":[7208963,34209796,34275334,63832065,73990147,95027202,151846913,153616393],"setcontextcommand":[7274499,34340868,34406405,63832065,74055683,95092738,151846913,153681928],"setextensioncommand":[7340035,34471940,34537477,63832065,74121219,95158274,151846913,153747464],"setmusicoffcommand":[7405571,34603012,34668550,63832065,151846913,153813001],"setmusiconcommand":[7471107,34734084,34799623,34865159,63832065,66912262,74186755,95223810,151846913,153878539],"setprioritycommand":[7536643,34406401,34537473,34930692,34996231,35061767,63832066,66977798,74252291,95289346,95354882,151846913,153681921,153747457,153944076],"setvariablecommand":[7602179,35127300,35192838,63832065,74317827,95420418,95485954,151846913,154009608],"scriptmapping":[8257539,36438023,36831242,36896781,36962310,63897601,67174401,74842115,96272387,96337922,96403458,96468994,154533889,154664970],"savemappings":[8257537,36896776,154664961],"serversocket":[8388611,37289988,37355523,37421065,63963138,154796042],"socketconnection":[8454147,23068681,23199751,23724038,28246022,37289989,37486594,37552130,37617666,37683202,37748741,63963137,64356353,74973187,96600067,96665603,96731138,96796675,96862211,96927747,96993283,97058819,97124355,151060481,154861577],"socket":[8454148,21626881,23068678,23199751,23724038,28246022,37486593,37552129,37617665,37683201,59506690,63766530,63963137,64094209,74973185,88080385,96731137,147521537,151126019,154796033,154861573,157286401,171048962],"suitable":[8519681,38600705,154927105],"sending":[11141121,11206657,44236801,44367873,64094212,64225281,79691777,111017985,155582465,157286401,157614082,157679617,157876225,161939457,173735937],"setvariables":[11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,45154311,50266119,60751878,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393],"setcdruserfieldaction":[12320771,47382535,47448071,47513607,64094211,70320136,78774275,108986370,109051906,109117442,109182978,157548545,158793743],"sippeersaction":[12451843,47775748,47841286,64028674,64094209,64159746,78905347,109510659,157614081,158924809,167772161,167837698,172228609,172294145],"sipshowpeeraction":[12517379,47906820,47972359,48037896,64028674,64094209,64159746,70451206,78970883,109576195,109641730,157614081,158990347,167772161,167837698,172228609,172294145],"statusaction":[12582915,48103428,48168966,64028674,64094210,64159746,79036419,109707266,157614081,159055882,169672706,169738242,174129153,174325761],"stopmonitoraction":[12648451,48234503,48300040,64094210,70516742,79101955,109772802,109838338,157548545,159121420],"sparing":[12713985,48758785,70582273,159186945],"sections":[12713985,48758785,70582273,159186945],"supply":[12713985,48758785,70582273,159186945],"showdialplancompleteevent":[20709379,58130439,64159745,87162883,143720451,143785987,143851523,143917059,143982595,166264833,169541642],"shutdownevent":[20774915,58195975,64159746,87228419,144048131,144113667,144179203,144244738,144310275,144375810,164954113,169607178],"statuscompleteevent":[20840451,58261511,64028673,64094209,64159746,87293955,144441347,159055874,169213953,169672714,174129157,174325761],"statusevent":[20905987,58327047,64028673,64094209,64159746,87359491,144506882,144572418,144637954,144703490,144769027,144834563,144900098,144965635,145031170,145096707,159055874,169213953,169672705,169738250,174129153,174194693],"server":[21626882,59506690,59703297,60227585,60293121,63766530,64028676,64094216,64159752,64225282,75038725,75104261,75169797,75235333,75300869,75366405,75431941,75497477,75563013,75628549,75694086,75759621,75825157,75890693,75956229,76021765,76087301,76152837,76218373,76283909,76349445,76414981,76480517,76546053,76611589,76677125,76742661,76808197,76873733,76939269,77004805,77070341,77135877,77201413,77266949,77332485,77398021,77463557,77529093,77594629,77660165,77725701,77791237,77856773,77922309,77987845,78053381,78118917,78184453,78249989,78315525,78381061,78446597,78512133,78577669,78643205,78708741,78774277,78839813,78905349,78970885,79036421,79101957,79167493,79233029,79298565,79364101,79429637,79495173,79560709,79757319,79822855,79888391,79953927,80019463,80084999,80150535,80216071,80281607,80347143,80412679,80478215,80543751,80609287,80674823,80740359,80805895,80871431,80936967,81002503,81068039,81133575,81199111,81264647,81330183,81395719,81461255,81526791,81592327,81657863,81723399,81788935,81854471,81920007,81985543,82051079,82116615,82182151,82247687,82313223,82378759,82444295,82509831,82575367,82640903,82706439,82771975,82837511,82903047,82968583,83034119,83099655,83165191,83230728,83296263,83361799,83427335,83492871,83558407,83623943,83689479,83755015,83820551,83886087,83951623,84017159,84082695,84148231,84213767,84279303,84344839,84410375,84475911,84541447,84606983,84672519,84738055,84803591,84869127,84934663,85000199,85065735,85131271,85196807,85262343,85327879,85393415,85458951,85524487,85590023,85655559,85721095,85786631,85852167,85917703,85983239,86048775,86114311,86179847,86245383,86310919,86376455,86441991,86507527,86573063,86638600,86704135,86769671,86835207,86900743,86966279,87031815,87097351,87162887,87228424,87293959,87359495,87425031,87490567,87556103,87621639,87687175,87752711,87818247,87883783,87949319,88080388,88473606,88539142,88604678,88670214,88735750,88801286,88866822,88932358,100204545,104661001,105775108,111280132,129630209,132186114,132317193,140640257,144244737,146800641,146997249,147128321,147587073,149815297,150077449,151126017,151322625,155058181,155123717,155189253,155254789,155320325,155385861,155451397,155516933,155582472,155648005,155713543,155779077,155844613,155910149,155975685,156041221,156106757,156172293,156237829,156303365,156368901,156434437,156499973,156565509,156631045,156696581,156762117,156827653,156893189,156958725,157024261,157089798,157155333,157220869,157286406,157351942,157417477,157483013,157548549,157614085,157679621,157745157,157810693,157876229,157941765,158007301,158072837,158138373,158203909,158269445,158334981,158400517,158466053,158531589,158597125,158662661,158728197,158793733,158859269,158924805,158990341,159055877,159121413,159186950,159252485,159318021,159383557,159449093,159514629,159580165,162004999,162070535,162136071,162201607,162267143,162332679,162398215,162463751,162529287,162594823,162660359,162725895,162791431,162856967,162922503,162988039,163053575,163119111,163184647,163250183,163315719,163381255,163446791,163512327,163577863,163643399,163708935,163774471,163971079,164036615,164102151,164167687,164233223,164298759,164364295,164429831,164495367,164560903,164626439,164691975,164757511,164823047,164888584,164954119,165019655,165085191,165150727,165216263,165281800,165347335,165412871,165478407,165543943,165609480,165675015,165740551,165806087,165871623,165937159,166002695,166068231,166133767,166199303,166264840,166330375,166395911,166461447,166526983,166592519,166658055,166723591,166789127,166854663,166920199,166985735,167051271,167116807,167182343,167247879,167313415,167378951,167444487,167510023,167575559,167641095,167706631,167772167,167837703,167903240,167968775,168034311,168099847,168165383,168230919,168296455,168361991,168427527,168493063,168558599,168624135,168689671,168755207,168820743,168886279,168951815,169017354,169082888,169148423,169213959,169279495,169345031,169410567,169476103,169541639,169607177,169672711,169738247,169803783,169869319,169934855,170000391,170065927,170131463,170196999,170262535,170328071,170721281,171048966,172359681,173211650,173539334,173604870,173670406,173735942,173801478,173867014,173932551,173998087],"sendaction":[21626883,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,59834376,59899914,59965448,62062593,71368708,88080386,147456002,171048965,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"send":[21626882,27983873,33882113,34013185,35717121,37617665,37683201,42991617,43843585,59834369,59965442,64094209,64159748,71368706,73793537,73859073,74514433,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694082,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939266,77004801,77070337,77135873,77201409,77266946,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791234,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080387,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,94830594,94896130,95944705,100204545,103022593,103874561,104660993,105250817,132317185,140836865,146735106,147062785,150077441,153419777,153485313,154206209,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713538,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958722,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876226,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131461,170196993,170262529,170328065,171048965,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sendeventgeneratingaction":[21626882,60030985,60096521,71434243,171048962],"stored":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,62062595,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"setchannel":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sip":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,25362433,43450369,45744129,45809665,45875201,48037889,62062593,64028676,64094210,64159748,70451201,72220673,78118913,81788930,81854465,85393412,85524485,86638597,87425025,91095042,106364929,125960194,126287873,135462914,135528449,135987201,136249345,136314881,136380418,136511489,140574721,140640258,140705793,140836865,145555457,151584769,158138369,158924801,158990338,164167682,164233217,165806081,167772164,167903238,169017350,169803777,169869313,170655745,172359681,173211649,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174391297],"shutdown":[22872065,63569925,64028673,87228419,144375815,161480705,169607171,174981121],"sub":[23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23724033,24182785,24248321,24576001,24641537,24969217,25034753,25100289,25231361,26017793,26083329,26148865,26345473,26476545,26738689,26869761,27000833,27131905,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,29097985,29229057,29360129,29425665,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31653889,31719425,31850497,31981569,32047105,32178177,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34668545,34799617,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35848193,35913729,36044801,36110337,36175873,36306945,36372481,36438017,36503553,36634625,36700161,36765697,36896769,36962305,37093377,37158913,37224449,37355521,37421057,37486593,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40894465,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44302337,44433409,44564481,44630017,44695553,44761089,44826625,45088769,45154305,45219841,45285377,45350913,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530562,46596098,46661633,46727169,46792705,46858241,46923777,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47841281,47972353,48037889,48168961,48234497,48300033,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49676289,49741825,49807361,49872897,49938433,50003969,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58785793,58851329,58916865,58982401,59047937,59113473,59572225,59637761,59703297,59768833,60162049,60227585,60293121,60358657,60424193,60489729,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61734913,61800449,61865985,61931521,61997057,62390273,62455809,62652417,62717953,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,69992450,158400514,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"strategy":[23199745,63897601,72351745,86507522,91357185,140378118,151781377,154533889,168886274],"script":[23199745,63766529,63897601,72220678,74842113,90177537,90374145,90636289,90963969,91029510,96468993,151584774,154599425,154664961,154730497],"skip":[24838145,24903681,26279937,29818881,29884417,32440321,35454977,72482817,73334785,74383361,91815937,93782017,95682561,152043521,152961025,154075137],"standard":[25559041,25624577,30932993,30998529,63963137,72876033,92864513,152436737,154796033],"silence":[26279937,32440321],"say":[26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,63832070,66584577,73400321,73465857,73531393,73596929,73662465,73728001,93978625,94175233,94306305,94502913,94633985,94765057,153026562,153092099,153157634,153223170,153288706,153354242],"said":[26607617,26673153,32899073,32964609,73465857,94044161,153092097],"saying":[26673153,32964609,73465857,94240769,153092097],"serve":[28639233,28770305,64094209,72351746,88080385,91357185,91422721,146931713,151781378,157548545,171048961],"sc511_causesexception":[28835848],"schangup_causesexception":[28835848],"support":[29687809,29753345,29818881,29884417,63832071,64290817,65798148,152043524,152829954,152895489,153419778,153485314,163905537,174915585],"sayphonticcommand":[33488897,66781185,153288705],"sealed":[36241409,36306945,36569089,36634625,37027841,37093377,45023233,45154305,50135041,50266113,60882945,61014017,61276161,132055042,148307969,148373506,148701185,148766722,149749761,150994945,154927106],"soft":[39649285,64159745,75169793,97910789,155189249,165609473],"separate":[40894465,64094210,155844610,155910145],"separated":[42991617,43843585,76939265,77266945,77463553,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934658,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801282,88866817,88932353,103022593,103874561,104398849,105775105,132251649,134152193,149553153,149946369,156958721,157286401,157483009,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313410,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867010,173932545,173998081],"security":[43712513,69402625,157286401],"secret":[43712517,77266948,104005640,157286404],"specific":[45744129,45809665,45875201,63766529,63832065,64094209,71958529,72024065,72089601,74645505,74711041,78118913,79167489,79626241,79691777,88145921,89063425,106364929,110100481,151191554,151257089,151322625,152109057,154402817,154468353,158138369,159186946,160628737,161939457,171180033,174260225],"statistics":[46792705,46858241,70123522,158531586],"second":[47316993],"srcfilename":[48889862,48955398,49020934,64094209,79167489,110166021,159186946],"successful":[63832068,64094210,64159745,85983233,86048769,86441985,86638593,88080385,137756673,138215425,139395073,140705793,146866177,152109057,152174593,152305665,154140673,157286401,157876225,164888577,168361985,168427521,168820737,169017345,171048961],"setting":[63832065,64094209,64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281602,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507523,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,113639425,132448257,140115969,140247041,153550849,155058177,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529282,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755202,168820737,168886275,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"supports":[63832065,75563009,77266945,99876865,103809025,153944065,155582465,157286401],"strategies":[63897601],"single":[63897601,64028673,64159745,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,154533889,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133762,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170917889,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sciptmapping":[63897601,154533889],"successfully":[64028675,64159746,151519233,159645697,160038913,161939457,162463745,162856961],"simple":[64028673,173473793],"stores":[64028673,173473793],"started":[64028673,64159746,161611777,165085185,169082881],"setup":[64028673,64159745,166133761,170917889],"sit":[64028673,64159745,166133761,170917889],"shows":[64028674,64159745,170328065,173015041,174784513],"statuscompleteeventhandler":[64028673,174129157],"statuseventhandler":[64028673,174194694],"series":[64094209,157614081],"short":[64094209,157810689],"setvar":[64094209,78839809,109248513,158859266],"succeeded":[64094209,159186945],"specifying":[64094209,64159745,159186945,170131457],"strings":[64094209,79167489,88539137,109969409,148963329,159186946,173604865],"switches":[64094210,159318017,159383553],"spandsp":[64159747,165609475],"switch":[64159745,79298561,79364097,110493697,110624769,159318017,159383553,165609473],"subclass":[64159746,166264833,170131457],"shut":[64159745,87228417,144375809,169607170],"setter":[64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132055041,149749761,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sha":[64290817,174850049],"sized":[64290817,174981121],"stacktrace":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"stack":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"socketencoding":[72351745,88080385,91488262,147521541,151781377,171048961],"scriptassmebly":[74842113,96337925,154664961],"scriptclass":[74842114,96337921,96403461,154664962],"scriptname":[74842113,96468997,154664961],"ser":[77791233,105578497,157810689],"setcdruserfield":[78774273,108986369,158793729],"stopmonitor":[79101953,109772801,159121409],"servers":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sourced":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132382721,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"serviced":[80150529,86114305,86179841,86245377,86310913,86376449,112394241,162398209,168493057,168558593,168624129,168689665,168755201],"stateinterface":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113180677,139722757,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"subevent":[80871425,81068033,82706433,82771969,82837505,115736582,116064262,128581638,163119105,163315713,165085185,165150721,165216257],"secondbridgecreator":[81133569,117571590,163381249],"secondbridgename":[81133569,117637126,163381249],"secondbridgenumchannels":[81133569,117702662,163381249],"secondbridgetechnology":[81133569,117768198,163381249],"secondbridgetype":[81133569,117833734,163381249],"secondbridgeuniqueid":[81133569,117899270,163381249],"secondtransfereraccountcode":[81133569,117964806,163381249],"secondtransferercalleridname":[81133569,118030342,163381249],"secondtransferercalleridnum":[81133569,118095878,163381249],"secondtransfererchannel":[81133569,118161414,163381249],"secondtransfererchannelstate":[81133569,118226950,163381249],"secondtransfererchannelstatedesc":[81133569,118292486,163381249],"secondtransfererconnectedlinename":[81133569,118358022,163381249],"secondtransfererconnectedlinenum":[81133569,118423558,163381249],"secondtransferercontext":[81133569,118489094,163381249],"secondtransfererexten":[81133569,118554630,163381249],"secondtransfererlanguage":[81133569,118620166,163381249],"secondtransfererpriority":[81133569,118685702,163381249],"secondtransfereruniqueid":[81133569,118751238,163381249],"src":[81723393,82706433,82771969,82837505,125763590,128450565,164102145,165085185,165150721,165216257],"starttime":[81723393,88997889,125829126,150601734,164102145,174063617],"sipcallid":[81854465,87425025,126681094,145162246,164233217,169803777],"sipfullcontact":[81854465,126746630,164233217],"srcuniqueid":[82706433,82771969,82837505,128516101,165085185,165150721,165216257],"station":[83230722,129695745,129826817,165609474],"screening":[84803586,134021121,134086657,167182338],"span":[85590017,136773638,167968769],"spent":[85852161,137494529,168230913],"statically":[86048769,138412033,168427521],"servicelevel":[86507522,140247046,168886274],"servicelevelperf":[86507521,140312581,168886273],"sure":[86638593,140705793,169017345],"subsystem":[86704129,140902401,169082881],"senderssrc":[86900737,142016518,169279489],"sequencenumbercycles":[86900737,142082054,169279489],"sentntp":[86966273,142540806,169345025],"sentoctets":[86966273,142606342,169345025],"sentpackets":[86966273,87097345,142671878,143523846,169345025,169476097],"sentrtp":[86966273,142737414,169345025],"ssrc":[87031809,87097345,143196166,143654918,169410561,169476097],"srcount":[87097345,143589382,169476097],"sequencenumber":[87228417,87818241,144310278,146014214,169607169,170196993],"signalling":[87949313,146341894,170328065],"synchronous":[88080387,146604033,146669569,147456001,171048963],"slow":[88080385,147259393,171048961],"sleeptime":[88080386,147456006,171048962],"sleep":[88080385,147456001,171048961],"small":[88080385,147456001,171048961],"sbyte":[150732804],"signed":[150732803],"sealedattribute":[150994945,154927105],"sc_success":[151519233],"sc_invalid_or_unknown_command":[151519233],"sc_dead_channel":[151519233],"sender":[159645701,159711237,159776773,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160563205,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153029,161218565,161284101,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,170393605,170459141,170524677,170590213,170655749,170786821,170852357,170917893,170983429,171114501,171311109,171376645,171442181,171507717,171573253,171638789,171704325,171769861,171900933,171966469,172032005,172097541,172163077,172228613,172294149,172359685,172425221,172490757,172556293,172621829,172687365,172752901,172818437,172883973,172949509,173015045,173080581,173146117,173211653,173277189,174129157,174194693,174325765,174391301,174456837,174522373,174587909,174653445,174718981,174784517]} \ No newline at end of file diff --git a/docs/fti/FTI_116.json b/docs/fti/FTI_116.json index 2c1d893..2549e3e 100644 --- a/docs/fti/FTI_116.json +++ b/docs/fti/FTI_116.json @@ -1 +1 @@ -{"topic":[1],"title":[65537,131073],"topics":[131073],"todo":[131073,262147],"talk":[196609],"thanks":[196609],"type":[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,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,10158083,10223619,10289155,10354691,10420227,10485763,10551299,10616835,10682371,10747907,10813443,10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369345,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580612,16646148,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,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,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,26935297,27000835,27066371,27131907,27197443,27262979,27328515,27394051,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049411,28114947,28180483,28246019,28311554,28377092,28442627,28573700,28704769,28770306,28901378,28966913,29032449,29097985,29163522,29229057,29294593,29360129,29425665,29491201,29622273,29687810,29753345,29818882,29884417,29949953,30081026,30146563,30212100,30277639,30343170,30408705,30474242,30539779,30605315,30670850,30736387,30801921,30867458,30932995,30998532,31064066,31129603,31195139,31260676,31326210,31522817,31588357,31653896,31719425,31784963,31850497,31916035,31981572,32047109,32112641,32178179,32243713,32309251,32374785,32440323,32505857,32571395,32636930,32702465,32768001,32833537,32899073,32964609,33030145,33095682,33226753,33292291,33357826,33423362,33554433,33619969,33882113,33947652,34013186,34078721,34144259,34209797,34275329,34340866,34406401,34537473,34668545,34799617,34865153,34930690,34996227,35061761,35127298,35192835,35258374,35323905,35389441,35454978,35520513,35586049,35651586,35717121,35782658,35848193,35913731,35979265,36044801,36110338,36175873,36241409,36306946,36372483,36438017,36503553,36569090,36634625,36700162,36765699,36831233,36896769,36962305,37093377,37158913,37289985,37421057,37486593,37617665,37683201,37748740,37814279,37879809,37945345,38010882,38076417,38141953,38207490,38273027,38338564,38404097,38469633,38535170,38600705,38666241,38731778,38797313,38862849,38928386,38993921,39059457,39124994,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40108033,40239105,40304641,40370177,40435713,40501249,40566786,40632321,40697857,40763394,40828931,40894465,40960001,41025537,41091074,41156609,41287681,41353218,41484290,41549825,41615362,41811969,41877505,41943042,42139649,42205186,42270722,42401794,42598401,42663937,42795011,42926081,42991617,43057153,43122691,43188225,43253761,43319298,43384834,43450369,43515905,43581442,43646978,43712513,43778049,43843586,43909122,43974657,44040195,44105730,44171267,44236801,44302337,44367874,44433410,44630018,44761090,44826627,44957697,45023234,45088775,45219842,45350926,45481988,45613059,45744129,45875202,46006273,46137346,46202887,46268417,46333959,46530561,46661634,46792706,46923777,47054849,47185921,47316994,47644673,47775746,47906818,47972359,48103426,48234499,48365569,48496641,48627713,48758785,48824322,48955393,49086466,49152003,49217540,49414145,49545217,49610759,49741826,49872897,50069506,50135043,50200580,50266119,50331650,50397185,50462722,50528257,50659331,50724868,50790407,51118082,51183619,51249156,51380229,51511297,51576834,51642370,51707907,51838979,51970052,52101122,52232193,52363265,52428807,52625412,52690949,52822018,52887555,53018626,53084163,53149703,53280775,53411841,53477383,53673985,53739521,53870593,53936130,54001667,54067204,54132741,54263810,54329347,54394883,54525954,54657025,54788097,54919169,54984711,55181313,55246850,55312386,55377921,55443458,55508993,55574530,55640065,55705601,55771137,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475074,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965443,60030978,60096513,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028675,64094209,64159745,64225281,64290817,64421889,64487426,64552963,64618497,64684033,64749569,64815105,64946177,65077255,65142786,65208323,65273859,65339394,65404931,65536004,65601541,65667073,65732610,65798145,65863682,65929217,65994754,66060289,66256897,66322433,66387971,66453505,66650113,66715650,66977794,67305473,67371010,67436545,67502083,67567618,67633153,67764225,67829761,67895297,68026369,68091905,68157442,68222977,68288513,68616193,68681729,68747266,68812801,68943874,69074945,69402627,77201409,77266945,77332481,77398017,77463553,77529091,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162882,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832898,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881474,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337928,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744322,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771330,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637954,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058178,155123716,155189253,155254788,155320324,155385860,155451396,155516932,155582465,155648006,155713540,155779076,155844612,155910148,155975684,156041220,156106756,156172292,156237828,156303364,156368900,156434436,156499972,156565508,156631044,156696580,156762116,156827652,156893188,156958724,157024260,157089796,157155332,157220868,157286404,157351940,157417476,157483012,157548548,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400514,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055873,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645700,159711236,159776773,159842308,159907844,159973380,160038916,160104452,160169988,160235524,160301060,160366596,160432132,160497668,160563204,160628740,160694276,160759812,160825348,160890884,160956420,161021956,161087492,161153028,161218564,161284100,161349636,161415172,161480708,161546244,161611780,161677318,161742854,161808388,161873924,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708931,163774467,163840003,163905539,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560897,164626435,164691972,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903233,167968769,168034308,168099844,168165380,168230916,168296453,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131460,170196996,170262532,170328068,170393604,170459140,170524676,170590212,170655748,170721284,170786820,170852356,170917892,170983428,171048964,171114500,171180036,171245572,171311108,171376644,171442180,171507716,171573252,171638788,171704324,171769860,171835396,171900932,171966469,172032004,172097540,172163076,172228612,172294148,172359684,172425220,172490756,172556292,172621828,172687364,172752900,172818436,172883972,172949508,173015045,173080580,173146116,173211652,173277188,173342724,173408260,173473796,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063620,174129157,174194692,174260228,174325764,174391299,174456835,174522371,174587907,174653443,174718978,174784515,174850051,174915587,174981123,175046660,175112195,175177732,175243268,175308803,175374339,175439875,175505411,175570947,175636483,175702019,175767555,175833092,175898627,175964163,176029699,176095235,176160771,176226307,176291843,176357379,176422915,176488451,176553987,176619523,176685059,176750595,176816131,176881667,176947203,177012739,177078275,177143811,177209347,177274884,177340420,177405956,177471492,177537028,177602564,177668100,177733636,177799172,177864708,177930244,177995780,178061315,178126851,178192388,178257923,178323459,178388995,178454531,178520067,178585603,178651139,178716675,178782212,178847748,178913284],"top":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,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,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,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155058177,155123715,155189250,155254788,155320324,155385860,155451394,155516931,155648003,155713539,155779074,155844612,155910146,155975682,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827650,156893187,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876226,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400513,158466052,158531588,158597122,158662659,158728195,158793731,158859266,158924803,158990338,159121411,159186947,159252483,159318019,159383555,159449091,159514627,159580163,159645699,159711235,159776772,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563203,160628739,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939459,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922500,162988035,163053571,163119107,163184643,163250180,163315715,163381251,163446787,163512323,163577859,163643395,164691972,166002692,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146116,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174718978,175046661,175177732,175243266,175833091,177274883,177340419,177405955,177471492,177537028,177602564,177668100,177733636,177799172,177864708,177930244,177995779,178192388,178782211,178847747,178913282],"triggered":[786491,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,2293761,2686977,2818049,3014657,3145729,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4980737,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5832705,5898241,5963777,6029313,6094849,6225921,6291457,69468229,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182338,167247873,167313409,167837697,168165377,168951809,169148417,169213953,169279489,169345025,169410561,169541633,169672705,169738241,169803777,169869313,170065921,170131457,170196993,170262529,170459137,170524673,170655745,170721281,170852353,171245569,171311105,171376641,171442177,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172163073,172228609,172294145,172425217,172490753,172556289,172687361,172752897,172883969,172949505,173015041,173146113,173211649,173604865,173670401,173735937,173867009,173932545,173998081,174063617,174260225,174325761,175046715],"torn":[786433,2359297,175046657],"talking":[786434,2621441,3866625,69074945,69468162,86114306,119865346,155385857,167116802,170655745,170721281,175046658],"two":[786435,3604482,5963777,45547521,45613057,50200577,69468165,73334786,83034113,86835201,89063425,92864513,93323265,110231553,128319489,151519233,159580162,161808385,167182337,167837698,170196995,173998082,175046660],"telephones":[786433,3604481,69468161,170196993,175046657],"turned":[786433,3670017,69468161,170262529,175046657],"talker":[786433,3866625,175046657],"times":[786433,4521985,30932993,30998529,36306945,36372481,69468161,78184449,98107393,156499969,171769857,175046657],"transfer":[786433,5767174,45416449,45481988,73269250,80740355,84869121,88539137,104595457,104660993,104726529,116195329,134414337,159514629,163643393,169672705,175046657],"timeoutexception":[917507,28049411,68026374,69337090,93323266,94306307,150667265,150732801,166002693,175046658,178192394],"transfereventhandler":[5767175,69337089,178257926],"transferevent":[5767169,26345475,63700999,69468161,92667907,149225475,149291011,149356547,149422083,149487619,149553155,149618690,149684226,170328065,173801482,178257925],"thread":[6356993,7995393,13893634,28180483,28246018,34013185,34144257,42860545,42926081,68354050,68485121,68616194,68681730,68747267,68812801,68878337,68943873,69599233,77135875,77660161,94437380,96665601,154861569,154927106,154992641,155058177,155844609,158924802,178847754,178913283],"true":[6422530,8912900,8978433,9043969,27000833,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,31653889,37814273,45023233,47906817,50200577,51576833,51707905,52887553,59965441,64815106,67436545,67502081,69402625,74252289,77529089,78643201,80412673,83034113,83099649,83427329,83558401,84082689,91291649,91422721,91488257,92471297,93323267,94044161,95551489,98762753,102629377,103153665,110231553,110493697,111017988,111738881,112459777,114294785,116523012,142409729,143327233,143589377,148307969,150798337,150929409,150994945,153681921,155648001,155844610,157024257,159186945,160825345,161808385,161873922,162201601,162332673,162856961,172425217,172556289,172621825,173604865,175046660,177471489,177537025,177602561,177668097,177733633,177799170,177864705,177930241],"throw":[6422530,8978433,9043969,155844610],"try":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,93323265,150994945,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046658,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"tostring":[10158081,10223617,10289153,10354689,10420225,10485761,10551298,10616834,10682369,10747905,10813441,10878978,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,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,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872066,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918338,27983874,28049409,28114945,28180481,28246017,29491208,29884424,34406408,49872904,60096518,67633160,67895304,155123713,155189249,155254785,155320321,155385857,155451393,155516930,155648002,155713537,155779073,155844609,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611778,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930242,177995778,178192385,178782209,178847745,178913281],"timeout":[10682379,27000834,30933000,30998536,31195137,31260679,31588361,31653898,33423367,36241409,36306952,36372488,36700161,36765703,37355521,37421061,37552129,37617670,37748742,37814279,41222145,41287685,44630023,50659334,50724872,55312386,64946182,65142785,65273863,65404934,68026369,69140490,69337089,69402628,70057986,70189058,70320134,71368707,71499778,71630849,71696385,72417281,73007105,76677122,77463553,78184451,78315522,78512129,78577665,78643202,79757313,79888385,80347138,83099650,83165188,85000193,90439681,91881475,93323265,93454338,94568449,98107399,98435078,98631685,98697221,99090438,101056517,101253125,102563846,110952454,111214593,111345671,116260866,139788293,144769026,144900097,151126017,152305670,155516929,155713547,156499975,156631045,156893187,156958723,157024261,158203905,158334981,159121414,161873923,161939460,166002690,171573249,173015043,175046659,175833090],"time":[10682376,30932993,30998529,31588354,31653890,31850504,31916040,31981577,32047114,32505863,32571399,32702470,36306945,36372481,37748737,37814273,38141961,38207496,38273033,38338570,39059462,39124998,39518213,69140487,69337090,69402626,70320130,70451204,70713346,71892998,78184449,78643201,78774277,79036418,79233025,80412673,83099649,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590019,85655554,85721092,85786628,85852162,85917698,85983234,86048770,86114307,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832900,90898434,90963970,91029506,91095042,91160578,91226114,91291651,91357187,91422722,91488259,91553794,91619330,91684867,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93323267,93454337,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,98107393,99090433,99287041,99418119,99483649,100007942,100204549,102957057,110952449,118095873,118882305,119013377,119144449,119209985,119668737,136642561,136904705,140967942,142213121,142671873,143458305,150667265,150732801,151519233,152305665,153878529,155713544,156499969,156893185,156958721,157024258,157155340,157417477,157614081,159121410,159186945,161873921,166002689,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592515,166658050,166723588,166789124,166854658,166920194,166985730,167051266,167116803,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966468,172032002,172097538,172163074,172228610,172294146,172359682,172425219,172490755,172556290,172621827,172687362,172752898,172818435,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,175046659,175833089,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,178192385],"timezone":[10682369,32047111,38338567,70451201,71892993,78774274,99483654,155713537,157155331],"tddmodecommand":[13172739,40894468,40960007,69140481,79757315,100990978,101056514,155910145,158203913],"text":[13893633,31719430,31784966,32374790,32440326,37945350,38010886,38862854,38928390,39387142,42795012,42926082,43122689,65601538,69140489,77463553,78577665,78708738,78970882,79167490,94568450,98697217,99221510,99876870,100139015,155516929,156893187,156958723,157089794,157351938,157548550,158924801],"threadclass":[28180483,68354050,68419586,68485122,68550663,68616198,68681734,68747270,69599233,77135879,94437379,154861570,154927106,154992642,178847756],"threadstate":[28180481,68485121,178847745],"threadpool":[28246019,68812803,68878338,68943878,69599233,178913289],"turn":[28246017,68878337,178913281],"throwable":[28770305],"thrown":[28770305,69074947,69337092,155320321,158466049,158531585,164691969,166002689,175177729,178192385],"threads":[34013185,34144257,68943875,69599233,77660161,96665601,155844609,178847745,178913281],"tdd":[40960001,69140482,79757313,101056513,158203908],"totaltype":[45350918,80674817,104267782,159449089],"transfere":[45481985,80740353,104529921,159514625],"tone":[45613062,80805889,104988678,159580161],"triple":[52625409,52690945,75563010,162791426],"threading":[66387972,66715651,68681729,68747265],"threadstart":[68681735,68747271,77135874,178847746],"testvariable":[69140483,156303361,156565505,156696577],"transmission":[69140485,157483010,157548546,158203905],"turns":[69140482,157876225,157941761],"timeouts":[69402625,159121409],"test":[69402625,159383553],"temporarily":[69402625,162332673],"tells":[69402625,163250177],"transfers":[69402625,163643393],"triggerd":[69468161,173080577],"targetsite":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"throws":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"tcp":[77660161,96534529,155844609],"tcpclient":[80281601,102367244,158924801],"typically":[84475905,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,115212289,154075137,163250177,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"timestamp":[85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014851,88080387,88145923,88211459,88276995,88342531,88408067,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997891,89063427,89128963,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91226115,91291651,91357187,91422723,91488259,91553795,91619331,91684867,91750403,91815939,91881475,91947011,92012547,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,136904711,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763],"timestampevents":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,136904705,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"terminated":[85721089,118947841,166723585],"talktime":[85721089,119013381,166723585],"talked":[85721089,119013377,166723585],"talkingto":[86114305,119865349,167116801],"toor":[86114305,119865345,167116801],"transfereeaccountcode":[86441985,86507521,123273222,125566982,167444481,167510017],"transfereecalleridname":[86441985,86507521,123338758,125632518,167444481,167510017],"transfereecalleridnum":[86441985,86507521,123404294,125698054,167444481,167510017],"transfereechannel":[86441985,86507521,123469830,125763590,167444481,167510017],"transfereechannelstate":[86441985,86507521,123535366,125829126,167444481,167510017],"transfereechannelstatedesc":[86441985,86507521,123600902,125894662,167444481,167510017],"transfereeconnectedlinename":[86441985,86507521,123666438,125960198,167444481,167510017],"transfereeconnectedlinenum":[86441985,86507521,123731974,126025734,167444481,167510017],"transfereecontext":[86441985,86507521,123797510,126091270,167444481,167510017],"transfereeexten":[86441985,86507521,123863046,126156806,167444481,167510017],"transfereelanguage":[86441985,86507521,123928582,126222342,167444481,167510017],"transfereepriority":[86441985,86507521,123994118,126287878,167444481,167510017],"transfereeuniqueid":[86441985,86507521,124059654,126353414,167444481,167510017],"transfertargetaccountcode":[86441985,124125190,167444481],"transfertargetcalleridname":[86441985,124190726,167444481],"transfertargetcalleridnum":[86441985,124256262,167444481],"transfertargetchannel":[86441985,124321798,167444481],"transfertargetchannelstate":[86441985,124387334,167444481],"transfertargetchannelstatedesc":[86441985,124452870,167444481],"transfertargetconnectedlinename":[86441985,124518406,167444481],"transfertargetconnectedlinenum":[86441985,124583942,167444481],"transfertargetcontext":[86441985,124649478,167444481],"transfertargetlanguage":[86441985,124715014,167444481],"transfertargetpriority":[86441985,124780550,167444481],"transfertargetuniqueid":[86441985,124846086,167444481],"transfereraccountcode":[86507521,126418950,167510017],"transferercalleridname":[86507521,126484486,167510017],"transferercalleridnum":[86507521,126550022,167510017],"transfererchannel":[86507521,126615558,167510017],"transfererchannelstate":[86507521,126681094,167510017],"transfererchannelstatedesc":[86507521,126746630,167510017],"transfererconnectedlinename":[86507521,126812166,167510017],"transfererconnectedlinenum":[86507521,126877702,167510017],"transferercontext":[86507521,126943238,167510017],"transfererlanguage":[86507521,127008774,167510017],"transfererpriority":[86507521,127074310,167510017],"transfereruniqueid":[86507521,127139846,167510017],"talkingstatus":[87752705,131989510,168886273],"transferred":[88539137,134217729,169672705],"transferrate":[88539137,134414341,169672705],"textual":[88604673,89128961,134545409,136380417,169738241,170262529],"textsupport":[90701825,140509190,171835393],"took":[90832897,140967937,171966465],"total":[91750401,144375810,172883969],"theirlastsr":[92209153,146866182,173342721],"transit":[92274689,147324934,173408257],"targetchannel":[92667905,149291014,173801473],"targetuniqueid":[92667905,149356550,173801473],"transfer2parking":[92667905,149422086,173801473],"transfercontext":[92667905,149487622,173801473],"transferexten":[92667905,149553158,173801473],"transfermethod":[92667905,149618693,173801473],"transfertype":[92667905,149684229,173801473],"throwing":[93323266,150667265,150732801,175046658],"ther":[93323265,150994945,175046657],"threw":[93323265,150994945,175046657],"track":[93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,154206209,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241]} \ No newline at end of file +{"topic":[1],"title":[65537,131073],"topics":[131073],"todo":[131073,262147],"talk":[196609],"thanks":[196609],"type":[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,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,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,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,7929857,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,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10420227,10485763,10551299,10616835,10682371,10747907,10813443,10878979,10944515,11010051,11075587,11141124,11206660,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,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,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,21168131,21233667,21299203,21364739,21430275,21495811,21561345,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937602,23003140,23068675,23199748,23330817,23396354,23527426,23592961,23658497,23724033,23789570,23855105,23920641,23986177,24051713,24117249,24248321,24313858,24379393,24444930,24510465,24576001,24707074,24772611,24838148,24903687,24969218,25034753,25100290,25165827,25231363,25296898,25362435,25427969,25493506,25559043,25624580,25690114,25755651,25821187,25886724,25952258,26148865,26214405,26279944,26345473,26411011,26476545,26542083,26607620,26673157,26738689,26804227,26869761,26935299,27000833,27066371,27131905,27197443,27262978,27328513,27394049,27459585,27525121,27590657,27656193,27721730,27852801,27918339,27983874,28049410,28180481,28246017,28508161,28573700,28639234,28704769,28770307,28835845,28901377,28966914,29032449,29163521,29294593,29425665,29491201,29556738,29622275,29687809,29753346,29818883,29884422,29949953,30015489,30081026,30146561,30212097,30277634,30343169,30408706,30474241,30539779,30605313,30670849,30736386,30801921,30867457,30932994,30998531,31064065,31129601,31195138,31260673,31326210,31391747,31457281,31522817,31588353,31719425,31784961,31916033,32047105,32112641,32243713,32309249,32374788,32440327,32505857,32571393,32636930,32702465,32768001,32833538,32899075,32964612,33030145,33095681,33161218,33226753,33292289,33357826,33423361,33488897,33554434,33619969,33685505,33751042,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34734081,34865153,34930689,34996225,35061761,35127297,35192834,35258369,35323905,35389442,35454979,35520513,35586049,35651585,35717122,35782657,35913729,35979266,36110338,36175873,36241410,36438017,36503553,36569090,36765697,36831234,36896770,37027842,37224449,37289985,37421059,37552129,37617665,37683201,37748739,37814273,37879809,37945346,38010882,38076417,38141953,38207490,38273026,38338561,38404097,38469634,38535170,38600705,38666243,38731778,38797315,38862849,38928385,38993922,39059458,39256066,39387138,39452675,39583745,39649282,39714823,39845890,39976974,40108036,40239107,40370177,40501250,40632321,40763394,40828935,40894465,40960007,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,42401794,42532866,42598407,42729474,42860547,42991617,43122689,43253761,43384833,43450370,43581441,43712514,43778051,43843588,44040193,44171265,44236807,44367874,44498945,44695554,44761091,44826628,44892167,44957698,45023233,45088770,45154305,45285379,45350916,45416455,45744130,45809667,45875204,46006277,46137345,46202882,46268418,46333955,46465027,46596100,46727170,46858241,46989313,47054855,47251460,47316997,47448066,47513603,47644674,47710211,47775751,47906823,48037889,48103431,48300033,48365569,48496641,48562178,48627715,48693252,48758789,48889858,48955395,49020931,49152002,49283073,49414145,49545217,49610759,49807361,49872898,49938434,50003969,50069506,50135041,50200578,50266113,50331649,50397185,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101122,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591491,54657026,54722561,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720259,58785793,58851329,58916865,58982401,59113473,59179010,59244547,59310081,59375617,59441153,59506689,59637761,59768839,59834370,59899907,59965443,60030978,60096515,60227588,60293125,60358657,60424194,60489729,60555266,60620801,60686338,60751873,60948481,61014017,61079555,61145089,61341697,61407234,61669378,61997057,62062594,62128129,62193667,62259202,62324737,62455809,62521345,62586881,62717953,62783489,62849026,62914561,62980097,63307777,63373313,63438850,63504385,63635458,63766529,64094211,71892993,71958529,72024065,72089601,72155137,72220675,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854466,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524482,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095048,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287874,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314882,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574722,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994946,151060484,151126021,151191556,151257092,151322628,151388164,151453700,151519233,151584774,151650308,151715844,151781380,151846916,151912452,151977988,152043524,152109060,152174596,152240132,152305668,152371204,152436740,152502276,152567812,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075140,154140676,154206212,154271748,154337282,154402820,154468356,154533892,154599428,154664964,154730500,154796036,154861572,154927108,154992641,155058180,155123716,155189252,155254788,155320324,155385860,155451396,155516932,155582468,155648004,155713541,155779076,155844612,155910148,155975684,156041220,156106756,156172292,156237828,156303364,156368900,156434436,156499972,156565508,156631044,156696580,156762116,156827652,156893188,156958724,157024260,157089796,157155332,157220868,157286404,157351940,157417476,157483012,157548548,157614086,157679622,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400516,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645699,159711235,159776771,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497665,160563203,160628740,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163840001,163905537,163971076,164036612,164102148,164167684,164233221,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903237,167968772,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017349,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131461,170196996,170262532,170328068,170393603,170459139,170524675,170590211,170655747,170721282,170786819,170852355,170917891,170983427,171048964,171114499,171180036,171245572,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835396,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342724,173408260,173473796,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063620,174129155,174194691,174260228,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850052,174915588,174981124],"top":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,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,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,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,150994945,151060483,151126018,151191556,151257092,151322628,151388162,151453699,151584771,151650307,151715842,151781380,151846914,151912450,151977987,152043523,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698883,152764418,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616387,153681923,153747459,153812994,153878531,153944067,154009603,154075139,154140675,154206211,154271747,154337281,154402820,154468356,154533890,154599427,154664963,154730499,154796034,154861571,154927106,155058179,155123715,155189251,155254787,155320323,155385859,155451395,155516931,155582467,155648003,155713540,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827651,156893187,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859268,158924803,158990339,159055875,159121411,159186948,159252483,159318019,159383555,159449091,159514627,159580163,160628740,161939460,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148420,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170721282,171048964,171180036,171245570,171835395,173342723,173408259,173473795,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063619,174260228,174850051,174915587,174981122],"timeoutexception":[851971,22675459,62717958,64028674,88080386,89063427,146604033,146669569,161939461,171048962,174260234],"thread":[917505,2555905,8454146,22806531,22872066,28639233,28770305,37486593,37552129,63045634,63176705,63307778,63373314,63438851,63504385,63569921,63635457,64290817,71827459,72351745,89194500,91422721,150798337,150863874,150929409,150994945,151781377,154861570,174915594,174981123],"true":[983042,3473412,3538945,3604481,21626881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,26279937,32440321,39649281,42532865,44826625,46202881,46333953,47513601,54591489,59506690,62128129,62193665,64094209,68943873,72220673,73334785,75104257,77725697,77791233,78118913,78249985,78774273,85983233,86441985,87228417,88080387,88801281,90308609,93519873,97386497,97910785,104988673,105250817,105775108,106496001,107216897,109051905,111280132,137953281,139591681,144244737,146735105,146866177,146931713,149618689,151584769,151781378,152961025,155123713,156762113,157745153,157810690,158138369,158269441,158793729,168361985,168820737,169607169,171048964,173539329,173604865,173670401,173735937,173801473,173867010,173932545,173998081],"throw":[983042,3538945,3604481,151781378],"try":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,88080385,146931713,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"tostring":[4718593,4784129,4849665,4915201,4980737,5046273,5111810,5177346,5242881,5308417,5373953,5439490,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,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,11075586,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,17432578,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,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544386,22609922,22675457,22740993,22806529,22872065,24117256,24510472,29032456,44498952,54722566,62324744,62586888,151060481,151126017,151191553,151257089,151322625,151388161,151453698,151584770,151650305,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548546,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063618,174260225,174850049,174915585,174981121],"timeout":[5242891,21626882,25559048,25624584,25821185,25886727,26214409,26279946,28049415,30867457,30933000,30998536,31326209,31391751,31981569,32047109,32178177,32243718,32374790,32440327,35848193,35913733,39256071,45285382,45350920,49938434,59637766,59834369,59965447,60096518,62717953,63832074,64028673,64094212,64749570,64880642,65011718,66060291,66191362,66322433,66387969,67108865,67698689,71368706,72155137,72876035,73007106,73203713,73269249,73334786,74448897,74579969,75038722,77791234,77856772,79691777,85131265,86638595,88080385,88211458,89325569,92864519,93192198,93388805,93454341,93847558,95813637,96010245,97320966,105709574,105971713,106102791,111017986,135331845,140705794,140836865,147062785,148242438,151453697,151650315,152436743,152567813,152829955,152895491,152961029,154140673,154271749,155058182,157810691,157876228,161939458,167510017,169017347,171048963,171835394],"time":[5242888,25559041,25624577,26214402,26279938,26476552,26542088,26607625,26673162,27131911,27197447,27328518,30932993,30998529,32374785,32440321,32768009,32833544,32899081,32964618,33685510,33751046,34144261,63832071,64028674,64094210,65011714,65142788,65404930,66584582,72876033,73334785,73465861,73728002,73924609,75104257,77791233,79757314,79822850,79888386,79953922,80019458,80084994,80150532,80216066,80281603,80347138,80412676,80478212,80543746,80609282,80674818,80740354,80805891,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524484,85590018,85655554,85721090,85786626,85852162,85917698,85983236,86048771,86114307,86179844,86245380,86310916,86376452,86441988,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88080387,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,92864513,93847553,94044161,94175239,94240769,94765062,94961669,97714177,105709569,112459777,112590849,113639425,114425857,114556929,114688001,114753537,115212289,132186113,132448257,136511494,137756673,138215425,139329537,139395073,146604033,146669569,147456001,148242433,149815297,151650312,152436737,152829953,152895489,152961026,153092108,153354245,153550849,155058178,155123713,157810689,161939457,162004994,162070530,162136066,162201602,162267138,162332674,162398212,162463746,162529283,162594818,162660356,162725892,162791426,162856962,162922498,162988034,163053571,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903236,167968770,168034306,168099842,168165378,168230914,168296450,168361988,168427523,168493059,168558596,168624132,168689668,168755204,168820740,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,171048963,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174260225],"timezone":[5242881,26673159,32964615,65142785,66584577,73465858,94240774,151650305,153092099],"tddmodecommand":[7733251,35520516,35586055,63832065,74448899,95748098,95813634,151846913,154140681],"text":[8454145,26345478,26411014,27000838,27066374,32571398,32636934,33488902,33554438,34013190,37421060,37552130,37748737,60293122,63832073,72155137,73269249,73400322,73662466,73859074,89325570,93454337,93978630,94633990,94896135,151453697,152829955,152895491,153026562,153288706,153485318,154861569],"transferevent":[20971523,58392583,64159745,87425027,145162243,145227779,145293315,145358851,145424387,145489923,145555458,145620994,166264833,169803786,174325765],"threadclass":[22806531,63045634,63111170,63176706,63242247,63307782,63373318,63438854,64290817,71827463,89194499,150798338,150863874,150929410,174915596],"threadstate":[22806529,63176705,174915585],"threadpool":[22872067,63504387,63569922,63635462,64290817,174981129],"turn":[22872065,63569921,174981121],"throwable":[23396353],"thrown":[23396353,63766531,64028676,151257089,154402817,154468353,160628737,161939457,171180033,174260225],"times":[25559041,25624577,30932993,30998529,64028673,64159745,72876033,92864513,152436737,167706625,172163073],"threads":[28639233,28770305,63635459,64290817,72351745,91422721,151781377,174915585,174981121],"tdd":[35586049,63832066,74448897,95813633,154140676],"totaltype":[39976966,75366401,99024902,155385857],"transfer":[40042497,40108036,67960834,75431939,79560705,83230721,99352577,99418113,99483649,110952449,129957889,155451397,159580161,165609473],"transfere":[40108033,75431937,99287041,155451393],"two":[40173569,40239105,44826625,64028675,64159749,68026370,77725697,81526785,83755009,87621633,88080385,104988673,123863041,147456001,155516930,157745153,163119105,163774466,166133763,170000386,170917890,171048961,174456833],"tone":[40239110,75497473,99745798,155516929],"triple":[47251457,47316993,70254594,158728194],"threading":[61079556,61407235,63373313,63438849],"threadstart":[63373319,63438855,71827458,174915586],"talking":[63766529,64028674,64159746,80805890,115408898,151322625,161415169,163053570,166592513,166658049,171442177],"testvariable":[63832067,152240129,152502273,152633345],"transmission":[63832069,153419778,153485314,154140673],"turns":[63832066,153812993,153878529],"triggered":[64028731,64159813,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160366593,160432129,161087489,161480705,161742849,161808385,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163774465,164102145,164888577,165085185,165150721,165216257,165281793,165347329,165478401,165609473,165675009,165740545,165806081,166002689,166068225,166133761,166199297,166395905,166461441,166592513,166658049,166789121,167182337,167247873,167313409,167378945,167510017,167575553,167641089,167706625,167772161,167837697,167903233,168099841,168165377,168230913,168361985,168427521,168493057,168624129,168689665,168886273,168951809,169017345,169148417,169213953,169607169,169672705,169738241,169869313,169934849,170000385,170065921,170262529,170328065,170393601,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172621825,172687361,172752897,172818433,172883969,172949505,173080577,173146113,173211649,173277185,174129153,174325761,174391297,174456833,174522369,174587905,174718977,174784513],"torn":[64028673,161153025],"telephones":[64028673,64159745,166133761,170917889],"turned":[64028673,64159745,166199297,170983425],"talker":[64028673,171442177],"transfereventhandler":[64028673,174325765],"timeouts":[64094209,155058177],"test":[64094209,155320321],"temporarily":[64094209,158269441],"tells":[64094209,159186945],"transfers":[64094209,159580161],"triggerd":[64159745,169082881],"targetsite":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"throws":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"tcp":[72351745,91291649,151781377],"tcpclient":[74973185,97124364,154861569],"typically":[79167489,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,109969409,150011905,159186945,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"timestamp":[79757315,79822851,79888387,79953923,80019459,80084995,80150531,80216067,80281603,80347139,80412675,80478211,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82837507,82903043,82968579,83034115,83099651,83165187,83230723,83296259,83361795,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,132448263,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067],"timestampevents":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132448257,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"technology":[80150530,85983234,86114306,86179842,86245378,86310914,86376450,86441986,112525313,113180673,139722753,162398210,168361986,168493058,168558594,168624130,168689666,168755202,168820738],"took":[80150529,85524481,86114305,86179841,86245377,86310913,86376449,112590849,136511489,162398209,167903233,168493057,168558593,168624129,168689665,168755201],"terminated":[80412673,114491393,162660353],"talktime":[80412673,114556933,162660353],"talked":[80412673,114556929,162660353],"talkingto":[80805889,115408901,163053569],"toor":[80805889,115408897,163053569],"transfereeaccountcode":[81133569,81199105,118816774,121110534,163381249,163446785],"transfereecalleridname":[81133569,81199105,118882310,121176070,163381249,163446785],"transfereecalleridnum":[81133569,81199105,118947846,121241606,163381249,163446785],"transfereechannel":[81133569,81199105,119013382,121307142,163381249,163446785],"transfereechannelstate":[81133569,81199105,119078918,121372678,163381249,163446785],"transfereechannelstatedesc":[81133569,81199105,119144454,121438214,163381249,163446785],"transfereeconnectedlinename":[81133569,81199105,119209990,121503750,163381249,163446785],"transfereeconnectedlinenum":[81133569,81199105,119275526,121569286,163381249,163446785],"transfereecontext":[81133569,81199105,119341062,121634822,163381249,163446785],"transfereeexten":[81133569,81199105,119406598,121700358,163381249,163446785],"transfereelanguage":[81133569,81199105,119472134,121765894,163381249,163446785],"transfereepriority":[81133569,81199105,119537670,121831430,163381249,163446785],"transfereeuniqueid":[81133569,81199105,119603206,121896966,163381249,163446785],"transfertargetaccountcode":[81133569,119668742,163381249],"transfertargetcalleridname":[81133569,119734278,163381249],"transfertargetcalleridnum":[81133569,119799814,163381249],"transfertargetchannel":[81133569,119865350,163381249],"transfertargetchannelstate":[81133569,119930886,163381249],"transfertargetchannelstatedesc":[81133569,119996422,163381249],"transfertargetconnectedlinename":[81133569,120061958,163381249],"transfertargetconnectedlinenum":[81133569,120127494,163381249],"transfertargetcontext":[81133569,120193030,163381249],"transfertargetlanguage":[81133569,120258566,163381249],"transfertargetpriority":[81133569,120324102,163381249],"transfertargetuniqueid":[81133569,120389638,163381249],"transfereraccountcode":[81199105,121962502,163446785],"transferercalleridname":[81199105,122028038,163446785],"transferercalleridnum":[81199105,122093574,163446785],"transfererchannel":[81199105,122159110,163446785],"transfererchannelstate":[81199105,122224646,163446785],"transfererchannelstatedesc":[81199105,122290182,163446785],"transfererconnectedlinename":[81199105,122355718,163446785],"transfererconnectedlinenum":[81199105,122421254,163446785],"transferercontext":[81199105,122486790,163446785],"transfererlanguage":[81199105,122552326,163446785],"transfererpriority":[81199105,122617862,163446785],"transfereruniqueid":[81199105,122683398,163446785],"talkingstatus":[82444289,127533062,164823041],"transferred":[83230721,129761281,165609473],"transferrate":[83230721,129957893,165609473],"textual":[83296257,83820545,130088961,131923969,165675009,166199297],"textsupport":[85393409,136052742,167772161],"total":[86507521,140312578,168886273],"theirlastsr":[86966273,142802950,169345025],"transit":[87031809,143261702,169410561],"targetchannel":[87425025,145227782,169803777],"targetuniqueid":[87425025,145293318,169803777],"transfer2parking":[87425025,145358854,169803777],"transfercontext":[87425025,145424390,169803777],"transferexten":[87425025,145489926,169803777],"transfermethod":[87425025,145555461,169803777],"transfertype":[87425025,145620997,169803777],"throwing":[88080386,146604033,146669569,171048962],"ther":[88080385,146931713,171048961],"threw":[88080385,146931713,171048961],"track":[88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,150142977,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081]} \ No newline at end of file diff --git a/docs/fti/FTI_117.json b/docs/fti/FTI_117.json index e5a41fc..5b962ce 100644 --- a/docs/fti/FTI_117.json +++ b/docs/fti/FTI_117.json @@ -1 +1 @@ -{"using":[786434,1376257,1441793,27000834,28114946,64880641,64946177,68091905,68157441,68288513,69074945,69206017,69271553,69402625,69468165,69533697,76611586,77070338,82575362,85000193,109051905,109248513,116260865,155189249,158597121,158859265,159645697,161349634,166002689,166526977,166592513,166920193,166985729,174129153,175046660,177471489,178782211],"usually":[786433,2293761,65536001,65601537,69468161,168165377,175046657],"user":[786439,2359297,2424834,2490369,2555905,2621441,3866625,10682379,27000833,30146561,30212097,30277633,30867459,30932996,30998533,31195139,31260675,31588353,31653889,31784961,31916033,31981569,32047105,32178177,32309249,32440321,32571393,33292290,35127297,35192834,35258370,36700161,36765697,37748737,37814273,38010881,38207489,38273025,38338561,38535169,38731777,38928385,39124993,40763393,40828930,46071809,46137345,46596097,46661633,47251457,47316993,52822017,52887554,65077249,69140484,69402625,69468166,70057990,70189060,70844417,73596930,73728002,74055682,75628546,77266945,77332481,77398017,77791233,78315521,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79691777,79953921,80019457,83099649,84082692,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114306,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701826,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881474,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93388801,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94306305,96862209,98304001,98828289,99155969,99352577,99614721,99680257,99811329,99942401,100794369,110755841,114294786,114360321,114425857,119668737,136708097,139984897,144834565,154009601,155254785,155320321,155385857,155713547,156106753,156499970,156631043,157024257,157089793,157155329,157220865,157286401,157351937,157417473,158138369,158466049,158531585,159842306,160104450,160432130,161873921,162856967,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116802,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655746,170721282,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015042,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129157,174194689,174260225,174325761,175046664,175177729,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,178192385],"unpaused":[786433,5177345,69468162,172556289,172621825,175046657],"unhandledevent":[786434,5832710,93323266,150798338,175046660],"unknown":[786433,5832705,10551297,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,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673153,26738690,26804226,26869762,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,29294593,41549825,57475073,59965441,60030977,67502081,67567617,69468161,85065729,85131265,85196803,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604675,88670209,88735745,88801281,88866817,88932355,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177539,90243073,90308611,90374145,90439681,90505217,90570753,90636289,90701826,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881475,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,116654081,116785153,136118273,136183809,136511489,140443649,144572418,153812993,155516929,166068227,166133763,166199301,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903233,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738245,169803779,169869315,169934851,170000387,170065925,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311109,171376643,171442181,171507715,171573251,171638787,171704323,171769859,171835396,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015045,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932548,173998083,174063619,174129154,174194691,174260227,174325763,175046657,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243],"unhold":[786433,5898245,175046657],"unholdevent":[786433,5898242,26411011,63766535,69468162,92733443,169869313,170328065,173867018,175046657,178323461],"unlink":[786433,5963781,69468162,86835201,89063425,92864513,128319489,167837699,170196993,173998081,175046657],"unlinkevent":[786433,5963778,26542083,63897607,69468163,92864515,167837698,173998090,175046657,178388997],"unparkedcall":[786433,6029317,175046657],"unparkedcallevent":[786433,6029314,26607619,63963143,69468162,92930051,149749762,166395905,174063626,175046657,178454533],"userevents":[786433,6094853,175046657],"userevent":[786433,6094850,26673155,64028678,64094215,69468168,92995587,149815299,170328065,174129168,175046657,178520069],"unholdeventhandler":[5898247,69337089,178323462],"unlinkeventhandler":[5963783,69337089,178388998],"unparkedcalleventhandler":[6029319,69337089,178454534],"usereventhandler":[6094855,69337089,178520070],"updateconfigaction":[6619139,9371651,9437187,9502723,9568259,9633795,9699331,18153475,53739524,53805059,53870596,53936133,54001670,54067207,54132738,54198279,54263817,54329354,54394890,69402626,75890690,75956234,84475907,115146754,115212290,115277826,115343362,115408898,161742849,163250192],"useasyncevents":[6750209,9895941,175046657],"usage":[10551297,29425666,41484295,79953921,101384197,155516929,158466050],"updates":[10682369,28114945,30605313,68222977,69140481,69402625,155713537,156368897,160956417,178782209],"unlike":[10682369,31064065,69140481,69402625,70123521,155713537,156565505,163250177],"understands":[10682369,31064065,69140481,70123521,155713537,156565505],"unblocked":[13893633,42860545,158924801],"update":[18153473,28114945,30605314,54132738,68222982,69402625,75890689,84475905,115343361,163250179,178782209],"unaffected":[18153473,54132737,75890689,163250177],"unknownevent":[26476547,63832071,69468162,92798979,170328065,173932554],"util":[28114945,28180481,28246017,68091906,68157442,68222978,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812803,68878338,68943874,69599234,77070337,77135873,94371841,94437377,154796034,154861570,154927106,154992642,178782211,178847747,178913283],"unless":[28180481,68419585,178847745],"unit":[28508162,28639233,28835841,28966913,29032449,29229057,29294593,29360129,29425665,29491202,29556737,29753345,29884418,30015490,30343169,30408705,30474241,30605313,30801921,31391746,31457282,31522817,31719425,31850497,32112641,32243713,32374785,32505857,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161218,33226753,33357825,33488897,33554433,33685506,33751042,33816577,34275329,34406402,34471937,34537474,34603009,34668546,34734081,34865154,34930689,34996225,35323906,35520514,35717122,35848194,35979266,36175874,36438018,36634626,36831234,36962306,37027841,37158914,37224449,37289986,37355521,37486594,37552129,37683202,37879810,38076418,38404098,38600706,38797314,38993922,39190530,39321602,39452674,39583746,39714818,39845890,39976962,40042497,40108034,40173569,40304642,40501250,40632322,40894466,41025538,41156610,41222145,41418754,41680900,41746433,42008580,42074113,42270721,42336257,42467332,42532865,42663937,42729474,42860546,42926081,42991617,43057153,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44892161,45088770,45154305,45285377,45416449,45547521,45678593,45809665,45940737,46071809,46202882,46333954,46399489,46465025,46596097,46727169,46858241,46989313,47120385,47251457,47382529,47448065,47513601,47579137,47710209,47841281,47972354,48037889,48168961,48300033,48431105,48496642,48562177,48693249,48889857,49020929,49283073,49348609,49479681,49610753,49676289,49741825,49807361,49872898,49938433,50003969,50266114,50397186,50462721,50528258,50593793,50790402,50855937,50921473,50987009,51052545,51314689,51445761,51773441,51904513,52035585,52166657,52297729,52428802,52494337,52559873,52756481,52953089,53149698,53215233,53280770,53346305,53477378,53542913,53608449,53739522,53805058,53870593,53936129,54001665,54067201,54132737,54198273,54460417,54591489,54722561,54853633,54984706,55050241,55115777,55508994,55574529,55640066,55836673,59179009,60096514,60162049,64356354,64421889,64618497,64684033,64749569,64815105,64880642,64946177,65011714,65077249,65470465,65929217,65994753,66060289,66125825,66191364,66256897,66322434,66453505,66519041,66584580,66650114,66781185,66846721,66912257,67043329,67108865,67174401,67239937,67436545,67633154,67698689,67829761,67895298,67960833,68091905,68222977,68354050,68419588,68485122,68550657,68812801,68878338,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164626433,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,174391297,174456833,174522369,174587905,174653441,174784513,174850049,174915585,174981121,175112193,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,178061313,178126849,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673],"unpause":[30277633,34996225,35258369,77791233,97124353,156106753],"universal":[31850497,31916033,31981569,32047105,38141953,38207489,38273025,38338561,69140481,71892993,78774273,99418113,157155330,157417473],"utc":[31850497,31916033,31981569,32047106,38141953,38207489,38273025,38338562,69140481,71892993,78774273,99418113,157155330,157417473],"uses":[35061761,35127297,35192833,35258369,71106564,91881473,144769025,156106756,173015041],"unitamount":[45350918,80674817,104333318,159449089],"unittype":[45350918,80674817,104398854,159449089],"users":[46268417,69402625,159907842],"used":[46858241,46923777,47579137,47644673,49152001,49217537,69206017,69402626,69599233,73859074,74121218,82575361,83099649,84475905,90832897,91881476,93323265,93454337,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,103153665,109051905,110297089,115212289,140836865,144703489,144769025,144834561,144900097,151519233,151781377,154206209,155582465,158597121,159121409,160235522,160694274,161349633,161873921,162070529,163250177,171966465,173015044,175046657,175833089,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,178847745],"unlocks":[47120385,47185921,73990146,160366594],"unmutes":[47251457,47316993,74055682,160432130],"updateconfig":[47579137,47644673,69402625,74121218,160694274,163250177],"username":[49086470,49152006,49217542,65536006,65601542,69337089,82575362,90832897,91881477,93323267,109314054,140836865,144834561,144900104,151650311,161349634,164691969,171966465,173015045,175046659],"unread":[49414145,69402625,74776577,161480706],"uniqueid":[51380230,69468162,77529089,83492865,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,96403461,112263174,136970245,154206213,154730502,155648001,162267137,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129154,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777],"unavailable":[51511298,51576834,51642370,51707906,75169796,83558403,112394241,112459777,112525313,162332679],"unavailbale":[51576833,51707905,83558401,112459777,162332673],"unvailable":[51642369,51707905],"userfield":[52822022,52887558,84082689,87031809,114425861,130351110,162856961,168165377],"updated":[57475073,60030977,67567617,91488257,143458305,172621825],"usereventclass":[65077254,174129153],"unsigned":[68222977],"underlying":[69009409,158990337],"usally":[69074945,155385857],"url":[69074945,69206017,77529089,96206849,155648001,158662657,158793729],"useful":[69206017,158597121],"unsuccessful":[69402625,161349633],"unavailabe":[69402625,162332673],"ugly":[69533698,177668098],"unqiue":[77529089,96403458,155648001],"unique":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014851,88080387,88145923,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670211,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,132710401,132972545,134742017,134807553,136970241,154206210,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148419,169213955,169279491,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803779,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"usernum":[85327873,89260033,89325569,89391105,89456641,89522177,89587713,89653249,117309446,166330369,170393601,170459137,170524673,170590209,170655745,170721281,170786817],"unlinked":[86835201,89063425,92864513,128319489,167837697,170196993,173998081],"uniqueid1":[86835201,88670209,89063425,92864513,128843782,134742021,167837697,169803777,170196993,173998081],"uniqueid2":[86835201,88670209,89063425,92864513,128909318,134807557,167837697,169803777,170196993,173998081],"usercount":[87097345,130678790,168230913],"unreachable":[90701825,90832898,91881473,140443649,140902401,140967937,144769025,171835393,171966466,173015041],"unmonitored":[90701825,140443649,171835393],"unregistration":[90832897,140705794,171966465],"unregistered":[90832899,91881473,140705794,140902401,144769025,171966467,173015041],"unlimited":[91750401,144179201,172883969],"uncleanly":[92471297,148439041,173604865],"unclean":[92471297,148439041,173604865],"usereventname":[92995585,149815302,174129153],"unassigned":[93323265,150798337,175046657],"unassgned":[93323265,150798337,175046657],"unable":[155582467],"understood":[155582465],"unknnown":[167968769]} \ No newline at end of file +{"updateconfigaction":[1179651,3932163,3997699,4063235,4128771,4194307,4259843,12713987,48365572,48431107,48496644,48562181,48627718,48693255,48758786,48824327,48889865,48955402,49020938,64094210,70582274,70647818,79167491,109903874,109969410,110034946,110100482,110166018,157679617,159186960],"useasyncevents":[1310721,4456453,171048961],"unknown":[5111809,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,21299201,21364738,21430274,21495810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23920641,36175873,52101121,54591489,54657025,62193665,62259201,64028673,64159745,79757313,79822849,79888387,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296259,83361793,83427329,83492865,83558401,83623939,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869123,84934657,85000195,85065729,85131265,85196801,85262337,85327873,85393410,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638595,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,111411201,111542273,131661825,131727361,132055041,135987201,140509186,149749761,151453697,162004995,162070531,162136069,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163840001,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675013,165740547,165806083,165871619,165937155,166002693,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247877,167313411,167378949,167444483,167510019,167575555,167641091,167706627,167772164,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017349,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934852,170000387,170065923,170131458,170196995,170262531,170328067,171114497,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"usage":[5111809,24051714,36110343,74645505,96141317,151453697,154402818],"updates":[5242881,22740993,25231361,62914561,63832065,64094209,151650305,152305665,156893185,174850049],"user":[5242891,21626881,24772609,24838145,24903681,25493507,25559044,25624581,25821187,25886723,26214401,26279937,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918338,29753345,29818882,29884418,31326209,31391745,32374785,32440321,32636929,32833537,32899073,32964609,33161217,33357825,33554433,33751041,35389441,35454978,40697857,40763393,41222145,41287681,41877505,41943041,47448065,47513602,59768833,63832068,64028679,64094209,64159750,64749574,64880644,65536001,68288514,68419586,68747266,70320130,71958529,72024065,72089601,72482817,73007105,73334785,73400321,73465857,73531393,73596929,73662465,73728001,74383361,74645505,74711041,77791233,78774276,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805890,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393410,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88145921,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,91619329,93061121,93585409,93913089,94109697,94371841,94437377,94568449,94699521,95551489,105512961,109051906,109117441,109182977,115212289,132251649,135528449,140771333,149946369,151191553,151257089,151322625,151650315,152043521,152436738,152567811,152961025,153026561,153092097,153157633,153223169,153288705,153354241,154075137,154402817,154468353,155779074,156041218,156368898,157810689,158793735,160628737,161153025,161218562,161284097,161349633,161415169,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053570,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592514,166658050,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772162,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131461,170196993,170262529,170328065,171048961,171180033,171442177,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174260225],"unlike":[5242881,25690113,63832065,64094209,64815105,151650305,152502273,159186945],"understands":[5242881,25690113,63832065,64815105,151650305,152502273],"unblocked":[8454145,37486593,154861569],"update":[12713985,22740993,25231362,48758786,62914566,64094209,70582273,79167489,110100481,159186947,174850049],"unaffected":[12713985,48758785,70582273,159186945],"unholdevent":[21037059,58458119,64028673,64159746,87490563,165806081,166264833,169869322,174391302],"unknownevent":[21102595,58523655,64159746,87556099,166264833,169934858],"unlinkevent":[21168131,58589191,64028673,64159747,87621635,163774466,170000394,174456838],"unparkedcallevent":[21233667,58654727,64028673,64159746,87687171,145686530,162332673,170065930,174522374],"userevent":[21299203,58720262,58785799,64028673,64159752,87752707,145752067,166264833,170131472,174587910],"using":[21626882,22740994,59572225,59637761,62783489,62849025,62980097,63766529,63897601,63963137,64028674,64094209,64159749,64225281,71303170,71761922,77266946,79691777,103809025,104005633,111017985,151126017,154533889,154796033,155582465,157286402,160038913,160104449,161939457,162463745,162529281,162856961,162922497,170131457,171048962,173539329,174850051],"util":[22740993,22806529,22872065,62783490,62849026,62914562,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504387,63569922,63635458,64290818,71761921,71827457,89128961,89194497,150732802,150798338,150863874,150929410,174850051,174915587,174981123],"unless":[22806529,63111169,174915585],"unit":[23134210,23265281,23461889,23592961,23658497,23855105,23920641,23986177,24051713,24117250,24182785,24379393,24510466,24641538,24969217,25034753,25100289,25231361,25427969,26017794,26083330,26148865,26345473,26476545,26738689,26869761,27000833,27131905,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787266,27852801,27983873,28114945,28180481,28311554,28377090,28442625,28901377,29032450,29097985,29163522,29229057,29294594,29360129,29491202,29556737,29622273,29949954,30146562,30343170,30474242,30605314,30801922,31064066,31260674,31457282,31588354,31653889,31784962,31850497,31916034,31981569,32112642,32178177,32309250,32505858,32702466,33030146,33226754,33423362,33619970,33816578,33947650,34078722,34209794,34340866,34471938,34603010,34668545,34734082,34799617,34930690,35127298,35258370,35520514,35651586,35782658,35848193,36044802,36306948,36372481,36634628,36700161,36896769,36962305,37093380,37158913,37289985,37355522,37486594,37552129,37617665,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39321601,39518209,39714818,39780353,39911425,40042497,40173569,40304641,40435713,40566785,40697857,40828930,40960002,41025537,41091073,41222145,41353217,41484289,41615361,41746433,41877505,42008577,42074113,42139649,42205185,42336257,42467329,42598402,42663937,42795009,42926081,43057153,43122690,43188225,43319297,43515905,43646977,43909121,43974657,44105729,44236801,44302337,44367873,44433409,44498946,44564481,44630017,44892162,45023234,45088769,45154306,45219841,45416450,45481985,45547521,45613057,45678593,45940737,46071809,46399489,46530561,46661633,46792705,46923777,47054850,47120385,47185921,47382529,47579137,47775746,47841281,47906818,47972353,48103426,48168961,48234497,48365570,48431106,48496641,48562177,48627713,48693249,48758785,48824321,49086465,49217537,49348609,49479681,49610754,49676289,49741825,50135042,50200577,50266114,50462721,53805057,54722562,54788097,59047938,59113473,59310081,59375617,59441153,59506689,59572226,59637761,59703298,59768833,60162049,60620801,60686337,60751873,60817409,60882948,60948481,61014018,61145089,61210625,61276164,61341698,61472769,61538305,61603841,61734913,61800449,61865985,61931521,62128129,62324738,62390273,62521345,62586882,62652417,62783489,62914561,63045634,63111172,63176706,63242241,63504385,63569922,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"unpause":[24903681,29622273,29884417,72482817,91881473,152043521],"universal":[26476545,26542081,26607617,26673153,32768001,32833537,32899073,32964609,63832065,66584577,73465857,94175233,153092098,153354241],"utc":[26476545,26542081,26607617,26673154,32768001,32833537,32899073,32964610,63832065,66584577,73465857,80150529,86114305,86179841,86245377,86310913,86376449,94175233,112590849,153092098,153354241,162398209,168493057,168558593,168624129,168689665,168755201],"uses":[29687809,29753345,29818881,29884417,65798148,86638593,140705793,152043524,169017345],"unitamount":[39976966,75366401,99090438,155385857],"unittype":[39976966,75366401,99155974,155385857],"users":[40894465,64094209,155844610],"used":[41484289,41549825,42205185,42270721,43778049,43843585,63897601,64094210,64290817,68550658,68812802,77266945,77791233,79167489,85524481,86638596,88080385,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,97910785,103809025,105054209,109969409,136380417,140640257,140705793,140771329,140836865,147456001,147718145,150142977,151519233,154533889,155058177,156172290,156631042,157286401,157810689,158007297,159186945,167903233,169017348,171048961,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174915585],"unlocks":[41746433,41811969,68681730,156303362],"unmutes":[41877505,41943041,68747266,156368898],"updateconfig":[42205185,42270721,64094209,68812802,156631042,159186945],"username":[43712518,43778054,43843590,60227590,60293126,64028673,77266946,85524481,86638597,88080387,104071174,136380417,140771329,140836872,147587079,157286402,160628737,167903233,169017349,171048963],"unread":[44040193,64094209,69468161,157417474],"uniqueid":[46006278,64159746,72220673,78184449,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,91160581,107020294,132513797,150142981,150667270,151584769,158203905,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617],"unavailable":[46137346,46202882,46268418,46333954,69861380,78249987,107151361,107216897,107282433,158269447],"unavailbale":[46202881,46333953,78249985,107216897,158269441],"unvailable":[46268417,46333953],"userfield":[47448070,47513606,78774273,81723393,109182981,125894662,158793729,164102145],"updated":[52101121,54657025,62259201,80150529,85983233,86179841,86245377,86310913,86376449,86441985,112459777,139329537,162398209,168361985,168558593,168624129,168689665,168755201,168820737],"usereventclass":[59768838,170131457],"usually":[60227585,60293121,64028673,64159745,161087489,164102145],"unsigned":[62914561],"underlying":[63700993,154927105],"usally":[63766529,151322625],"url":[63766529,63897601,72220673,90963969,151584769,154599425,154730497],"useful":[63897601,154533889],"unhandledevent":[64028673,88080386,146735106,171048962,171114497],"unpaused":[64028674,64159746,168493057,168558593,172818433,172883969],"unholdeventhandler":[64028673,174391301],"unlinkeventhandler":[64028673,174456837],"unparkedcalleventhandler":[64028673,174522373],"usereventhandler":[64028673,174587909],"unsuccessful":[64094209,157286401],"unavailabe":[64094209,158269441],"unlink":[64159746,81526785,83755009,87621633,123863041,163774467,166133761,170000385],"ugly":[64225282,173735938],"unqiue":[72220673,91160578,151584769],"unique":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706435,82771971,82837507,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361795,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,128253953,128516097,130285569,130351105,132513793,150142978,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085187,165150723,165216259,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740547,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"usernum":[80019457,83951617,84017153,84082689,84148225,84213761,84279297,84344833,112066566,162267137,166330369,166395905,166461441,166526977,166592513,166658049,166723585],"unlinked":[81526785,83755009,87621633,123863041,163774465,166133761,170000385],"uniqueid1":[81526785,83361793,83755009,87621633,124387334,130285573,163774465,165740545,166133761,170000385],"uniqueid2":[81526785,83361793,83755009,87621633,124452870,130351109,163774465,165740545,166133761,170000385],"usercount":[81788929,126222342,164167681],"unreachable":[85393409,85524482,86638593,135987201,136445953,136511489,140705793,167772161,167903234,169017345],"unmonitored":[85393409,135987201,167772161],"unregistration":[85524481,136249346,167903233],"unregistered":[85524483,86638593,136249346,136445953,140705793,167903235,169017345],"unlimited":[86507521,140115969,168886273],"uncleanly":[87228417,144375809,169607169],"unclean":[87228417,144375809,169607169],"usereventname":[87752705,145752070,170131457],"unassigned":[88080385,146735105,171048961],"unassgned":[88080385,146735105,171048961],"unable":[151519235],"understood":[151519233],"unknnown":[163905537]} \ No newline at end of file diff --git a/docs/fti/FTI_118.json b/docs/fti/FTI_118.json index f71fd39..3421bc9 100644 --- a/docs/fti/FTI_118.json +++ b/docs/fti/FTI_118.json @@ -1 +1 @@ -{"version":[131076,196610,262148,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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,87818241,93323265,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055042,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715847,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951810,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046658,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281],"various":[131073],"voice":[786435,3604482,5963777,45875201,50069506,50135043,50200580,69468164,74907651,80936961,83034115,105316353,110100481,110166017,110231553,159711233,161808390,167837697,170196994,173998081,175046659],"voicemail":[786433,3932161,69468161,170852353,175046657],"varset":[786433,6160389,175046657],"variable":[786433,6160385,6553602,9175041,9240577,10682373,16777220,18743300,18808836,19333124,19398660,19464196,19529732,22216708,27197444,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,31064068,31129603,31326211,33095682,36503558,36569094,36896774,48758791,48824327,50331650,50462722,53018631,53084168,54001670,54067206,54132742,55443458,55574530,65863682,65994754,67371010,69140489,69402627,70123523,74579970,75694082,77463553,78249986,78381057,79626242,82444292,83099651,84148226,85065729,85131265,85655553,85721089,85786625,85852161,88539137,93061123,94568449,98238470,98500614,100728838,108724226,108789766,111017991,114688006,116523013,150142977,150208518,155516929,155713541,156303361,156565510,156696580,158072835,161218567,161873927,162922503,163250177,166068229,166133765,166658053,166723589,166789125,166854661,169672709,174194691,175046657,175833092,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"void":[983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,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,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,28508162,30015490,30343170,30408706,30474242,30605314,31391746,31457282,31522818,31719426,31850498,32112642,32243714,32374786,32505858,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33357826,33554434,33685506,33751042,34930690,34996226,41418754,41680898,42008578,42270722,42467330,42729474,42860546,42991618,43057154,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,44105730,44171266,44236802,44302338,44367874,44433410,50462722,50528258,53805058,53870594,53936130,54001666,54067202,54132738,55574530,55640066,64356354,64421890,64880642,64946178,65011714,65077250,65994754,66060290,66191362,66256898,66322434,66453506,66584578,66650114,68222978,68354050,68419586,68485122,68812802,68878338,95748097,95813633,96010241,96075777,96534529,96600065,96665601,96731137,96796673,96862209,96927745,97058817,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,101056513,101122049,101187585,101253121,101449729,101515265,101580801,101646337,101711873,101777409,101908481,102498305,102563841,102629377,102760449,102825985,102891521,102957057,103088129,103153665,103350273,103415809,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104529921,104595457,104660993,104726529,104857601,104923137,104988673,105119745,105250817,105316353,105447425,105578497,105644033,105775105,105971713,106102785,106168321,106299393,106364929,106496001,106627073,106758145,106889217,106954753,107282433,107413505,107479041,107610113,107675649,107806721,107872257,108003329,108068865,108134401,108265473,108396545,108462081,108593153,108724225,108789761,108920833,109051905,109117441,109182977,109248513,109314049,109510657,109641729,109772801,109838337,109903873,110034945,110100481,110166017,110231553,110297089,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111149057,111214593,111280129,111345665,111607809,111673345,111738881,111804417,111869953,112001025,112066561,112132097,112197633,112263169,112394241,112459777,112525313,112656385,112721921,112787457,112918529,112984065,113049601,113115137,113246209,113311745,113442817,113573889,113704961,113770497,113901569,113967105,114032641,114098177,114163713,114294785,114360321,114425857,114556929,114622465,114688001,114884609,115081217,115277825,115343361,115408897,115539969,115605505,115736577,115867649,115998721,116195329,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150536193,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152436737,152567809,152698881,152829953,152961025,153026561,153092097,153157633,153223169,153288705,153419777,153485313,153550849,153616385,153681921,153747457,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154533889,154599425,154664961,154730497,154927105,154992641,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164626434,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,174391298,174456834,174522370,174587906,174653442,174784514,174850050,174915586,174981122,175112194,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175898626,175964162,176029698,176095234,176160770,176226306,176291842,176357378,176422914,176488450,176553986,176619522,176685058,176750594,176816130,176881666,176947202,177012738,177078274,177143810,177209346,178061314,178126850,178257922,178323458,178388994,178454530,178520066,178585602,178651138,178716674],"value":[983043,1048579,1114115,1179651,1245187,1310723,1376259,1441795,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,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456451,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6553601,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,9306114,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10682378,18153473,27459586,27525122,27590658,27656195,27721730,27787266,27852802,27918338,28311553,28966913,29032449,29163522,29229057,29294593,29360129,29425665,29491201,29687809,29753345,29818881,29884417,30081026,30146562,30212098,30277634,30539777,30605319,30670849,30736385,30801921,30867457,30932994,30998530,31064067,31129603,31195137,31260673,31326211,31588353,31653889,31784961,31916033,31981569,32047105,32178177,32309249,32440321,32571393,33095683,33292289,33423361,34275329,34340865,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35913734,35979265,36175873,36306945,36372481,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40566790,40632321,40894465,41025537,41156609,41353217,41615361,41943041,42205185,42401793,42663937,42926081,43974657,44040193,45088769,46202881,46333953,47775745,47972353,48103425,48234498,48496641,49610753,49741825,49872897,50266113,50331649,50397185,50462726,50790401,52428801,52822018,52887555,53018631,53084167,53149697,53280769,53477377,53739521,54067206,54132743,54984705,55443457,55508993,57475073,59965450,60030977,60096513,64028680,64487425,64552961,64618497,64684033,64749569,64815105,65142785,65208321,65273857,65339393,65404929,65863681,65929217,65994758,66977794,67371012,67436545,67502090,67567617,67633153,67829761,67895297,68091905,68157441,69074945,69140497,69206017,69402631,69468161,69861380,70123522,74186753,74317825,74383361,75628546,75694082,75890689,77266946,77332482,77398018,77463553,78053378,78184449,79626242,79953922,80019458,82182145,83099650,84082691,84148226,84475905,84934658,85000194,87949313,91291649,91357185,91684865,93061122,93323265,93388802,93454337,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94306306,94371841,94437378,94502913,94568450,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748098,95813634,95879169,95944705,96010242,96075778,96141313,96206849,96272385,96337921,96403457,96468993,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993281,97058818,97124353,97189889,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779720,97845250,97910786,97976322,98041858,98107395,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663304,100728834,100794370,100859906,100925442,100990977,101056514,101122050,101187586,101253122,101318657,101384193,101449730,101515266,101580802,101646338,101711874,101777410,101842945,101908482,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498306,102563842,102629378,102694913,102760450,102825986,102891522,102957058,103022593,103088130,103153666,103219201,103284737,103350274,103415810,103481345,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464385,104529922,104595458,104660994,104726530,104792065,104857602,104923138,104988674,105054209,105119746,105185281,105250818,105316354,105381889,105447426,105512961,105578498,105644034,105709569,105775106,105840641,105906177,105971714,106037249,106102786,106168322,106233857,106299394,106364930,106430465,106496002,106561537,106627074,106692609,106758146,106823681,106889218,106954754,107020289,107085825,107151361,107216897,107282434,107347969,107413506,107479042,107544577,107610114,107675650,107741185,107806722,107872258,107937793,108003330,108068866,108134403,108199937,108265474,108331009,108396546,108462082,108527617,108593154,108658689,108724226,108789762,108855297,108920834,108986369,109051906,109117442,109182978,109248514,109314050,109379585,109445121,109510658,109576193,109641730,109707265,109772802,109838338,109903874,109969409,110034946,110100482,110166018,110231554,110297090,110362625,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952451,111017987,111083521,111149058,111214594,111280130,111345666,111411201,111476737,111542273,111607810,111673346,111738882,111804418,111869954,111935489,112001026,112066562,112132098,112197634,112263170,112328705,112394242,112459778,112525314,112590849,112656386,112721922,112787458,112852993,112918530,112984066,113049602,113115138,113180673,113246210,113311746,113377281,113442818,113508353,113573890,113639425,113704962,113770498,113836033,113901570,113967106,114032642,114098178,114163714,114229249,114294788,114360322,114425859,114491393,114556930,114622472,114688002,114753537,114819073,114884610,114950145,115015681,115081218,115146753,115212290,115277826,115343362,115408898,115474433,115539970,115605506,115671041,115736578,115802113,115867650,115933185,115998722,116064257,116129793,116195330,116260865,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317187,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445953,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543105,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409731,142475266,142540802,142606338,142671874,142737410,142802946,142868483,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142984,150208514,150274050,150339586,150405122,150470657,150536194,150601729,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519235,151584770,151650306,151715841,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305667,152371201,152436738,152502273,152567810,152633345,152698882,152764417,152829954,152895489,152961026,153026562,153092098,153157634,153223170,153288706,153354241,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075139,154140674,154206210,154271746,154337282,154402818,154468353,154533890,154599426,154664962,154730498,154796035,154861570,154927107,154992642,155254786,155320322,155385858,155516929,155582465,155713546,156106753,156303361,156368899,156499969,156565505,156631041,156696577,156893185,157089793,157155329,157220865,157286401,157351937,157417473,158072835,158138369,158334978,158466050,158531586,158662657,158793729,159055873,160759809,160890882,160956419,161873922,162856967,162922502,163250180,164560897,164691970,166002690,167903233,167968769,169082881,172425217,172490753,172818433,174129153,174194690,175046657,175177730,175833089,177471492,177537028,177602564,177668101,177733636,177799172,177864708,177930244,178192386,178782209,178847746],"varseteventhandler":[6160391,69337089,178585606],"varsetevent":[6160385,26738691,64159751,69468161,93061123,149880835,149946371,150011907,150077443,150142978,150208514,170328065,174194698,178585605],"var_delimiter":[6356993,6750209,8912906,9961478,155058177,175046657],"varname":[6553601,9240581,83099649,111017985,161873921,162922497],"varvalue":[6553601,9306117,162922497],"val":[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,33095685,48234501,55574534,82182145,87949313,108134405,132317189,160956417,169082881],"variables":[10682369,16777218,18743298,18808834,19333122,19398658,19464194,19529730,22216706,27197442,31064065,50397185,50528257,55508993,55640065,65929217,66060289,69140481,70123521,83099650,85065729,85131265,85655553,85721089,85786625,85852161,88539137,111017986,116523009,155713537,156565505,161873924,166068227,166133763,166658051,166723587,166789123,166854659,169672707,175833090],"verbose":[10682370,33357830,69140481,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136708097,154009601,155713538,158269441,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"verbosecommand":[13238275,41025540,41091078,69140481,79822851,101122050,101187586,155910145,158269449],"visibility":[13959171,44040193,44105729,44171265,72876034,158990339],"visible":[13959170,44105740,44171276,72876035,158990338],"virtual":[29491201,29884417,32636929,34275329,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,41615361,41680897,41943041,42008577,42401793,42467329,45088769,46202881,46333953,47972353,48496641,49610753,49741825,49872897,50266113,50397185,50528257,50790401,52428801,53149697,53280769,53477377,53739521,54984705,55508993,55640065,57475073,59965442,60030978,60096513,64028673,66191361,66322433,66584577,66650114,67502082,67567618,67633153,67895297,68419586,102432769,102694913,103022593,103219201,103284737,103481345,104464385,104792065,105054209,105185281,105381889,105512961,105709569,105840641,105906177,106037249,106233857,106430465,106561537,106692609,106823681,107020289,107085825,107151361,107216897,107347969,107544577,107741185,107937793,108199937,108331009,108527617,108658689,108855297,108986369,109379585,109445121,109576193,109707265,109838338,109969409,110362625,111083521,111411201,111476737,111542273,111935489,112328705,112590849,112852993,113180673,113377281,113508353,113639425,113836033,114229249,114491393,114753537,114819073,114950145,115015681,115146753,115474433,115671041,115802113,115933185,116064257,116129793,136511489,152371201,152436737,152764417,152829953,153812993],"verbosity":[33357825,41091073],"vars":[50528263,55640071,66060294],"varible":[69140482,156565505,156696577],"var":[69402625,84475905,115212289,163250178],"versions":[69468161,85000193,116260865,166002689,167837697],"vipcall":[69468163,174129155],"vipcallevent":[69468163,174129155],"var1":[83099650,85065729,85131265,85655553,85721089,85786625,85852161,88539137,111017986,116523009,161873922,166068225,166133761,166658049,166723585,166789121,166854657,169672705],"var2":[83099650,85065729,85131265,85655553,85721089,85786625,85852161,88539137,111017986,116523009,161873922,166068225,166133761,166658049,166723585,166789121,166854657,169672705],"values":[84475906,92471297,115212290,148439041,163250178,173604865],"videosupport":[90701825,140574726,171835393],"valid":[91291649,91357185,91684865,142540801,143196161,172425217,172490753,172818433]} \ No newline at end of file +{"version":[131076,196610,262148,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,82509825,88080385,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598594,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652615,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048962,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"various":[131073],"var_delimiter":[917505,1310721,3473418,4521990,150994945,171048961],"variable":[1114114,3735553,3801089,5242885,11337732,13303812,13369348,13893636,13959172,14024708,14090244,16777220,21823492,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,25690116,25755651,25952259,27721730,31129606,31195142,31522822,43384839,43450375,44957698,45088770,47644679,47710216,48627718,48693254,48758790,50069506,50200578,60555266,60686338,62062594,63832073,64028673,64094211,64815107,69271554,70385666,72155137,72941570,73072641,74317826,77135876,77791235,78839810,79757313,79822849,80347137,80412673,80478209,80543745,83230721,87818243,89325569,92995590,93257734,95485958,103481346,103546886,105775111,109445126,111280133,146079745,146145286,151453697,151650309,152240129,152502278,152633348,154009603,157155335,157810695,158859271,159186945,162004997,162070533,162594821,162660357,162725893,162791429,165609477,170196995,171835396,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174653441],"varname":[1114113,3801093,77791233,105775105,157810689,158859265],"varvalue":[1114113,3866629,158859265],"value":[1114113,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,3866626,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,5242890,12713985,22085634,22151170,22216706,22282243,22347778,22413314,22478850,22544386,22937601,23592961,23658497,23789570,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707074,24772610,24838146,24903682,25165825,25231367,25296897,25362433,25427969,25493505,25559042,25624578,25690115,25755651,25821185,25886721,25952259,26214401,26279937,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27721731,27918337,28049409,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30539782,30605313,30801921,30932993,30998529,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35192838,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,37552129,38600705,38666241,39714817,40828929,40960001,42401793,42598401,42729473,42860546,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45088774,45416449,47054849,47448066,47513603,47644679,47710215,47775745,47906817,48103425,48365569,48693254,48758791,49610753,50069505,50135041,52101121,54591498,54657025,54722561,58720264,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,60686342,61669378,62062596,62128129,62193674,62259201,62324737,62521345,62586881,62783489,62849025,63766529,63832081,63897601,64094215,64159745,64552964,64815106,68878337,69009409,69074945,70320130,70385666,70582273,71958530,72024066,72089602,72155137,72744962,72876033,74317826,74645506,74711042,76873729,77791234,78774275,78839810,79167489,79626242,79691778,82640897,85983233,86048769,86441985,87818242,88080385,88145922,88211457,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,89063426,89128961,89194498,89260033,89325570,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505218,90570754,90636289,90701825,90767362,90832898,90898433,90963969,91029505,91095041,91160577,91226113,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750401,91815938,91881473,91947009,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536840,92602370,92667906,92733442,92798978,92864515,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420424,95485954,95551490,95617026,95682562,95748097,95813634,95879170,95944706,96010242,96075777,96141313,96206850,96272386,96337922,96403458,96468994,96534530,96600065,96665602,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255426,97320962,97386498,97452033,97517570,97583106,97648642,97714178,97779713,97845250,97910786,97976321,98041857,98107394,98172930,98238465,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221505,99287042,99352578,99418114,99483650,99549185,99614722,99680258,99745794,99811329,99876866,99942401,100007938,100073474,100139009,100204546,100270081,100335618,100401154,100466689,100532226,100597761,100663297,100728834,100794369,100859906,100925442,100990977,101056514,101122050,101187585,101253122,101318657,101384194,101449729,101515266,101580801,101646338,101711874,101777409,101842945,101908481,101974017,102039554,102105089,102170626,102236162,102301697,102367234,102432770,102498305,102563842,102629378,102694913,102760450,102825986,102891523,102957057,103022594,103088129,103153666,103219202,103284737,103350274,103415809,103481346,103546882,103612417,103677954,103743489,103809026,103874562,103940098,104005634,104071170,104136705,104202241,104267778,104333313,104398850,104464385,104529922,104595458,104660994,104726529,104792066,104857602,104923138,104988674,105054210,105119745,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709571,105775107,105840641,105906178,105971714,106037250,106102786,106168321,106233857,106299393,106364930,106430466,106496002,106561538,106627074,106692609,106758146,106823682,106889218,106954754,107020290,107085825,107151362,107216898,107282434,107347969,107413506,107479042,107544578,107610113,107675650,107741186,107806722,107872258,107937793,108003330,108068866,108134401,108199938,108265473,108331010,108396545,108462082,108527618,108593153,108658690,108724226,108789762,108855298,108920834,108986369,109051908,109117442,109182979,109248513,109314050,109379592,109445122,109510657,109576193,109641730,109707265,109772801,109838338,109903873,109969410,110034946,110100482,110166018,110231553,110297090,110362626,110428161,110493698,110559233,110624770,110690305,110755842,110821377,110886913,110952450,111017985,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860739,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989505,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086657,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953283,138018818,138084354,138149890,138215426,138280962,138346498,138412035,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591683,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079752,146145282,146210818,146276354,146341890,146407425,146472962,146538497,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456003,147521538,147587074,147652609,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242435,148307969,148373506,148439041,148504578,148570113,148635650,148701185,148766722,148832257,148897794,148963330,149028866,149094402,149159938,149225474,149291009,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011907,150077442,150142978,150208514,150274050,150339586,150405121,150470658,150536194,150601730,150667266,150732803,150798338,150863875,150929410,151191554,151257090,151322626,151453697,151519233,151650314,152043521,152240129,152305667,152436737,152502273,152567809,152633345,152829953,153026561,153092097,153157633,153223169,153288705,153354241,154009603,154075137,154271746,154402818,154468354,154599425,154730497,154992641,156696577,156827650,156893187,157810690,158793735,158859270,159186948,160497665,160628738,161939458,163840001,163905537,165019649,168361985,168427521,168820737,170131457,170196994,171048961,171180034,171835393,173539332,173604868,173670404,173735941,173801476,173867012,173932548,173998084,174260226,174850049,174915586],"val":[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,27721733,42860549,50200582,76873729,82640897,102891525,127860741,156893185,165019649],"variables":[5242881,11337730,13303810,13369346,13893634,13959170,14024706,14090242,16777218,21823490,25690113,45023233,45154305,50135041,50266113,60620801,60751873,63832065,64815105,77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,151650305,152502273,157810692,162004995,162070531,162594819,162660355,162725891,162791427,165609475,171835394],"verbose":[5242882,27983878,63832065,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,151650306,154206209,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"verbosecommand":[7798787,35651588,35717126,63832065,74514435,95879170,95944706,151846913,154206217],"visibility":[8519683,38666241,38731777,38797313,67567618,154927107],"visible":[8519682,38731788,38797324,67567619,154927106],"varsetevent":[21364739,58851335,64159745,87818243,145817603,145883139,145948675,146014211,146079746,146145282,166264833,170197002,174653445],"void":[23134210,24641538,24969218,25034754,25100290,25231362,26017794,26083330,26148866,26345474,26476546,26738690,26869762,27000834,27131906,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27983874,28180482,28311554,28377090,29556738,29622274,36044802,36306946,36634626,36896770,37093378,37355522,37486594,37617666,37683202,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38731778,38797314,38862850,38928386,38993922,39059458,45088770,45154306,48431106,48496642,48562178,48627714,48693250,48758786,50200578,50266114,59047938,59113474,59572226,59637762,59703298,59768834,60686338,60751874,60882946,60948482,61014018,61145090,61276162,61341698,62914562,63045634,63111170,63176706,63504386,63569922,90505217,90570753,90767361,90832897,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91815937,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95813633,95879169,95944705,96010241,96206849,96272385,96337921,96403457,96468993,96534529,96665601,97255425,97320961,97386497,97517569,97583105,97648641,97714177,97845249,97910785,98107393,98172929,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99287041,99352577,99418113,99483649,99614721,99680257,99745793,99876865,100007937,100073473,100204545,100335617,100401153,100532225,100728833,100859905,100925441,101056513,101122049,101253121,101384193,101515265,101646337,101711873,102039553,102170625,102236161,102367233,102432769,102563841,102629377,102760449,102825985,102891521,103022593,103153665,103219201,103350273,103481345,103546881,103677953,103809025,103874561,103940097,104005633,104071169,104267777,104398849,104529921,104595457,104660993,104792065,104857601,104923137,104988673,105054209,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105906177,105971713,106037249,106102785,106364929,106430465,106496001,106561537,106627073,106758145,106823681,106889217,106954753,107020289,107151361,107216897,107282433,107413505,107479041,107544577,107675649,107741185,107806721,107872257,108003329,108068865,108199937,108331009,108462081,108527617,108658689,108724225,108789761,108855297,108920833,109051905,109117441,109182977,109314049,109379585,109445121,109641729,109838337,110034945,110100481,110166017,110297089,110362625,110493697,110624769,110755841,110952449,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146472961,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148373505,148504577,148635649,148766721,148897793,148963329,149028865,149094401,149159937,149225473,149356545,149422081,149487617,149553153,149618689,149684225,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150470657,150536193,150601729,150667265,150863873,150929409,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160563202,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,170393602,170459138,170524674,170590210,170655746,170786818,170852354,170917890,170983426,171114498,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,174129154,174194690,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514],"virtual":[24117249,24510465,27262977,28901377,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,36241409,36306945,36569089,36634625,37027841,37093377,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,45023233,45154305,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50135041,50266113,52101121,54591490,54657026,54722561,58720257,60882945,61014017,61276161,61341698,62193666,62259202,62324737,62586881,63111170,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104464385,104595458,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,110231553,110428161,110559233,110690305,110821377,110886913,132055041,148307969,148373505,148701185,148766721,149749761],"verbosity":[27983873,35717121],"voice":[40501249,44695554,44761091,44826628,64028675,64159748,69599235,75628545,77725699,100073473,104857601,104923137,104988673,155648001,157745158,163774465,166133762,170000385,170917890,174456833],"vars":[45154311,50266119,60751878],"varible":[63832066,152502273,152633345],"voicemail":[64028673,64159745,166789121,171507713],"varseteventhandler":[64028673,174653445],"var":[64094209,79167489,109969409,159186946],"versions":[64159745,79691777,111017985,161939457,163774465],"vipcall":[64159747,170131459],"vipcallevent":[64159747,170131459],"var1":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"var2":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"values":[79167490,87228417,109969410,144375809,159186946,169607169],"valid":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"videosupport":[85393409,136118278,167772161]} \ No newline at end of file diff --git a/docs/fti/FTI_119.json b/docs/fti/FTI_119.json index 64a0d39..820b364 100644 --- a/docs/fti/FTI_119.json +++ b/docs/fti/FTI_119.json @@ -1 +1 @@ -{"welcome":[131073,196609],"www":[196610],"wchar_t":[8585217,8716289,8781825,8912897,9961473,31195137,31260673,31784961,31916033,31981569,32047105,32178177,32309249,32440321,32571393,33292289,33423361,94830594],"waits":[10682376,30867457,30932993,30998529,31195138,31260674,33423361,69140483,70057987,70189060,155713544,156631042,158334977],"waiting":[10682370,31195137,31260673,49545217,68943873,69140481,69402626,69533697,70189058,74842113,82771969,83099649,86114305,88932353,88997889,89718786,91029505,91095041,91226113,91750403,94044161,109641729,110493697,119799809,137560065,137756677,142016513,143982594,144179202,144506881,153681925,155713538,156631041,161546243,161873922,167116801,170065921,170131457,170852354,172163073,172228609,172359681,172883971,177799170,178913281],"waitfordigit":[10682369,33423365,155713537],"waitfordigitcommand":[13303811,41156612,41222151,41287687,69140481,72417286,79888387,101253122,155910145,158334987],"write":[13893633,42991621,69074945,69402625,155713537,158924801,163250177],"writeex":[13893633,43057157,158924801],"warning":[13959172,44236808,44302344,44367881,44433417,72941573,158990340,159055873],"want":[18153473,35192833,35258369,40828929,54132737,69402626,75890689,161873922,163250177],"waitsleepjoin":[28180481,68354049,178847745],"work":[28246017,54132738,68878337,69402626,163250178,178913281],"wait":[30932993,30998529,31260673,33423362,36306945,36372481,36765697,37355521,37421057,37552129,41287681,65404929,69140482,71630849,71696385,78184449,78315521,78512129,78577665,79888385,91160577,93323266,98107393,98435073,98631681,98697217,101253121,141950981,150667265,150732801,156499969,156631041,156893187,156958723,158334977,172294145,175046658],"wav":[31588353,31653889,37748737,37814273,78643201,83034113,98959361,110166017,157024257,161808385],"worker":[34013185,34144257,68943873,77660161,96665601,155844609],"written":[45875202,50069505,50135041,50200577,69402625,73465857,80936961,83034113,105316353,110100481,159711234,161808385,161873921],"writes":[50069505,50135041,50200577,74907651,161808387],"wraps":[69074945,155385857],"wish":[69402625,161873921],"wheather":[77529089,95551489,155648001],"wrapuptime":[80412673,102957061,159186945],"weight":[91750405,144506889,172883973],"writeonly":[96534529,96600065,96665601,101056513,101449729,101777409,144834561]} \ No newline at end of file +{"welcome":[131073,196609],"www":[196610],"wchar_t":[3145729,3276801,3342337,3473409,4521985,25821185,25886721,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,28049409,89587714],"waits":[5242888,25493505,25559041,25624577,25821186,25886722,28049409,63832067,64749571,64880644,151650312,152567810,154271745],"waiting":[5242882,25821185,25886721,44171265,63635457,63832065,64094210,64225281,64880642,69533697,77463553,77791233,80805889,83623937,83689473,84410370,85721089,85786625,85917697,86507523,88801281,104398849,105250817,115343361,133103617,133300229,137560065,139919362,140115970,140443649,149618693,151650306,152567809,157483011,157810690,163053569,166002689,166068225,166789122,168099841,168165377,168296449,168886275,173867010,174981121],"waitfordigit":[5242881,28049413,151650305],"waitfordigitcommand":[7864323,35782660,35848199,35913735,63832065,67108870,74579971,96010242,151846913,154271755],"write":[8454145,37617669,63766529,64094209,151650305,154861569,159186945],"writeex":[8454145,37683205,154861569],"warning":[8519684,38862856,38928392,38993929,39059465,67633157,154927108,154992641],"want":[12713985,29818881,29884417,35454977,48758785,64094210,70582273,157810690,159186945],"waitsleepjoin":[22806529,63045633,174915585],"work":[22872065,48758786,63569921,64094210,159186946,174981121],"wait":[25559041,25624577,25886721,28049410,30932993,30998529,31391745,31981569,32047105,32178177,35913729,60096513,63832066,66322433,66387969,72876033,73007105,73203713,73269249,74579969,85852161,88080386,92864513,93192193,93388801,93454337,96010241,137494533,146604033,146669569,152436737,152567809,152829955,152895491,154271745,168230913,171048962],"wav":[26214401,26279937,32374785,32440321,73334785,77725697,93716481,104923137,152961025,157745153],"worker":[28639233,28770305,63635457,72351745,91422721,151781377],"written":[40501250,44695553,44761089,44826625,64094209,68157441,75628545,77725697,100073473,104857601,155648002,157745153,157810689],"writes":[44695553,44761089,44826625,69599235,157745155],"wraps":[63766529,151322625],"wish":[64094209,157810689],"wheather":[72220673,90308609,151584769],"wrapuptime":[75104257,97714181,155123713],"weight":[86507525,140443657,168886277],"writeonly":[91291649,91357185,91422721,95813633,96206849,96534529,140771329]} \ No newline at end of file diff --git a/docs/fti/FTI_120.json b/docs/fti/FTI_120.json index 398572d..48ace48 100644 --- a/docs/fti/FTI_120.json +++ b/docs/fti/FTI_120.json @@ -1 +1 @@ -{"xmlfilepath":[41877510],"xml":[69206017,158597121],"xxxxxx":[69402629,84475905,115212289,163250182]} \ No newline at end of file +{"xmlfilepath":[36503558],"xml":[63897601,154533889],"xxxxxx":[64094213,79167489,109969409,159186950]} \ No newline at end of file diff --git a/docs/fti/FTI_121.json b/docs/fti/FTI_121.json index 56f6fab..67647f1 100644 --- a/docs/fti/FTI_121.json +++ b/docs/fti/FTI_121.json @@ -1 +1 @@ -{"yes":[786433,1114113,45613057,69468162,84475905,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,115343361,136904705,163250177,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658050,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657],"yellow":[86310913,93192193,120258561,150274049,167313409,174325761]} \ No newline at end of file +{"yes":[40239105,64028673,64159746,79167489,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,110100481,132448257,159186945,159776769,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594818,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"yellow":[81002497,87949313,115802113,146210817,163250177,170328065]} \ No newline at end of file diff --git a/docs/fti/FTI_122.json b/docs/fti/FTI_122.json index 2f48b23..da3a827 100644 --- a/docs/fti/FTI_122.json +++ b/docs/fti/FTI_122.json @@ -1 +1 @@ -{"zapappi":[196609],"zap":[786437,1703937,1769473,3014657,6225921,6291457,54525953,54657025,54788097,54919170,69402632,69468165,76021761,76087297,76152833,76218370,84541441,84606977,84672513,84738049,84869121,93192194,115605505,115736577,115867649,115998721,116195329,150274049,150339585,163315715,163381251,163446787,163512324,163577859,163643394,167247873,167313409,169410561,174260225,174325763,175046661],"zapshowchannelsevent":[786434,6094849,6225922,26869763,64290823,69402625,69468162,93192195,150274050,150339586,150405123,163577858,173211649,174260225,174325770,175046658,178716677],"zapshowchannels":[786433,6225925,84803585,116064257,163577857,175046657],"zapshowchannelsaction":[786434,6225921,6291457,18481155,54984708,55050246,69402626,69468162,84803587,116064258,161677313,163577866,174260226,174325762,175046658],"zapshowchannelscomplete":[786433,6291461,175046657],"zapshowchannelscompleteevent":[786433,6291458,26804227,64225287,69402625,69468162,93126659,163577858,173211649,174260234,175046657,178651141],"zapshowchannelseventhandler":[6225927,69337089,178716678],"zapshowchannelscompleteeventhandler":[6291463,69337089,178651142],"zapdialoffhookaction":[18219011,54460423,54525961,69402626,76021766,84541443,115474434,115539970,115605506,161611777,163315724],"zapdndoffaction":[18284547,54591495,54657032,69402625,76087302,84606979,115671042,115736578,161611777,163381259],"zapdndonaction":[18350083,54722567,54788104,69402627,76152838,84672515,115802114,115867650,161611777,163381249,163446796],"zaphangupaction":[18415619,54853639,54919176,69402626,76218374,84738051,115933186,115998722,161611777,163512332],"zaptransferaction":[18546691,55115782,69402626,84869123,116129794,116195330,161611777,163643402],"zapchannel":[54525958,54657030,54788102,54919174,84541441,84606977,84672513,84738049,84869121,115605509,115736581,115867653,115998725,116195333,163315713,163381249,163446785,163512321,163643393],"zapdialoffhook":[84541441,115474433,163315713],"zapdndoff":[84606977,115671041,163381249],"zapdndon":[84672513,115802113,163446785],"zaphangup":[84738049,115933185,163512321],"zaptransfer":[84869121,116129793,163643393],"zapata":[93192193,150339585,174325761],"zero":[93323265,151126017,175046657]} \ No newline at end of file +{"zapappi":[196609],"zapdialoffhookaction":[12779523,49086471,49152009,64094210,70713350,79233027,110231554,110297090,110362626,157548545,159252492],"zapdndoffaction":[12845059,49217543,49283080,64094209,70778886,79298563,110428162,110493698,157548545,159318027],"zapdndonaction":[12910595,49348615,49414152,64094211,70844422,79364099,110559234,110624770,157548545,159318017,159383564],"zaphangupaction":[12976131,49479687,49545224,64094210,70909958,79429635,110690306,110755842,157548545,159449100],"zapshowchannelsaction":[13041667,49610756,49676294,64028674,64094210,64159746,79495171,110821378,157614081,159514634,170262530,170328066,174718977,174784513],"zaptransferaction":[13107203,49741830,64094210,79560707,110886914,110952450,157548545,159580170],"zapshowchannelscompleteevent":[21430275,58916871,64028673,64094209,64159746,87883779,159514626,169213953,170262538,174718982],"zapshowchannelsevent":[21495811,58982407,64028674,64094209,64159746,87949315,146210818,146276354,146341891,159514626,169213953,170262529,170328074,174587905,174784518],"zap":[49152001,49283073,49414145,49545218,64028677,64094216,64159749,70713345,70778881,70844417,70909954,79233025,79298561,79364097,79429633,79560705,87949314,110362625,110493697,110624769,110755841,110952449,146210817,146276353,159252483,159318019,159383555,159449092,159514627,159580162,160366593,160432129,161808385,163184641,163250177,165347329,170262529,170328067,174718977,174784513],"zapchannel":[49152006,49283078,49414150,49545222,79233025,79298561,79364097,79429633,79560705,110362629,110493701,110624773,110755845,110952453,159252481,159318017,159383553,159449089,159580161],"zapshowchannelscompleteeventhandler":[64028673,174718981],"zapshowchannelseventhandler":[64028673,174784517],"zapdialoffhook":[79233025,110231553,159252481],"zapdndoff":[79298561,110428161,159318017],"zapdndon":[79364097,110559233,159383553],"zaphangup":[79429633,110690305,159449089],"zapshowchannels":[79495169,110821377,159514625],"zaptransfer":[79560705,110886913,159580161],"zapata":[87949313,146276353,170328065],"zero":[88080385,147062785,171048961]} \ No newline at end of file diff --git a/docs/fti/FTI_97.json b/docs/fti/FTI_97.json index a2b7cb6..565999e 100644 --- a/docs/fti/FTI_97.json +++ b/docs/fti/FTI_97.json @@ -1 +1 @@ -{"automatically":[1,10682369,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,32702465,39518209,46858241,46923777,67371009,69140481,73859074,79233025,100204546,155713537,157614082,160235522,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"asternet":[65537,131073,196614,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983046,1048582,1114118,1179654,1245190,1310726,1376262,1441798,1507334,1572870,1638406,1703942,1769478,1835015,1900551,1966087,2031623,2097159,2162695,2228231,2293766,2359302,2424838,2490374,2555910,2621446,2686982,2752519,2818054,2883590,2949126,3014662,3080199,3145734,3211271,3276806,3342342,3407878,3473414,3538950,3604486,3670022,3735558,3801094,3866630,3932166,3997702,4063238,4128774,4194310,4259846,4325382,4390918,4456454,4521990,4587526,4653062,4718598,4784134,4849670,4915206,4980742,5046278,5111814,5177350,5242886,5308422,5373958,5439494,5505030,5570566,5636102,5701638,5767175,5832710,5898246,5963782,6029318,6094854,6160390,6225926,6291462,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340038,7405574,7471109,7536645,7602182,7667718,7733254,7798790,7864326,7929862,7995397,8060934,8126470,8192006,8257542,8323078,8388614,8454149,8519685,8585222,8650757,8716294,8781830,8847366,8912902,8978437,9043973,9109510,9175045,9240581,9306117,9371654,9437190,9502726,9568262,9633798,9699334,9764870,9830406,9895941,9961478,10027014,10092550,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,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311564,28377107,28442636,28508166,28573709,28639237,28704773,28770309,28835845,28901383,28966919,29032455,29097992,29163525,29229061,29294597,29360133,29425669,29491207,29556741,29622278,29687816,29753351,29818888,29884423,29949957,30015493,30081030,30146566,30212102,30277638,30343173,30408709,30474245,30539782,30605317,30670853,30736389,30801927,30867461,30932997,30998533,31064069,31129606,31195141,31260677,31326213,31391749,31457285,31522823,31588357,31653893,31719429,31784965,31850501,31916037,31981573,32047109,32112645,32178181,32243717,32309253,32374789,32440325,32505861,32571397,32636944,32702470,32768007,32833542,32899078,32964614,33030150,33095685,33161221,33226757,33292293,33357829,33423365,33488901,33554442,33619976,33685510,33751046,33816581,33882120,33947662,34013189,34078726,34144261,34209802,34275335,34340872,34406407,34471941,34537479,34603013,34668551,34734085,34799621,34865159,34930693,34996229,35061765,35127301,35192837,35258373,35323911,35389445,35454981,35520519,35586053,35651589,35717127,35782661,35848199,35913733,35979271,36044805,36110341,36175879,36241413,36306949,36372485,36438023,36503557,36569093,36634631,36700165,36765701,36831239,36896773,36962311,37027845,37093381,37158919,37224453,37289991,37355525,37421061,37486599,37552133,37617670,37683207,37748741,37814277,37879815,37945349,38010885,38076423,38141958,38207493,38273029,38338565,38404103,38469637,38535173,38600711,38666245,38731781,38797319,38862853,38928389,38993927,39059461,39124997,39190535,39256069,39321607,39387141,39452679,39518213,39583751,39649285,39714823,39780357,39845895,39911429,39976967,40042501,40108039,40173573,40239109,40304647,40370181,40435717,40501255,40566790,40632327,40697861,40763397,40828933,40894471,40960006,41025543,41091077,41156615,41222149,41287685,41353228,41418758,41484293,41549829,41615372,41680902,41746437,41811975,41877510,41943052,42008582,42074117,42139654,42205192,42270731,42336261,42401804,42467334,42532869,42598406,42663943,42729478,42795016,42860549,42926085,42991621,43057157,43122693,43188231,43253767,43319304,43384840,43450375,43515911,43581448,43646984,43712519,43778055,43843592,43909128,43974661,44040204,44105734,44171270,44236807,44302343,44367880,44433416,44498949,44564485,44630021,44695557,44761093,44826629,44892165,44957701,45023237,45088775,45154309,45219847,45285381,45350931,45416453,45481989,45547525,45613061,45678597,45744133,45809669,45875205,45940741,46006277,46071813,46137351,46202887,46268422,46333959,46399493,46465029,46530566,46596101,46661639,46727173,46792711,46858245,46923782,46989317,47054854,47120389,47185926,47251461,47316999,47382533,47448069,47513605,47579141,47644678,47710213,47775749,47841285,47906821,47972359,48037893,48103429,48168965,48234501,48300037,48365573,48431109,48496647,48562181,48627717,48693253,48758789,48824325,48889861,48955397,49020933,49086470,49152005,49217541,49283077,49348613,49414149,49479685,49545221,49610759,49676293,49741831,49807365,49872903,49938437,50003973,50069509,50135045,50200581,50266119,50331655,50397190,50462727,50528262,50593797,50659336,50724869,50790407,50855941,50921477,50987013,51052549,51118085,51183621,51249157,51314693,51380234,51445765,51511301,51576837,51642373,51707909,51773445,51838984,51904517,51970057,52035589,52101125,52166661,52232198,52297733,52363270,52428807,52494341,52559877,52625413,52690949,52756485,52822021,52887557,52953093,53018629,53084165,53149703,53215237,53280775,53346309,53411846,53477383,53542917,53608453,53673990,53739527,53805062,53870599,53936136,54001673,54067210,54132741,54198277,54263815,54329352,54394888,54460421,54525959,54591493,54657030,54722565,54788102,54853637,54919174,54984711,55050245,55115781,55181317,55246853,55312390,55377928,55443463,55508998,55574535,55640070,55705608,55771144,55836677,55902216,55967752,56033288,56098824,56164360,56229896,56295432,56360968,56426504,56492040,56557576,56623112,56688648,56754184,56819720,56885256,56950792,57016328,57081864,57147400,57212936,57278472,57344008,57409544,57475077,57540616,57606152,57671688,57737224,57802760,57868296,57933832,57999368,58064904,58130440,58195976,58261512,58327048,58392584,58458120,58523656,58589192,58654728,58720264,58785800,58851336,58916872,58982408,59047944,59113480,59179013,59244552,59310088,59375624,59441160,59506696,59572232,59637768,59703304,59768840,59834376,59899912,59965445,60030981,60096517,60162053,60227590,60293128,60358664,60424200,60489736,60555272,60620808,60686344,60751880,60817416,60882952,60948488,61014024,61079560,61145096,61210632,61276168,61341704,61407240,61472776,61538312,61603848,61669384,61734920,61800456,61865992,61931528,61997064,62062600,62128136,62193672,62259208,62324744,62390280,62455816,62521352,62586888,62652424,62717960,62783496,62849032,62914568,62980104,63045640,63111176,63176712,63242248,63307784,63373320,63438856,63504392,63569928,63635464,63701000,63766536,63832072,63897608,63963144,64028681,64094216,64159752,64225288,64290824,64356358,64421894,64487436,64552974,64618503,64684039,64749575,64815109,64880647,64946181,65011717,65077254,65142794,65208339,65273866,65339404,65404940,65470469,65536005,65601542,65667077,65732613,65798152,65863687,65929222,65994759,66060294,66125829,66191366,66256906,66322442,66387984,66453510,66519045,66584582,66650122,66715658,66781189,66846725,66912261,66977799,67043333,67108869,67174405,67239941,67305478,67371013,67436550,67502085,67567621,67633159,67698693,67764230,67829766,67895303,67960837,68026373,68091909,68157445,68222981,68288517,68354053,68419589,68485125,68550661,68616197,68681733,68747269,68812808,68878341,68943877,69009411,69074948,69140483,69206020,69271555,69337091,69402628,69468163,69533699,69599235,69664770,69730306,69795842,69861378,69926914,69992450,70057986,70123522,70189058,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041026,71106562,71172098,71237634,71303170,71368706,71434242,71499778,71565314,71630850,71696386,71761922,71827458,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502917,94568453,94633990,94699526,94765061,94830597,94896133,94961670,95027206,95092742,95158278,95223814,95289350,95354885,95420421,95485958,95551493,95617029,95682565,95748102,95813638,95879173,95944710,96010246,96075782,96141318,96206853,96272389,96337925,96403461,96468998,96534533,96600069,96665605,96731142,96796678,96862213,96927749,96993285,97058821,97124357,97189893,97255429,97320965,97386501,97452037,97517573,97583109,97648645,97714181,97779717,97845253,97910789,97976325,98041861,98107397,98172933,98238469,98304005,98369541,98435077,98500614,98566149,98631685,98697221,98762757,98828293,98893829,98959365,99024901,99090437,99155973,99221509,99287045,99352581,99418117,99483653,99549189,99614725,99680261,99745797,99811333,99876869,99942405,100007941,100073477,100139013,100204549,100270085,100335621,100401157,100466693,100532229,100597765,100663301,100728837,100794373,100859909,100925445,100990981,101056517,101122053,101187589,101253125,101318661,101384197,101449734,101515270,101580805,101646341,101711877,101777414,101842950,101908486,101974021,102039558,102105094,102170630,102236166,102301702,102367238,102432773,102498309,102563845,102629381,102694917,102760453,102825989,102891525,102957061,103022597,103088133,103153669,103219205,103284741,103350278,103415814,103481350,103546886,103612422,103677958,103743494,103809030,103874566,103940102,104005638,104071174,104136710,104202246,104267782,104333318,104398854,104464390,104529925,104595461,104660997,104726533,104792070,104857606,104923142,104988678,105054213,105119749,105185285,105250821,105316357,105381893,105447429,105512966,105578502,105644038,105709574,105775110,105840646,105906182,105971718,106037254,106102790,106168326,106233862,106299398,106364934,106430470,106496006,106561542,106627078,106692614,106758150,106823686,106889222,106954758,107020294,107085830,107151366,107216902,107282438,107347974,107413509,107479045,107544582,107610117,107675653,107741190,107806725,107872261,107937798,108003333,108068869,108134405,108199941,108265477,108331013,108396549,108462085,108527621,108593157,108658693,108724229,108789765,108855301,108920837,108986373,109051909,109117445,109182981,109248517,109314053,109379589,109445125,109510661,109576197,109641733,109707269,109772806,109838342,109903877,109969413,110034949,110100485,110166021,110231557,110297093,110362629,110428165,110493701,110559237,110624773,110690309,110755845,110821381,110886917,110952453,111017989,111083525,111149061,111214597,111280133,111345669,111411205,111476741,111542277,111607813,111673349,111738885,111804421,111869957,111935494,112001030,112066566,112132102,112197638,112263174,112328709,112394245,112459781,112525317,112590854,112656390,112721926,112787462,112852998,112918534,112984070,113049606,113115142,113180677,113246213,113311749,113377286,113442822,113508358,113573894,113639429,113704965,113770501,113836037,113901574,113967109,114032645,114098181,114163717,114229253,114294789,114360325,114425861,114491397,114556933,114622469,114688005,114753542,114819078,114884613,114950149,115015685,115081221,115146757,115212293,115277829,115343365,115408901,115474437,115539973,115605509,115671045,115736581,115802117,115867653,115933189,115998725,116064261,116129797,116195333,116260869,116326405,116391941,116457477,116523013,116588549,116654085,116719622,116785157,116850693,116916229,116981766,117047302,117112838,117178374,117243909,117309446,117374981,117440517,117506053,117571589,117637125,117702661,117768197,117833734,117899269,117964806,118030342,118095877,118161414,118226950,118292486,118358021,118423557,118489094,118554630,118620166,118685702,118751238,118816774,118882309,118947845,119013381,119078917,119144453,119209989,119275525,119341062,119406597,119472134,119537669,119603205,119668741,119734277,119799813,119865349,119930886,119996422,120061958,120127494,120193030,120258565,120324102,120389638,120455174,120520710,120586246,120651782,120717318,120782854,120848390,120913926,120979462,121044998,121110534,121176070,121241606,121307142,121372678,121438214,121503750,121569286,121634822,121700358,121765894,121831430,121896966,121962502,122028038,122093574,122159110,122224646,122290182,122355718,122421254,122486790,122552326,122617862,122683398,122748934,122814470,122880006,122945542,123011078,123076614,123142150,123207686,123273222,123338758,123404294,123469830,123535366,123600902,123666438,123731974,123797510,123863046,123928582,123994118,124059654,124125190,124190726,124256262,124321798,124387334,124452870,124518406,124583942,124649478,124715014,124780550,124846086,124911622,124977158,125042694,125108230,125173766,125239302,125304838,125370374,125435910,125501446,125566982,125632518,125698054,125763590,125829126,125894662,125960198,126025734,126091270,126156806,126222342,126287878,126353414,126418950,126484486,126550022,126615558,126681094,126746630,126812166,126877702,126943238,127008774,127074310,127139846,127205382,127270918,127336454,127401990,127467526,127533062,127598598,127664134,127729670,127795206,127860742,127926278,127991814,128057350,128122886,128188422,128253958,128319493,128385030,128450566,128516102,128581638,128647174,128712710,128778246,128843782,128909318,128974854,129040390,129105926,129171462,129236998,129302534,129368070,129433606,129499142,129564678,129630214,129695750,129761286,129826822,129892358,129957894,130023430,130088966,130154502,130220038,130285574,130351110,130416645,130482182,130547718,130613253,130678790,130744325,130809862,130875398,130940934,131006470,131072006,131137542,131203078,131268614,131334150,131399686,131465222,131530758,131596294,131661830,131727366,131792902,131858438,131923974,131989510,132055045,132120581,132186117,132251653,132317189,132382726,132448261,132513797,132579333,132644869,132710405,132775942,132841478,132907013,132972549,133038086,133103621,133169157,133234694,133300230,133365766,133431302,133496837,133562373,133627909,133693445,133758982,133824518,133890054,133955589,134021125,134086661,134152197,134217733,134283269,134348805,134414341,134479877,134545413,134610949,134676485,134742021,134807557,134873094,134938630,135004166,135069702,135135238,135200774,135266310,135331846,135397382,135462918,135528454,135593990,135659526,135725062,135790598,135856134,135921670,135987206,136052742,136118277,136183813,136249349,136314885,136380421,136445957,136511493,136577029,136642565,136708101,136773637,136839173,136904709,136970245,137035782,137101318,137166854,137232390,137297926,137363462,137428998,137494534,137560069,137625605,137691141,137756677,137822214,137887750,137953286,138018822,138084358,138149894,138215430,138280965,138346502,138412037,138477573,138543109,138608645,138674182,138739717,138805253,138870789,138936325,139001862,139067398,139132934,139198470,139264006,139329542,139395078,139460613,139526149,139591685,139657221,139722757,139788293,139853830,139919365,139984901,140050438,140115973,140181510,140247046,140312582,140378118,140443653,140509190,140574726,140640261,140705797,140771333,140836869,140902405,140967941,141033478,141099014,141164550,141230086,141295622,141361158,141426694,141492230,141557766,141623302,141688837,141754373,141819909,141885445,141950981,142016517,142082053,142147589,142213125,142278661,142344197,142409733,142475269,142540805,142606341,142671877,142737413,142802949,142868485,142934021,142999558,143065093,143130629,143196165,143261701,143327237,143392774,143458309,143523845,143589381,143654917,143720453,143785989,143851525,143917061,143982597,144048133,144113669,144179205,144244741,144310277,144375813,144441349,144506885,144572421,144637957,144703493,144769029,144834565,144900101,144965637,145031173,145096709,145162245,145227781,145293317,145358853,145424390,145489926,145555462,145620998,145686534,145752070,145817606,145883142,145948678,146014214,146079750,146145286,146210822,146276358,146341894,146407430,146472966,146538502,146604038,146669574,146735110,146800646,146866182,146931718,146997254,147062790,147128326,147193862,147259398,147324934,147390470,147456006,147521542,147587078,147652614,147718150,147783686,147849222,147914758,147980294,148045830,148111366,148176902,148242438,148307973,148373510,148439045,148504582,148570117,148635653,148701189,148766725,148832262,148897798,148963333,149028870,149094405,149159942,149225478,149291014,149356550,149422086,149487622,149553158,149618693,149684229,149749765,149815302,149880838,149946374,150011910,150077446,150142981,150208517,150274053,150339589,150405126,150470662,150536198,150601734,150667269,150732805,150798341,150863877,150929413,150994949,151060485,151126021,151191557,151257093,151322629,151388165,151453701,151519237,151584773,151650309,151715846,151781381,151846917,151912453,151977989,152043525,152109061,152174597,152240133,152305669,152371206,152436742,152502278,152567813,152633350,152698886,152764422,152829958,152895494,152961029,153026565,153092102,153157638,153223174,153288710,153354245,153419781,153485317,153550853,153616389,153681925,153747461,153812997,153878533,153944069,154009605,154075141,154140677,154206213,154271750,154337286,154402822,154468358,154533894,154599430,154664966,154730502,154796037,154861573,154927109,154992645,155058183,155123718,155189254,155254794,155320327,155385863,155451399,155516934,155582470,155648006,155713542,155779078,155844615,155910189,155975688,156041224,156106759,156172295,156237831,156303367,156368903,156434439,156499975,156565511,156631048,156696583,156762119,156827655,156893191,156958727,157024263,157089799,157155335,157220871,157286407,157351943,157417479,157483015,157548551,157614087,157679623,157745159,157810695,157876231,157941767,158007303,158072839,158138375,158203911,158269447,158334983,158400518,158466055,158531591,158597126,158662663,158728199,158793735,158859270,158924807,158990342,159055878,159121415,159186951,159252487,159318026,159383560,159449096,159514632,159580168,159645705,159711239,159776775,159842312,159907848,159973384,160038920,160104456,160169992,160235528,160301064,160366600,160432136,160497672,160563208,160628744,160694280,160759816,160825352,160890889,160956423,161021959,161087495,161153032,161218567,161284103,161349641,161415175,161480712,161546248,161611839,161677333,161742858,161808391,161873930,161939463,162005002,162070535,162136072,162201607,162267144,162332679,162398216,162463752,162529287,162594824,162660360,162725896,162791431,162856967,162922503,162988040,163053576,163119112,163184647,163250184,163315719,163381255,163446791,163512327,163577864,163643399,163708935,163774471,163840007,163905543,163971079,164036615,164102151,164167687,164233223,164298759,164364295,164429831,164495367,164560902,164626439,164691974,164757511,164823047,164888583,164954119,165019655,165085191,165150727,165216263,165281799,165347335,165412871,165478407,165543943,165609479,165675015,165740551,165806087,165871623,165937159,166002695,166068236,166133770,166199306,166264849,166330384,166395914,166461452,166526983,166592519,166658056,166723593,166789129,166854665,166920199,166985735,167051273,167116809,167182343,167247879,167313415,167378952,167444488,167510024,167575562,167641097,167706633,167772169,167837705,167903238,167968774,168034313,168099850,168165383,168230920,168296456,168361993,168427529,168493065,168558601,168624137,168689673,168755209,168820745,168886281,168951816,169017355,169082889,169148424,169213960,169279497,169345032,169410567,169476104,169541639,169607176,169672713,169738248,169803783,169869319,169934856,170000392,170065928,170131464,170197000,170262535,170328129,170393609,170459144,170524680,170590217,170655752,170721288,170786825,170852359,170917896,170983432,171048968,171114504,171180040,171245575,171311112,171376647,171442184,171507721,171573257,171638792,171704329,171769864,171835400,171900938,171966471,172032008,172097544,172163080,172228616,172294153,172359691,172425224,172490762,172556296,172621832,172687368,172752904,172818441,172883977,172949513,173015047,173080584,173146119,173211675,173277192,173342728,173408264,173473800,173539336,173604872,173670409,173735945,173801480,173867015,173932551,173998088,174063624,174129159,174194696,174260233,174325769,174391303,174456839,174522375,174587911,174653447,174718982,174784519,174850055,174915591,174981127,175046662,175112199,175177734,175243270,175308807,175374343,175439879,175505415,175570951,175636487,175702023,175767559,175833095,175898631,175964167,176029703,176095239,176160775,176226311,176291847,176357383,176422919,176488455,176553991,176619527,176685063,176750599,176816135,176881671,176947207,177012743,177078279,177143815,177209351,177274886,177340422,177405958,177471497,177537032,177602568,177668103,177733640,177799176,177864711,177930254,177995783,178061319,178126855,178192391,178257927,178323463,178388999,178454535,178520071,178585607,178651143,178716679,178782214,178847750,178913286],"asterisk":[196611,786436,3604482,4718593,5505025,10551298,10682384,16580609,16646145,27000835,29360129,29425665,29949953,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,31064065,31129601,31850497,31916033,31981569,32047105,33357825,49610753,49741825,64815106,64880641,64946177,65536002,65601538,69074946,69140492,69337089,69402645,69468197,69533698,69861380,69926914,70123522,70451204,76611586,80871425,81002497,82575361,83099649,85000193,85065733,85131269,85196804,85262340,85327876,85393412,85458948,85524484,85590020,85655557,85721093,85786629,85852165,85917700,85983236,86048772,86114308,86179844,86245380,86310916,86376452,86441988,86507524,86573060,86638596,86704132,86769668,86835204,86900740,86966276,87031812,87097348,87162884,87228420,87293956,87359492,87425028,87490564,87556100,87621636,87687172,87752708,87818244,87883780,87949316,88014852,88080388,88145924,88211460,88276996,88342532,88408068,88473604,88539142,88604676,88670212,88735748,88801284,88866820,88932356,88997892,89063428,89128964,89194500,89260036,89325572,89391108,89456644,89522180,89587716,89653252,89718788,89784324,89849860,89915396,89980932,90046468,90112004,90177540,90243076,90308612,90374148,90439684,90505220,90570756,90636292,90701828,90767364,90832900,90898436,90963972,91029508,91095044,91160580,91226116,91291652,91357189,91422724,91488262,91553796,91619332,91684869,91750404,91815940,91881476,91947012,92012548,92078084,92143620,92209156,92274692,92340228,92405764,92471300,92536836,92602372,92667908,92733444,92798980,92864516,92930052,92995588,93061124,93126660,93192196,93323269,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,105119745,105447425,109051905,110952449,116260865,116523009,134086657,136642562,136708097,136904705,143196161,143458305,143654913,150863873,150994945,151060481,151191553,151650305,153878529,154009601,155189249,155385857,155516930,155582468,155713552,156106753,156172289,156237825,156303361,156368897,156565506,156696578,156958721,157155329,158007297,159186945,159318017,159645698,159776770,160890882,160956418,161153025,161349634,161677314,161742850,161873923,162332673,162725889,162988034,163053570,163250177,166002689,166068229,166133765,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658053,166723589,166789125,166854661,166920196,166985732,167051269,167116805,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837703,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951814,169017348,169082885,169148420,169213956,169279493,169345030,169410565,169476100,169541636,169607172,169672711,169738244,169803780,169869317,169934852,170000388,170065924,170131460,170196998,170262532,170328071,170393604,170459140,170524676,170590212,170655748,170721284,170786820,170852356,170917892,170983428,171048964,171114500,171180036,171245572,171311108,171376644,171442180,171507716,171573252,171638789,171704324,171769861,171835396,171900933,171966469,172032004,172097540,172163076,172228612,172294148,172359684,172425221,172490757,172556295,172621831,172687364,172752901,172818437,172883972,172949509,173015045,173080581,173146116,173211652,173277188,173342724,173408260,173473796,173539332,173604870,173670404,173735940,173801476,173867013,173932548,173998084,174063621,174129157,174194692,174260228,174325764,174718977,175046668,177471490,177537026,177602562,177668098,177733634,177799170,177864707,177930243],"ami":[196610,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136708097,154009601,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"allows":[196609,6750209,9895937,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682377,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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,30081025,30146561,30212097,30277633,31916033,31981569,32047105,33292289,38207489,38273025,38338561,69140481,69337089,69402625,69861380,70451203,70844417,71892995,80412674,83099649,102629377,102957057,110493697,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713545,155779073,155844609,155910145,155975681,156041217,156106754,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155332,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186947,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873922,161939458,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002690,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046658,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"application":[196609,786433,3866625,6750209,9895937,10682372,30670856,30736393,32833537,32899073,32964609,33030145,36044806,36110343,39780353,39911425,40370177,40435713,69140486,69402630,69468161,70778882,77266945,77332481,77398017,78118915,79364097,79429633,79560706,79953921,80019457,83099653,84934657,85000194,90243075,93388801,93454339,94306305,97845254,97910785,100335617,100401154,100532225,100597761,110428166,110624769,110755843,116260865,138608641,138739718,151846918,152109057,155254785,155320321,155385857,155713540,156434438,157745154,157810690,158007299,158466049,158531585,159186945,161873930,164691969,166002690,171376643,174129153,175046658,175177729,175833091,178192385],"applications":[196609],"add":[262145,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,30605314,51118082,51183618,51249154,69468163,83427331,111607810,111673345,162201603,168165377,174129154],"agiexception":[327683,10289155,28639239,28704775,28770311,69074945,69730310,77266947,155254795,155320325,155385861,158466053,158531589],"agihangupexception":[393219,10354691,28835846,69074946,77332483,155254785,155320330],"aginetworkexception":[458755,10420227,28901384,69074946,77398019,155254785,155385866],"authenticationfailedexception":[655363,18612227,55181319,55246855,69337090,76283910,84934659,93323265,150994945,164691980,175046657],"agentcallbacklogin":[786434,983046,69402625,69468162,80412673,102694913,159186946,166526977,166592513,175046658],"agent":[786441,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,44761096,44826632,44957703,45023239,69402628,69468171,73072642,73138178,80412676,80478210,85065729,85131265,85196801,85262337,85327873,85393409,85458946,85524483,85590020,85655553,85721091,85786625,85852161,85917699,85983235,86048769,86114317,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932354,88997890,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029506,91095042,91160577,91226114,91291651,91357186,91422723,91488258,91553794,91619331,91684866,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,102629378,102760454,103088136,117637121,117768198,117899271,118095873,118947841,119013377,119275526,119406598,119537669,119603202,119668737,119734273,119799813,119865346,136708097,142016513,142278657,142737409,143261697,143851521,154009601,159186952,159252485,159318017,166068226,166133761,166199297,166264833,166330369,166395905,166461442,166526980,166592517,166658050,166723588,166789122,166854658,166920196,166985732,167051265,167116814,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065922,170131458,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163074,172228610,172294145,172359682,172425219,172490754,172556291,172621826,172687362,172752899,172818434,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046665,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"agentcallbacklogoff":[786434,1048582,175046658],"agentcalled":[786435,1114119,85655553,118161414,166658049,175046659],"agentcomplete":[786433,1179653,175046657],"agentcompleteevent":[786433,1179650,19398659,56360967,69468162,85721091,118882306,118947842,119013378,163905541,166068225,166723594,175046657],"agentconnect":[786433,1245189,175046657],"agentconnectevent":[786433,1245186,19464195,56426503,69468162,85786627,119078914,119144450,119209986,163971077,166068225,166789130,175046657],"agentdump":[786433,1310725,175046657],"agentdumpevent":[786433,1310722,19529731,56492039,69468162,85852163,164036613,166068225,166854666,175046657],"announcement":[786433,1310721,69468161,166854657,175046657],"agentlogin":[786435,1376262,1441793,69468162,166920193,166985729,175046659],"agentloginevent":[786433,1376258,19595267,56557575,69468162,85917699,119275522,119341059,164102149,166920202,166985729,170328065,175046657],"agentlogoff":[786433,1441797,80478209,103022593,159252481,175046657],"agentcallbacklogoffevent":[786433,1048577,1441793,19267587,56229895,69468163,85590019,117899266,117964803,118030339,118095874,163774469,166526977,166592522,166985729,170328065,175046657],"agents":[786434,1507333,1572865,69402627,69468161,80543745,85590017,103219201,118095873,159318019,162725889,166592513,167051265,175046658],"agentsevent":[786433,1507330,19791875,56754183,69402625,69468162,86114307,119537666,119603202,119668738,119734274,119799810,119865346,159318018,164298757,167116810,173211649,175046657],"agentsaction":[786434,1507329,1572865,14221315,45088772,45154310,69402626,69468162,80543747,103219202,159318026,161677313,167051266,167116802,175046658],"agentscomplete":[786433,1572869,175046657],"agentscompleteevent":[786433,1572866,19726339,56688647,69402625,69468162,86048771,159318018,164233221,167051274,173211649,175046657],"agiexec":[786434,1638406,175046658],"alarm":[786435,1703942,1769473,69468162,86310917,93192198,120258569,150274058,167247873,167313414,174325766,175046659],"alarmevent":[786434,1703938,1769473,19988483,56950791,69468163,86310915,120258562,164495365,167247873,167313418,170328065,175046658],"alarmclear":[786433,1769477,175046657],"attendedtransfer":[786433,1835014,175046657],"attempts":[786435,2818049,4718593,5505025,69468163,169279489,171966465,173015041,175046659],"action":[786435,2883585,2949121,4325377,6488065,6553601,6619137,9109507,9175042,9240578,9306114,9371651,9437187,9502723,9568259,9633795,9699331,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,16580610,16646146,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153474,18219009,18284545,18350081,18415617,18481153,18546689,27000834,27459589,27525125,27590661,27656197,27721733,27787269,27852805,27918341,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088772,45154306,45219844,45285378,45350928,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137348,46202884,46268419,46333956,46399490,46465026,46530563,46596098,46661636,46727170,46792708,46858242,46923779,46989314,47054851,47120386,47185923,47251458,47316996,47382530,47448066,47513602,47579141,47644678,47710210,47775746,47841282,47906818,47972356,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496644,48562178,48627715,48693250,48758786,48824322,48889858,48955394,49020930,49086467,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610756,49676290,49741828,49807362,49872900,49938434,50003970,50069506,50135042,50200578,50266116,50331652,50397187,50462724,50528259,50593794,50659333,50724866,50790404,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380231,51445762,51511298,51576834,51642370,51707906,51773442,51838981,51904514,51970054,52035586,52101122,52166658,52232195,52297730,52363267,52428804,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149700,53215234,53280772,53346306,53411843,53477380,53542914,53608450,53673987,53739524,53805059,53870602,53936139,54001676,54067213,54132745,54198274,54263812,54329349,54394885,54460418,54525956,54591490,54657027,54722562,54788099,54853634,54919171,54984708,55050242,55115778,64487434,64552971,64880642,65142794,65208331,65273866,65339402,65404938,66387978,66715657,67371013,69402640,69468165,69533701,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121223,74186753,74252289,74317825,74383361,74448897,74514434,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890690,75956225,76021761,76087297,76152833,76218369,76677122,80347140,80412676,80478212,80543748,80609284,80674819,80740355,80805891,80871428,80936964,81002500,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247684,82313220,82378756,82444292,82509828,82575364,82640900,82706436,82771973,82837507,82903043,82968579,83034116,83099652,83165188,83230724,83296260,83361795,83427332,83492867,83558404,83623939,83689475,83755012,83820547,83886083,83951620,84017156,84082692,84148228,84213763,84279299,84344836,84410372,84475910,84541444,84606980,84672516,84738052,84803588,84869124,86048770,86114306,87425026,87556098,87949314,90374146,90439682,90570754,90701826,90767362,91160578,91357186,91684866,91750402,91815938,92078082,92536834,92602370,93126658,93192194,93257729,93323266,93519873,93650945,93716485,93782021,93847557,93913093,93978629,94044165,94109701,94175237,102432777,102498306,102563842,102629378,102694921,102760450,102825986,102891522,102957058,103022602,103088130,103153666,103219209,103284745,103350275,103415811,103481354,103546883,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464394,104529922,104595458,104660994,104726530,104792074,104857603,104923139,104988675,105054217,105119746,105185289,105250818,105316354,105381897,105447426,105512970,105578499,105644035,105709578,105775107,105840650,105906186,105971715,106037258,106102787,106168323,106233866,106299395,106364931,106430474,106496003,106561546,106627075,106692618,106758147,106823690,106889219,106954755,107020298,107085834,107151370,107216906,107282435,107347978,107413506,107479042,107544586,107610114,107675650,107741194,107806722,107872258,107937802,108003330,108068866,108134402,108199945,108265474,108331017,108396546,108462082,108527625,108593154,108658697,108724226,108789762,108855305,108920834,108986377,109051906,109117442,109182978,109248514,109314050,109379593,109445129,109510658,109576201,109641731,109707272,109772803,109838339,109903874,109969417,110034946,110100482,110166018,110231554,110297090,110362633,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083529,111149058,111214594,111280130,111345666,111411209,111476745,111542281,111607810,111673346,111738882,111804418,111869954,111935498,112001027,112066563,112132099,112197635,112263171,112328713,112394242,112459778,112525314,112590858,112656387,112721923,112787459,112853002,112918531,112984067,113049603,113115139,113180681,113246210,113311746,113377290,113442819,113508362,113573891,113639433,113704962,113770498,113836041,113901571,113967106,114032642,114098178,114163714,114229257,114294786,114360322,114425858,114491401,114556930,114622466,114688002,114753546,114819082,114884610,114950153,115015689,115081218,115146761,115212291,115277826,115343363,115408898,115474441,115539970,115605506,115671049,115736578,115802121,115867650,115933193,115998722,116064265,116129801,116195330,145293313,145358849,150470662,151519234,152371208,152764424,152961025,153747458,153944065,154075137,154206209,159121416,159186951,159252487,159318024,159383560,159449095,159514631,159580167,159645705,159711239,159776775,159842311,159907847,159973383,160038919,160104455,160169991,160235527,160301063,160366599,160432135,160497671,160563207,160628743,160694285,160759815,160825351,160890887,160956422,161021959,161087495,161153033,161218567,161284103,161349641,161415175,161480711,161546248,161611839,161677332,161742857,161808391,161873931,161939463,162005000,162070535,162136071,162201607,162267143,162332679,162398215,162463751,162529287,162594823,162660359,162725897,162791431,162856967,162922504,162988039,163053575,163119112,163184647,163250191,163315719,163381255,163446791,163512327,163577864,163643399,167051267,167116803,168558594,168689666,169082883,169148417,169213953,171507714,171573252,171704323,171835394,171900932,172294147,172490755,172818434,172883971,172949507,173211652,173670403,173735939,174260227,174325763,174718977,175046663,177274881,177405953,177471500,177537036,177602570,177668106,177733643,177799179,177864714,177930254],"added":[786433,5111809,51118081,51183618,51249154,68943873,69468161,83427331,91291653,91357189,91684869,111738882,111869953,142213121,142344195,142475265,142671873,142868483,143065089,162201603,172425222,172490757,172818437,175046657,178913281],"active":[786433,5636097,28246017,68812801,69402628,69468161,92471297,148439041,159973377,162004993,163119106,173604865,173735937,175046657,178913281],"assembly":[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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,80150530,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515272,101580803,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728195,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281],"agentcallbacklogineventhandler":[983047,69337089,163708934],"agentcallbackloginevent":[983041,19202051,56164359,69468162,85524483,117768194,117833731,163708933,166526986,166592513,170328065],"agentcallbacklogoffeventhandler":[1048583,69337089,163774470],"agentcalledeventhandler":[1114119,69337089,163840006],"agentcalledevent":[1114113,19333123,56295431,69468162,85655555,118161411,118226947,118292483,118358018,118423554,118489091,118554627,118620163,118685699,118751235,118816771,163840005,166133761,166658058],"agentcompleteeventhandler":[1179655,69337089,163905542],"agentconnecteventhandler":[1245191,69337089,163971078],"agentdumpeventhandler":[1310727,69337089,164036614],"agentlogineventhandler":[1376263,69337089,164102150],"agentlogoffeventhandler":[1441799,69337089,164167686],"agentlogoffevent":[1441793,19660803,56623111,69468161,85983235,119406594,119472131,164167685,166920193,166985737,170328065],"agentseventhandler":[1507335,69337089,164298758],"agentscompleteeventhandler":[1572871,69337089,164233222],"agiexechandler":[1638407,69337089,164364294],"agiexecevent":[1638401,19857411,56819719,69468161,86179843,119930883,119996419,120061955,120127491,120193027,164364293,167182345,170328065],"alarmeventhandler":[1703943,69337089,164495366],"alarmcleareventhandler":[1769479,69337089,164429830],"alarmclearevent":[1769473,19922947,56885255,69468161,86245379,164429829,167247881,170328065],"attendedtransfereventhandler":[1835015,69337089,164626438],"attendedtransferevent":[1835009,20119555,57081863,69468161,86441987,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,164626437,167444490,170328065],"agi_additional_attribute_pattern":[6356993,7405574,155058177],"agi_additional_attributes_pattern":[6356993,7340038,155058177],"agi_bind_address":[6356993,7471109,155058177],"agi":[6356995,7471105,7536641,7995393,69074945,69402625,69468161,77201409,77529096,80609281,94502913,95420417,95551492,95617025,95879169,96206849,103284737,155058179,155123713,155254785,155648008,159383554,167182337],"address":[6356993,7471105,34144257,90701825,140115969,155058177,171835393],"agi_bind_port":[6356993,7536645,155058177],"agi_default_max_digits":[6356993,7602182,155058177],"agi_default_resource_bundle_name":[6356993,7667718,155058177],"agi_default_timeout":[6356993,7733254,155058177],"agi_end_of_proper_usage":[6356993,7798790,155058177],"agi_parameter_pattern":[6356993,7864326,155058177],"agi_parenthesis_pattern":[6356993,7929862,155058177],"agi_pool_size":[6356993,7995397,155058177],"agi_result_pattern":[6356993,8060934,155058177],"agi_script_pattern":[6356993,8126470,155058177],"agi_status_pattern":[6356993,8192006,155058177],"agi_synopsis_pattern":[6356993,8257542,155058177],"asterisk_version":[6356993,8323078,155058177],"asteriskfastagi":[6422531,8978434,9043970,10813443,33685507,33751043,33816583,33882120,33947659,34013191,34078728,34144263,34209804,69074945,70909968,77660163,96534530,96600067,96665602,96731139,155844630],"agichannel":[6422530,8978433,9043969,10158083,28311557,28377099,28442634,32636936,69074946,69664774,77201411,94502914,96468998,155123724,155844610],"action_append":[6619137,9371654,163250177],"action_delcat":[6619137,9437190,163250177],"action_delete":[6619137,9502726,163250177],"action_newcat":[6619137,9568262,163250177],"action_renamecat":[6619137,9633798,163250177],"action_update":[6619137,9699334,163250177],"arrive":[6750209,9895937,175046657],"attributes":[6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,10092550,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,57475078,60030982,67305478,67371010,67567622,67764230,69468163,69533698,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136511494,153812998,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129156,174194689,174260225,174325761,177471492,177537028,177602564,177668102,177733636,177799172,177864708,177930244],"array":[8716289,8781825,8912897,9961473,28114946,43384833,43646977,43909121,44433409,68222980,154796035,178782210],"api":[8912897,65536001,65601537,82837505,82903041,82968577,83361793,85000193,91357185,91684865,91881473,109707265,111017985,116260865,116523009,142868481,144769025,158793729,161611777,161677313,161742849,162136065,166002689,172490753,172818433,173015041],"agiconnectionhandler":[10223619,28508163,28573704,68812806,69074946,155189258],"agireader":[10485763,28377104,28966916,29032452,29097991,69074946,69664769,155123713,155189249,155451402],"agireply":[10551299,28311557,28966917,29163522,29229058,29294594,29360130,29425666,29491204,29556743,29622280,69074946,69795846,77463555,94502918,94568450,94633987,94699523,94765058,94830594,155516940],"additional":[10551298,29163522,69402625,69468162,77266945,77332481,77398017,79953921,80019457,84017153,84934657,85000193,93388801,94306305,114098177,155254785,155320321,155385857,155516930,155582465,158466049,158531585,162791426,164691969,166002689,173211649,174129153,175177729,178192385],"attribute":[10551298,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,29163524,67371012,69533698,93323265,116260865,151519233,155516930,175046657,177471490,177537026,177602562,177668098,177733634,177799170,177864707,177930243],"agirequest":[10616835,29032453,29687813,29753348,29818885,29884420,29949958,32636936,41353224,41615370,41943050,42401802,69074947,77529091,94896130,94961667,95027203,95092739,95158275,95223811,95289347,95354882,95420418,95485955,95551490,95617026,95682562,95748099,95813635,95879170,95944707,96010243,96075779,96141315,96206850,96272386,96337922,96403458,155320321,155648010],"agiscript":[10682371,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539779,30605314,30670850,30736386,30801924,30867458,30932994,30998530,31064066,31129603,31195138,31260674,31326210,31391746,31457282,31522820,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636933,32702467,32768004,32833539,32899075,32964611,33030147,33095682,33161218,33226754,33292290,33357826,33423362,33488902,41353221,41615366,41943046,42401798,69074948,69206018,69861378,69926914,69992450,70057986,70123522,70189058,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,77594627,80150529,96468995,101646337,155189249,155713545,158662658,158728193,158793730],"answer":[10682369,30015493,155713537],"answers":[10682369,30015489,155713537],"allowing":[10682372,30081025,30146561,30212097,30277633,69140482,69861380,155713540,156106753,158138369],"audio":[10682372,30081025,30146561,30212097,30277633,69140482,69861380,77529090,95551490,155648002,155713540,156106753,158138369],"ascii":[10682372,30081025,30146561,30212097,30277633,69140490,69861380,93323265,151584769,155713540,156106753,156631041,157089793,157155329,157220865,157286401,157351937,157417473,158138369,158334977,175046657],"available":[10682378,28246017,30081025,30146561,30212097,30277633,31064065,31129601,31850497,31916033,31981569,32047105,51576834,51707905,68812801,69140484,69402631,69468176,69861380,70123522,70451204,75169793,83558404,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291651,91357188,91422722,91488260,91553794,91619330,91684868,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,112394241,112459778,112525313,136708097,136904705,142540801,143196162,143458305,143654913,154009601,155582465,155713546,156106753,156565505,156958721,157155329,159186945,159318017,160956417,162332679,162988033,163053569,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051267,167116803,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082883,169148418,169213954,169279491,169345026,169410563,169476098,169541634,169607170,169672707,169738242,169803778,169869315,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638787,171704322,171769859,171835394,171900931,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425220,172490756,172556291,172621829,172687362,172752899,172818436,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867011,173932546,173998082,174063619,174129154,174194690,174260226,174325762,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,178913281],"adds":[10682369,18153473,27328513,28246017,30605313,51118081,51183617,51249153,51314689,51380225,54132737,66453505,68812801,69140481,69337089,69402626,75038723,75104258,75890689,155713537,156368897,160956417,162201604,162267138,163250177,177274881,177340417,178913281],"allowed":[10682370,30998529,31588353,31653889,69140481,70320130,155713538,157024257],"autohangup":[10682369,32702465,39518209,69140481,155713537,157614081],"agiwriter":[10747907,28377104,33554436,33619975,69074946,69664769,155123713,155779082],"agicommand":[10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,28311560,33554439,34275332,34340869,34406404,34471942,69140481,155582468,155910155,155975688,156041224,156106760,156172296,156237832,156303368,156368904,156434440,156499976,156565512,156631048,156696584,156762120,156827656,156893192,156958728,157024264,157089800,157155336,157220872,157286408,157351944,157417480,157483016,157548552,157614088,157679624,157745160,157810696,157876232,157941768,158007304,158072840,158138376,158203912,158269448,158334984],"answercommand":[10944515,34537476,34603014,69140481,155910145,155975690],"accept":[13828097,42663943,158859265],"associated":[13893633,42860545,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,158924801,164691969,166002689,175177729,178192385],"absolutetimeoutaction":[14024707,44564487,44630023,69402626,73007110,80347139,102432770,102498306,102563842,159121420,161611777],"agentcallbackloginaction":[14090243,44695559,44761095,44826631,69402626,73072648,80412675,102629378,102694914,102760450,102825986,102891522,102957058,159186958,161611777],"agentlogoffaction":[14155779,44892167,44957703,45023239,69402626,73138184,80478211,103022594,103088130,103153666,159252494,161611777],"actioncompleteeventclass":[14221314,14811138,14876674,15794178,16580609,16777218,16908290,17629186,17891330,17956866,18022402,18481154,45088776,46202888,46333960,47972360,49610758,50266120,50790408,52428808,53149704,53280776,53477384,54984712,69402625,159318018,159907842,159973378,160890882,161677314,161873922,162004994,162725890,162988034,163053570,163119106,163577858],"agiaction":[14286851,45219848,69402625,80609283,103284738,103350275,103415811,159383561,161611777],"aocmessageaction":[14352387,45285382,45350932,69402625,73203716,80674819,103481347,103546883,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,159449098,161611777],"atxferaction":[14417923,45416454,45481990,69402625,73269252,80740355,104464387,104529922,104595458,104660994,104726530,159514634,161611777],"actioncompleteresponseclass":[16056322,16646145,18153474,48496648,49741830,53739528,69402625,161153026,161742850,163250178],"addcommand":[18153478,53805063,53870600,53936137,54001674,54067211,54132742,69402625,75890695,163250183],"abstractagentevent":[18743299,55377927,69468161,85065731,85721091,85786627,85852163,88539139,116326402,116391938,116457474,166068233,166133761,166723592,166789128,166854664,169672712],"abstractagentvariables":[18743300,18808835,19333124,19398660,19464196,19529732,22216708,55443460,55508995,55574532,55640067,55705607,69468161,85065729,85131267,85655553,85721089,85786625,85852161,88539137,116523010,166068234,166133770,166658058,166723590,166789126,166854662,169672710,170328065],"abstractchannelevent":[18874371,55771143,69468161,85196803,88604681,90177545,90308617,116588546,116654082,116719619,116785154,116850690,116916226,116981763,117047299,117112835,166199305,169738254,170328065,171311118,171442190],"abstractconfbridgeevent":[18939907,55836679,55902216,69468161,76349446,85262339,87228417,87293953,87359489,87490561,87621633,87687169,87752705,117178371,166264845,168361990,168427526,168493062,168624134,168755206,168820742,168886278,170328065],"abstractmeetmeevent":[19005443,55967751,69468161,85327875,89260034,89325570,89391106,89456642,89522178,89587714,89653250,117243906,117309443,166330378,170328065,170393607,170459143,170524679,170590215,170655751,170721287,170786823],"abstractparkedcallevent":[19070979,56033287,69468161,85393411,90505220,90636292,92930052,117374978,117440514,117506050,117571586,166395913,170328065,171638793,171769865,174063625],"abstractqueuememberevent":[19136515,56098823,69468161,85458947,91291650,91422722,91488258,91553794,91619330,117637122,117702658,166461449,170328065,172425223,172556295,172621831,172687367,172752903],"asyncagievent":[20054019,57016327,69468161,86376451,120324099,120389635,120455171,120520707,167378954,170328065],"asteris":[27000834,46858241,46923777,49086466,49152001,49217537,64880641,64946177,69402626,69468161,69533698,73859074,76611586,80412674,82575361,88539137,93323267,102629377,102957057,109248513,134021121,151060481,151191553,151650305,159186947,159776769,160235522,161349633,166330369,169672705,175046661,177537025,177668097],"ans":[27000833,65273857,76677121,175046657],"addevent":[27328513,66453509,177340417],"alert_info":[27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,67371010,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"alertinfo":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"algorithm":[28114946,45678593,45744129,49152001,49217537,68091906,68157447,68288519,73400322,77070338,82575361,109051905,159645698,161349633,178782211],"append":[28114945,52887558,54132737,68222977,69402626,69468161,84082691,114294790,114425857,162856964,163250177,174129153,178782209],"addjob":[28246017,68812806,68943873,178913282],"agiexeption":[28704769,28770305,69730306,155254786],"abstract":[29491201,29884417,32636931,34275331,34406401,34537473,34668545,34865153,35323905,35520513,35717121,35848193,35979265,36175873,36438017,36634625,36831233,36962305,37158913,37289985,37486593,37683201,37879809,38076417,38404097,38600705,38797313,38993921,39190529,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40304641,40501249,40632321,40894465,41025537,41156609,41353217,41418753,41615361,41680897,41943041,42008577,42401793,42467329,45088769,46202881,46333953,47972353,48496641,49610755,49741827,49872897,50266113,50397185,50528257,50790401,52428801,53149697,53280769,53477377,53739521,54984705,55508993,55640065,57475073,59965441,60030977,60096513,64028673,64356353,64421889,66191361,66322433,66584577,66650113,67502081,67567617,67633153,67895297,68419585,69074945,69468170,102432769,102694913,103022593,103219201,103284737,103481345,104464385,104792065,105054209,105185281,105381889,105512961,105709569,105840641,105906177,106037249,106233857,106430465,106561537,106692609,106823681,107020289,107085825,107151361,107216897,107347969,107544577,107741185,107937793,108199937,108331009,108527617,108658689,108855297,108986369,109379585,109445121,109576193,109707267,109838337,109969409,110362625,111083521,111411201,111476737,111542273,111935489,112328705,112590849,112852993,113180673,113377281,113508353,113639425,113836033,114229249,114491393,114753537,114819073,114950145,115015681,115146753,115474433,115671041,115802113,115933185,116064257,116129793,136511489,150470657,150536193,152371201,152436737,152764417,152829953,153812993,155058177,155254785,155713538,155910146,161611778,161677314,161742850,162136066,166068227,166133762,166199299,166330371,166395907,166461443,167575554,168099842,169017347,170328067,172359683,173211651,174129153],"allow":[30146561,30212097,30277633,31588353,31653890,31784961,31916033,31981569,32047105,32178177,32309249,32440321,32571393,33292289,35127297,35192833,35258369,37748737,37814274,38010881,38207489,38273025,38338561,38535169,38731777,38928385,39124993,40763393,40828929,77791233,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79691777,96862209,98828289,99155969,99352577,99614721,99680257,99811329,99942401,100794369,156106753,157024257,157089793,157155329,157220865,157286401,157351937,157417473,158138369],"agiserver":[34013185,34144257,69074945,77660161,96665601,155189249,155844609],"args":[43384838,43646982,43909126,44433414,69140482,156565505,156696577],"absolutetimeout":[44630017,69402625,80347137,102432769,159121410],"advice":[45285377,45350913,73203714,159449090],"aocbillingid":[45350918,80674817,103546886,159449089],"attended":[45416449,45481985,73269250,92667905,149684225,159514626,173801473],"authtype":[45744133,49152005,49217541,80871425,82575361,105119749,109051909,159645697,161349633],"alogrithm":[45744129,49152001,49217537,80871425,82575361,105119745,109051905,159645697,161349633],"applies":[48365569,74448897,161021953],"assumed":[49414145,49545217,82706433,82771969,83427329,109510657,109641729,111804417,161480705,161546241,162201601],"authentication":[55181313,55246850,69402625,91881473,93323265,144769025,150929409,161349633,173015041,175046657],"asteriskversion":[64684037,69337089,93323265,150601740,164560902,175046657],"autoresetevent":[66387976,66715655],"autoevent":[66387974,66715654],"agiscripts":[69074946,77660161,96600065,155713538,155844609],"agireplystatuses":[69074945,155582470],"actions":[69337089,69402625,82837505,82903041,82968577,83361793,84475905,109707265,115212293,161611777,161677313,161742849,162136065,163250178,177340417],"absolute":[69402626,159121410],"agen":[69402625,159186945],"authenticates":[69402625,161349633],"answered":[69402625,83099649,88932353,88997889,91029505,91095041,91226113,91291650,91357186,91684866,91750401,93454337,110952449,142016513,142147585,142213121,142606337,142671873,144375810,152305665,161873922,170065921,170131457,172163073,172228609,172359681,172425218,172490754,172818434,172883969,175833089],"async":[69402625,83099649,110493701,161873922],"apps":[69402629,69468176,162201601,162332673,162529281,162725889,162856961,166658049,169279489,169672705,170065921,170131457,170459137,170524673,170655745,170852353,172294145,172425217,172490753,172556289,172752897,172883969,174129153],"app_queue":[69402628,69468169,162201601,162332673,162529281,162725889,166658049,170065921,170131457,172294145,172425217,172490753,172556289,172752897,172883969],"appended":[69402625,84082689,114294785,162856962],"app_setcdruserfield":[69402625,162856961],"appropriate":[69402625,69468161,85590017,118095873,163250177,166592513,174129153],"action_":[69402625,163250177],"avoiding":[69402625,163250177],"agentcalledevents":[69468161,166658049],"agiexecevents":[69468161,167182337],"app_dial":[69468161,169279489],"app_rxfax":[69468161,169672705],"app_meetme":[69468163,170459137,170524673,170655745],"app_voicemail":[69468161,170852353],"assigned":[69468161,77266945,77332481,77398017,79953921,80019457,84934657,85000193,91750401,93388801,94306305,144506881,155254785,155320321,155385857,158466049,158531585,164691969,166002689,172687361,172883969,175177729,178192385],"arbitrary":[69468161,174129153],"app_userevent":[69468161,174129153],"algorithms":[69599233,178782209],"accountcode":[77529089,85196802,86573057,86769665,86900737,87031809,88604674,90046465,90177538,90308610,94896133,116588550,127205382,129368070,138149894,155648001,166199298,167575553,167772161,168034305,168165377,169738242,171180033,171311106,171442178],"account":[77529089,83099651,88801281,92602370,93454339,94896129,110297095,134938630,148570119,151781383,155648001,161873923,169934849,173735938,175833091],"agirequests":[77660161,96600065,155844609],"actionid":[80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,86048769,86114305,87425025,87556097,87949313,90374145,90439681,90570753,90701825,90767361,91160577,91357185,91684865,91750401,91815937,92078081,92536833,92602369,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109772806,145293317,153747461,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,167051265,167116801,168558593,168689665,169082881,171507713,171573249,171704321,171835393,171900929,172294145,172490753,172818433,172883969,172949505,173211649,173670401,173735937,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"ackcall":[80412673,102629381,159186945],"acknowledgement":[80412674,102629378,159186946],"asteri":[82575361,109314049,161349633],"asynchronous":[83099649,110493697,161873921],"assumes":[83099649,110952449,161873921],"assignments":[83099650,111017986,161873922],"abc":[83099650,85065729,85131265,85655553,85721089,85786625,85852161,88539137,111017986,116523009,161873922,166068225,166133761,166658049,166723585,166789121,166854657,169672705],"actio":[84475905,115212289,163250177],"actionbuilder":[84475905,115212289,163250177],"actual":[84475905,115212289,163250177],"avoided":[85000193,116260865,166002689],"actioncompleteevent":[85000193,116260865,166002689],"authorization":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136708097,154009601,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"autologoff":[85590019,118095875,166592515],"answering":[85590017,118095873,166592513],"agentname":[85655553,118226950,166658049],"agentid":[86114305,119537665,167116801],"agent_loggedoff":[86114305,119799809,167116801],"agent_idle":[86114305,119799809,167116801],"agent_oncall":[86114305,119799809,167116801],"agent_unknown":[86114305,119799809,167116801],"amaflags":[87031809,129433606,168165377],"answertime":[87031809,129499142,168165377],"admin":[87490561,131530758,168624129],"aclname":[88473601,133758982,169607169],"appdata":[90243073,138608645,171376641],"appdevent":[90243073,138674182,171376641],"acl":[90701825,139853830,171835393],"accepting":[91291649,91422721,91488257,142409729,143327233,143589377,172425217,172556289,172621825],"ast_device_unknown":[91291649,91357185,91684865,142540801,143196161,172425217,172490753,172818433],"ast_device_not_inuse":[91291649,91357185,91684865,142540801,143196161,172425217,172490753,172818433],"ast_device_inuse":[91291649,91357185,91684865,142540801,143196161,172425217,172490753,172818433],"ast_device_busy":[91291649,91357185,91684865,142540801,143196161,172425217,172490753,172818433],"ast_device_invalid":[91291649,91357185,91684865,142540801,143196161,172425217,172490753,172818433],"ast_device_unavailable":[91291649,91357185,91684865,142540801,143196161,172425217,172490753,172818433],"abandoned":[91750402,143917063,172883970],"average":[91750401,144113666,172883969],"auth":[91881473,144769025,173015041],"attempt":[93323266,150929409,150994945,175046658],"arrival":[93323265,151519233,175046657],"anymore":[111017988,116523012],"aware":[111017988,116523012],"abstractclassattribute":[155058177,155713537,155910145,161611777,161677313,161742849,162136065,166068225,166133761,166199297,166330369,166395905,166461441,167575553,168099841,169017345,170328065,172359681,173211649],"asterisk_1_0":[164560897],"asterisk_1_2":[164560897],"asterisk_1_4":[164560897],"asterisk_1_6":[164560897],"asterisk_1_8":[164560897],"asterisk_10":[164560897],"asterisk_11":[164560897],"asterisk_12":[164560897],"asterisk_13":[164560897]} \ No newline at end of file +{"automatically":[1,5242881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,27328513,34144257,41484289,41549825,62062593,63832065,68550658,73924609,94961666,151650305,153550850,156172290,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"asternet":[65537,131073,196614,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900550,1966086,2031621,2097157,2162694,2228230,2293766,2359302,2424838,2490374,2555909,2621446,2686982,2752518,2818054,2883590,2949126,3014661,3080197,3145734,3211269,3276806,3342342,3407878,3473414,3538949,3604485,3670022,3735557,3801093,3866629,3932166,3997702,4063238,4128774,4194310,4259846,4325382,4390918,4456453,4521990,4587526,4653062,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,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,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,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,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,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937612,23003155,23068684,23134214,23199757,23265285,23330821,23396357,23461893,23527431,23592967,23658503,23724040,23789573,23855109,23920645,23986181,24051717,24117255,24182789,24248326,24313864,24379399,24444936,24510471,24576005,24641541,24707078,24772614,24838150,24903686,24969221,25034757,25100293,25165830,25231365,25296901,25362437,25427975,25493509,25559045,25624581,25690117,25755654,25821189,25886725,25952261,26017797,26083333,26148871,26214405,26279941,26345477,26411013,26476549,26542085,26607621,26673157,26738693,26804229,26869765,26935301,27000837,27066373,27131909,27197445,27262992,27328518,27394055,27459590,27525126,27590662,27656198,27721733,27787269,27852805,27918341,27983877,28049413,28114949,28180490,28246024,28311558,28377094,28442629,28508168,28573710,28639237,28704774,28770309,28835850,28901383,28966920,29032455,29097989,29163527,29229061,29294599,29360133,29425669,29491207,29556741,29622277,29687813,29753349,29818885,29884421,29949959,30015493,30081029,30146567,30212101,30277637,30343175,30408709,30474247,30539781,30605319,30670853,30736389,30801927,30867461,30932997,30998533,31064071,31129605,31195141,31260679,31326213,31391749,31457287,31522821,31588359,31653893,31719429,31784967,31850501,31916039,31981573,32047109,32112647,32178181,32243718,32309255,32374789,32440325,32505863,32571397,32636933,32702471,32768006,32833541,32899077,32964613,33030151,33095685,33161221,33226759,33292293,33357829,33423367,33488901,33554437,33619975,33685509,33751045,33816583,33882117,33947655,34013189,34078727,34144261,34209799,34275333,34340871,34406405,34471943,34537477,34603015,34668549,34734087,34799621,34865157,34930695,34996229,35061765,35127303,35192838,35258375,35323909,35389445,35454981,35520519,35586054,35651591,35717125,35782663,35848197,35913733,35979276,36044806,36110341,36175877,36241420,36306950,36372485,36438023,36503558,36569100,36634630,36700165,36765702,36831240,36896779,36962309,37027852,37093382,37158917,37224454,37289991,37355526,37421064,37486597,37552133,37617669,37683205,37748741,37814279,37879815,37945352,38010888,38076423,38141959,38207496,38273032,38338567,38404103,38469640,38535176,38600709,38666252,38731782,38797318,38862855,38928391,38993928,39059464,39124997,39190533,39256069,39321605,39387141,39452677,39518213,39583749,39649285,39714823,39780357,39845895,39911429,39976979,40042501,40108037,40173573,40239109,40304645,40370181,40435717,40501253,40566789,40632325,40697861,40763399,40828935,40894470,40960007,41025541,41091077,41156614,41222149,41287687,41353221,41418759,41484293,41549830,41615365,41680902,41746437,41811974,41877509,41943047,42008581,42074117,42139653,42205189,42270726,42336261,42401797,42467333,42532869,42598407,42663941,42729477,42795013,42860549,42926085,42991621,43057157,43122695,43188229,43253765,43319301,43384837,43450373,43515909,43581445,43646981,43712518,43778053,43843589,43909125,43974661,44040197,44105733,44171269,44236807,44302341,44367879,44433413,44498951,44564485,44630021,44695557,44761093,44826629,44892167,44957703,45023238,45088775,45154310,45219845,45285384,45350917,45416455,45481989,45547525,45613061,45678597,45744133,45809669,45875205,45940741,46006282,46071813,46137349,46202885,46268421,46333957,46399493,46465032,46530565,46596105,46661637,46727173,46792709,46858246,46923781,46989318,47054855,47120389,47185925,47251461,47316997,47382533,47448069,47513605,47579141,47644677,47710213,47775751,47841285,47906823,47972357,48037894,48103431,48168965,48234501,48300038,48365575,48431110,48496647,48562184,48627721,48693258,48758789,48824325,48889863,48955400,49020936,49086469,49152007,49217541,49283078,49348613,49414150,49479685,49545222,49610759,49676293,49741829,49807365,49872901,49938438,50003976,50069511,50135046,50200583,50266118,50331656,50397192,50462725,50528264,50593800,50659336,50724870,50790408,50855944,50921480,50987016,51052552,51118088,51183624,51249160,51314696,51380232,51445768,51511304,51576840,51642376,51707912,51773448,51838984,51904520,51970056,52035592,52101125,52166664,52232200,52297736,52363272,52428808,52494344,52559880,52625416,52690952,52756488,52822024,52887560,52953096,53018632,53084168,53149704,53215240,53280776,53346312,53411848,53477384,53542920,53608456,53673992,53739528,53805061,53870600,53936136,54001672,54067208,54132744,54198280,54263816,54329352,54394888,54460424,54525960,54591493,54657029,54722565,54788101,54853638,54919176,54984712,55050248,55115784,55181320,55246856,55312392,55377928,55443464,55509000,55574536,55640072,55705608,55771144,55836680,55902216,55967752,56033288,56098824,56164360,56229896,56295432,56360968,56426504,56492040,56557576,56623112,56688648,56754184,56819720,56885256,56950790,57016328,57081862,57147398,57212934,57278470,57344006,57409542,57475080,57540616,57606152,57671688,57737224,57802760,57868296,57933832,57999368,58064904,58130440,58195976,58261512,58327048,58392584,58458120,58523656,58589192,58654728,58720265,58785800,58851336,58916872,58982408,59047942,59113478,59179020,59244558,59310087,59375623,59441159,59506693,59572231,59637765,59703301,59768838,59834378,59899923,59965450,60030988,60096524,60162053,60227589,60293126,60358661,60424197,60489736,60555271,60620806,60686343,60751878,60817413,60882950,60948490,61014026,61079568,61145094,61210629,61276166,61341706,61407242,61472773,61538309,61603845,61669383,61734917,61800453,61865989,61931525,61997062,62062597,62128134,62193669,62259205,62324743,62390277,62455814,62521350,62586887,62652421,62717957,62783493,62849029,62914565,62980101,63045637,63111173,63176709,63242245,63307781,63373317,63438853,63504392,63569925,63635461,63700995,63766532,63832067,63897604,63963139,64028675,64094212,64159747,64225283,64290819,64356354,64421890,64487426,64552962,64618498,64684034,64749570,64815106,64880642,64946178,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,65601538,65667074,65732610,65798146,65863682,65929218,65994754,66060290,66125826,66191362,66256898,66322434,66387970,66453506,66519042,66584578,66650114,66715650,66781186,66846722,66912258,66977794,67043330,67108866,67174402,67239938,67305474,67371010,67436546,67502082,67567618,67633154,67698690,67764226,67829762,67895298,67960834,68026370,68091906,68157442,68222978,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812802,68878338,68943874,69009410,69074946,69140482,69206018,69271554,69337090,69402626,69468162,69533698,69599234,69664770,69730306,69795842,69861378,69926914,69992450,70057986,70123522,70189058,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041026,71106562,71172098,71237634,71303170,71368706,71434242,71499778,71565314,71630850,71696386,71761922,71827458,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260037,89325573,89391110,89456646,89522181,89587717,89653253,89718790,89784326,89849862,89915398,89980934,90046470,90112005,90177541,90243078,90308613,90374149,90439685,90505222,90570758,90636293,90701830,90767366,90832902,90898438,90963973,91029509,91095045,91160581,91226118,91291653,91357189,91422725,91488262,91553798,91619333,91684869,91750405,91815941,91881477,91947013,92012549,92078085,92143621,92209157,92274693,92340229,92405765,92471301,92536837,92602373,92667909,92733445,92798981,92864517,92930053,92995589,93061125,93126661,93192197,93257734,93323269,93388805,93454341,93519877,93585413,93650949,93716485,93782021,93847557,93913093,93978629,94044165,94109701,94175237,94240773,94306309,94371845,94437381,94502917,94568453,94633989,94699525,94765061,94830597,94896133,94961669,95027205,95092741,95158277,95223813,95289349,95354885,95420421,95485957,95551493,95617029,95682565,95748101,95813637,95879173,95944709,96010245,96075781,96141317,96206854,96272390,96337925,96403461,96468997,96534534,96600070,96665606,96731141,96796678,96862214,96927750,96993286,97058822,97124358,97189893,97255429,97320965,97386501,97452037,97517573,97583109,97648645,97714181,97779717,97845253,97910789,97976325,98041861,98107398,98172934,98238470,98304006,98369542,98435078,98500614,98566150,98631686,98697222,98762758,98828294,98893830,98959366,99024902,99090438,99155974,99221510,99287045,99352581,99418117,99483653,99549190,99614726,99680262,99745798,99811333,99876869,99942405,100007941,100073477,100139013,100204549,100270086,100335622,100401158,100466694,100532230,100597766,100663302,100728838,100794374,100859910,100925446,100990982,101056518,101122054,101187590,101253126,101318662,101384198,101449734,101515270,101580806,101646342,101711878,101777414,101842950,101908486,101974022,102039558,102105094,102170629,102236165,102301702,102367237,102432773,102498310,102563845,102629381,102694918,102760453,102825989,102891525,102957061,103022597,103088133,103153669,103219205,103284741,103350277,103415813,103481349,103546885,103612421,103677957,103743493,103809029,103874565,103940101,104005637,104071173,104136709,104202245,104267781,104333317,104398853,104464389,104529926,104595462,104660997,104726533,104792069,104857605,104923141,104988677,105054213,105119749,105185285,105250821,105316357,105381893,105447429,105512965,105578501,105644037,105709573,105775109,105840645,105906181,105971717,106037253,106102789,106168325,106233861,106299397,106364933,106430469,106496005,106561541,106627077,106692614,106758150,106823686,106889222,106954758,107020294,107085829,107151365,107216901,107282437,107347974,107413510,107479046,107544582,107610118,107675654,107741190,107806726,107872262,107937797,108003333,108068869,108134406,108199942,108265478,108331014,108396549,108462085,108527621,108593157,108658694,108724229,108789765,108855301,108920837,108986373,109051909,109117445,109182981,109248517,109314053,109379589,109445125,109510662,109576198,109641733,109707269,109772805,109838341,109903877,109969413,110034949,110100485,110166021,110231557,110297093,110362629,110428165,110493701,110559237,110624773,110690309,110755845,110821381,110886917,110952453,111017989,111083525,111149061,111214597,111280133,111345669,111411205,111476742,111542277,111607813,111673349,111738886,111804422,111869958,111935494,112001029,112066566,112132101,112197637,112263173,112328709,112394245,112459781,112525317,112590853,112656389,112721925,112787461,112852997,112918533,112984069,113049605,113115141,113180677,113246213,113311749,113377286,113442821,113508358,113573894,113639429,113704966,113770502,113836038,113901573,113967109,114032646,114098182,114163718,114229254,114294790,114360326,114425861,114491397,114556933,114622469,114688005,114753541,114819077,114884614,114950149,115015686,115081221,115146757,115212293,115277829,115343365,115408901,115474438,115539974,115605510,115671046,115736582,115802117,115867654,115933190,115998726,116064262,116129798,116195334,116260870,116326406,116391942,116457478,116523014,116588550,116654086,116719622,116785158,116850694,116916230,116981766,117047302,117112838,117178374,117243910,117309446,117374982,117440518,117506054,117571590,117637126,117702662,117768198,117833734,117899270,117964806,118030342,118095878,118161414,118226950,118292486,118358022,118423558,118489094,118554630,118620166,118685702,118751238,118816774,118882310,118947846,119013382,119078918,119144454,119209990,119275526,119341062,119406598,119472134,119537670,119603206,119668742,119734278,119799814,119865350,119930886,119996422,120061958,120127494,120193030,120258566,120324102,120389638,120455174,120520710,120586246,120651782,120717318,120782854,120848390,120913926,120979462,121044998,121110534,121176070,121241606,121307142,121372678,121438214,121503750,121569286,121634822,121700358,121765894,121831430,121896966,121962502,122028038,122093574,122159110,122224646,122290182,122355718,122421254,122486790,122552326,122617862,122683398,122748934,122814470,122880006,122945542,123011078,123076614,123142150,123207686,123273222,123338758,123404294,123469830,123535366,123600902,123666438,123731974,123797510,123863045,123928582,123994118,124059654,124125190,124190726,124256262,124321798,124387334,124452870,124518406,124583942,124649478,124715014,124780550,124846086,124911622,124977158,125042694,125108230,125173766,125239302,125304838,125370374,125435910,125501446,125566982,125632518,125698054,125763590,125829126,125894662,125960197,126025734,126091270,126156805,126222342,126287877,126353414,126418950,126484486,126550022,126615558,126681094,126746630,126812166,126877702,126943238,127008774,127074310,127139846,127205382,127270918,127336454,127401990,127467526,127533062,127598597,127664133,127729669,127795205,127860741,127926278,127991813,128057349,128122885,128188421,128253957,128319494,128385030,128450565,128516101,128581638,128647173,128712709,128778246,128843782,128909318,128974854,129040389,129105925,129171461,129236997,129302534,129368070,129433606,129499141,129564677,129630213,129695749,129761285,129826821,129892357,129957893,130023429,130088965,130154501,130220037,130285573,130351109,130416646,130482182,130547718,130613254,130678790,130744326,130809862,130875398,130940934,131006470,131072006,131137542,131203078,131268614,131334150,131399686,131465222,131530758,131596294,131661829,131727365,131792901,131858437,131923973,131989509,132055045,132120581,132186117,132251653,132317189,132382725,132448261,132513797,132579334,132644870,132710406,132775942,132841478,132907014,132972550,133038086,133103621,133169157,133234693,133300229,133365766,133431302,133496838,133562374,133627910,133693446,133758982,133824517,133890054,133955589,134021125,134086661,134152197,134217734,134283269,134348805,134414341,134479877,134545414,134610950,134676486,134742022,134807558,134873094,134938630,135004165,135069701,135135237,135200773,135266309,135331845,135397382,135462917,135528453,135593990,135659525,135725062,135790598,135856134,135921670,135987205,136052742,136118278,136183813,136249349,136314885,136380421,136445957,136511493,136577030,136642566,136708102,136773638,136839174,136904710,136970246,137035782,137101318,137166854,137232389,137297925,137363461,137428997,137494533,137560069,137625605,137691141,137756677,137822213,137887749,137953285,138018821,138084357,138149893,138215429,138280965,138346501,138412037,138477573,138543110,138608645,138674181,138739717,138805253,138870789,138936325,139001861,139067397,139132933,139198469,139264005,139329541,139395077,139460613,139526149,139591685,139657221,139722757,139788293,139853829,139919365,139984901,140050437,140115973,140181509,140247045,140312581,140378117,140443653,140509189,140574725,140640261,140705797,140771333,140836869,140902405,140967941,141033477,141099013,141164549,141230085,141295621,141361158,141426694,141492230,141557766,141623302,141688838,141754374,141819910,141885446,141950982,142016518,142082054,142147590,142213126,142278662,142344198,142409734,142475270,142540806,142606342,142671878,142737414,142802950,142868486,142934022,142999558,143065094,143130630,143196166,143261702,143327238,143392774,143458310,143523846,143589382,143654918,143720454,143785990,143851526,143917062,143982598,144048134,144113670,144179206,144244741,144310278,144375813,144441350,144506885,144572421,144637957,144703493,144769030,144834566,144900101,144965638,145031173,145096710,145162246,145227782,145293318,145358854,145424390,145489926,145555461,145620997,145686533,145752070,145817606,145883142,145948678,146014214,146079749,146145285,146210821,146276357,146341894,146407430,146472966,146538502,146604037,146669573,146735109,146800645,146866181,146931717,146997253,147062789,147128325,147193861,147259397,147324933,147390469,147456005,147521541,147587077,147652614,147718149,147783685,147849221,147914757,147980293,148045829,148111365,148176901,148242437,148307974,148373510,148439046,148504581,148570118,148635654,148701190,148766726,148832262,148897797,148963333,149028870,149094406,149159942,149225478,149291013,149356549,149422085,149487621,149553157,149618693,149684229,149749765,149815301,149880837,149946373,150011909,150077445,150142981,150208518,150274054,150339590,150405126,150470662,150536198,150601734,150667270,150732805,150798341,150863877,150929413,150994951,151060486,151126022,151191562,151257095,151322631,151388167,151453702,151519238,151584774,151650310,151715846,151781383,151846957,151912456,151977992,152043527,152109063,152174599,152240135,152305671,152371207,152436743,152502279,152567816,152633351,152698887,152764423,152829959,152895495,152961031,153026567,153092103,153157639,153223175,153288711,153354247,153419783,153485319,153550855,153616391,153681927,153747463,153812999,153878535,153944071,154009607,154075143,154140679,154206215,154271751,154337286,154402823,154468359,154533894,154599431,154664967,154730503,154796038,154861575,154927110,154992646,155058183,155123719,155189255,155254794,155320328,155385864,155451400,155516936,155582473,155648007,155713543,155779080,155844616,155910152,155975688,156041224,156106760,156172296,156237832,156303368,156368904,156434440,156499976,156565512,156631048,156696584,156762120,156827657,156893191,156958727,157024263,157089800,157155335,157220871,157286409,157351943,157417480,157483016,157548607,157614101,157679626,157745159,157810698,157876231,157941770,158007303,158072840,158138375,158203912,158269447,158334984,158400520,158466055,158531592,158597128,158662664,158728199,158793735,158859271,158924808,158990344,159055880,159121415,159186952,159252487,159318023,159383559,159449095,159514632,159580167,159645702,159711238,159776774,159842310,159907846,159973382,160038918,160104454,160169990,160235526,160301062,160366598,160432134,160497670,160563207,160628742,160694279,160759815,160825351,160890887,160956423,161021959,161087494,161153030,161218566,161284102,161349638,161415174,161480710,161546247,161611782,161677318,161742854,161808390,161873927,161939463,162005004,162070538,162136074,162201617,162267152,162332682,162398224,162463751,162529287,162594824,162660361,162725897,162791433,162856967,162922503,162988041,163053577,163119111,163184647,163250183,163315720,163381256,163446792,163512330,163577865,163643401,163708937,163774473,163840006,163905542,163971081,164036618,164102151,164167688,164233224,164298761,164364297,164429833,164495369,164560905,164626441,164691977,164757513,164823049,164888584,164954123,165019657,165085192,165150728,165216265,165281800,165347335,165412872,165478407,165543944,165609481,165675016,165740551,165806087,165871624,165937160,166002696,166068232,166133768,166199303,166264897,166330377,166395912,166461448,166526985,166592520,166658056,166723593,166789127,166854664,166920200,166985736,167051272,167116808,167182343,167247880,167313415,167378952,167444489,167510025,167575560,167641097,167706632,167772168,167837706,167903239,167968776,168034312,168099848,168165384,168230921,168296459,168361992,168427529,168493064,168558600,168624136,168689672,168755208,168820744,168886281,168951817,169017351,169082888,169148423,169213979,169279496,169345032,169410568,169476104,169541640,169607176,169672713,169738249,169803784,169869319,169934855,170000392,170065928,170131463,170197000,170262537,170328073,170393606,170459143,170524678,170590214,170655750,170721286,170786822,170852358,170917894,170983430,171048966,171114502,171180038,171245574,171311110,171376646,171442182,171507718,171573254,171638790,171704326,171769862,171835399,171900934,171966470,172032006,172097542,172163078,172228614,172294150,172359686,172425223,172490758,172556294,172621830,172687366,172752902,172818438,172883974,172949510,173015046,173080582,173146118,173211654,173277190,173342726,173408262,173473798,173539337,173604872,173670408,173735943,173801480,173867016,173932551,173998094,174063623,174129158,174194695,174260231,174325766,174391302,174456838,174522374,174587910,174653446,174718982,174784518,174850054,174915590,174981126],"asterisk":[196611,5111810,5242896,11141121,11206657,21626883,23986177,24051713,24576001,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25690113,25755649,26476545,26542081,26607617,26673153,27983873,44236801,44367873,59506690,59572225,59637761,60227586,60293122,63766530,63832076,64028678,64094229,64159781,64225282,64552964,64618498,64815106,65142788,71303170,75563009,75694081,77266945,77791233,79691777,79757317,79822853,79888388,79953924,80019460,80084996,80150546,80216068,80281604,80347141,80412677,80478213,80543749,80609284,80674820,80740356,80805892,80871428,80936964,81002500,81068036,81133572,81199108,81264644,81330180,81395716,81461252,81526788,81592324,81657860,81723396,81788932,81854468,81920004,81985540,82051076,82116612,82182148,82247684,82313220,82378756,82444292,82509828,82575364,82640900,82706436,82771972,82837508,82903044,82968580,83034116,83099652,83165188,83230726,83296260,83361796,83427332,83492868,83558404,83623940,83689476,83755012,83820548,83886084,83951620,84017156,84082692,84148228,84213764,84279300,84344836,84410372,84475908,84541444,84606980,84672516,84738052,84803588,84869124,84934660,85000196,85065732,85131268,85196804,85262340,85327876,85393412,85458948,85524484,85590020,85655556,85721092,85786628,85852164,85917700,85983243,86048773,86114320,86179858,86245393,86310929,86376465,86441993,86507524,86573060,86638596,86704132,86769668,86835204,86900740,86966276,87031812,87097348,87162884,87228420,87293956,87359492,87425028,87490564,87556100,87621636,87687172,87752708,87818244,87883780,87949316,88080389,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,99876865,100204545,103809025,105709569,111017985,111280129,112394241,112459777,112525313,112590849,112656386,112721921,112787457,112852993,112918529,112984065,113115137,113180673,113246209,129630209,132186114,132251649,132448257,138739713,146800641,146931713,146997249,147128321,147587073,149815297,149946369,151126017,151322625,151453698,151519236,151650320,152043521,152109057,152174593,152240129,152305665,152502274,152633346,152895489,153092097,153944065,155123713,155254785,155582466,155713538,156827650,156893186,157089793,157286402,157614082,157679618,157810691,158269441,158662657,158924802,158990338,159186945,161939457,162004997,162070533,162136068,162201604,162267140,162332676,162398226,162463748,162529284,162594821,162660357,162725893,162791429,162856964,162922500,162988037,163053573,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774471,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888582,164954116,165019653,165085188,165150724,165216261,165281798,165347333,165412868,165478404,165543940,165609479,165675012,165740548,165806085,165871620,165937156,166002692,166068228,166133766,166199300,166264839,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575557,167641092,167706629,167772164,167837701,167903237,167968772,168034308,168099844,168165380,168230916,168296452,168361996,168427525,168493075,168558611,168624145,168689682,168755217,168820745,168886276,168951813,169017349,169082885,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607174,169672708,169738244,169803780,169869317,169934852,170000388,170065925,170131461,170196996,170262532,170328068,170721281,170917890,171048968,172359681,172883969,173211649,173539330,173604866,173670402,173735938,173801474,173867010,173932547,173998083],"ami":[196610,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"allows":[196609,1310721,4456449,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242889,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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,24707073,24772609,24838145,24903681,26542081,26607617,26673153,27918337,32833537,32899073,32964609,63832065,64028673,64094209,64552964,65142787,65536001,66584579,75104258,77791233,97386497,97714177,105250817,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650313,151715841,151781377,151846913,151912449,151977985,152043522,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092100,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123715,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876226,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939458,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"application":[196609,1310721,4456449,5242884,25296904,25362441,27459585,27525121,27590657,27656193,30670854,30736391,34406401,34537473,34996225,35061761,63832070,64028673,64094214,64159745,65470466,71958529,72024065,72089601,72810499,74055681,74121217,74252290,74645505,74711041,77791237,79626241,79691778,84934659,88145921,88211459,89063425,92602374,92667905,95092737,95158274,95289345,95354881,105185286,105381889,105512963,111017985,134152193,134283270,147783686,148045825,151191553,151257089,151322625,151650308,152371206,153681922,153747458,153944067,154402817,154468353,155123713,157810698,160628737,161939458,167313411,170131457,171048961,171180033,171442177,171835395,174260225],"applications":[196609],"add":[262145,25231362,45744130,45809666,45875202,64159747,78118915,106364930,106430465,158138371,164102145,170131458],"agiexception":[327683,4849667,23265287,23330823,23396359,63766529,64421894,71958531,151191563,151257093,151322629,154402821,154468357],"agihangupexception":[393219,4915203,23461894,63766530,72024067,151191553,151257098],"aginetworkexception":[458755,4980739,23527432,63766530,72089603,151191553,151322634],"authenticationfailedexception":[655363,13172739,49807367,49872903,64028674,70975494,79626243,88080385,146931713,160628748,171048961],"agi_additional_attribute_pattern":[917505,1966086,150994945],"agi_additional_attributes_pattern":[917505,1900550,150994945],"agi_bind_address":[917505,2031621,150994945],"agi":[917507,2031617,2097153,2555905,63766529,64094209,64159745,71892993,72220680,75300865,89260033,90177537,90308612,90374145,90636289,90963969,98041857,150994947,151060481,151191553,151584776,155320322,163119105],"address":[917505,2031617,28770305,85393409,135659521,150994945,167772161],"agi_bind_port":[917505,2097157,150994945],"agi_default_max_digits":[917505,2162694,150994945],"agi_default_resource_bundle_name":[917505,2228230,150994945],"agi_default_timeout":[917505,2293766,150994945],"agi_end_of_proper_usage":[917505,2359302,150994945],"agi_parameter_pattern":[917505,2424838,150994945],"agi_parenthesis_pattern":[917505,2490374,150994945],"agi_pool_size":[917505,2555909,150994945],"agi_result_pattern":[917505,2621446,150994945],"agi_script_pattern":[917505,2686982,150994945],"agi_status_pattern":[917505,2752518,150994945],"agi_synopsis_pattern":[917505,2818054,150994945],"asterisk_version":[917505,2883590,150994945],"asteriskfastagi":[983043,3538946,3604482,5373955,28311555,28377091,28442631,28508168,28573707,28639239,28704776,28770311,28835852,63766529,65601552,72351747,91291650,91357187,91422722,91488259,151781398],"agichannel":[983042,3538945,3604481,4718595,22937605,23003147,23068682,27262984,63766530,64356358,71892995,89260034,91226118,151060492,151781378],"action":[1048577,1114113,1179649,3670019,3735554,3801090,3866626,3932163,3997699,4063235,4128771,4194307,4259843,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,11141122,11206658,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713986,12779521,12845057,12910593,12976129,13041665,13107201,21626882,22085637,22151173,22216709,22282245,22347781,22413317,22478853,22544389,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714820,39780354,39845892,39911426,39976976,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763396,40828932,40894467,40960004,41025538,41091074,41156611,41222146,41287684,41353218,41418756,41484290,41549827,41615362,41680899,41746434,41811971,41877506,41943044,42008578,42074114,42139650,42205189,42270726,42336258,42401794,42467330,42532866,42598404,42663938,42729474,42795010,42860546,42926082,42991618,43057154,43122692,43188226,43253763,43319298,43384834,43450370,43515906,43581442,43646978,43712515,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236804,44302338,44367876,44433410,44498948,44564482,44630018,44695554,44761090,44826626,44892164,44957700,45023235,45088772,45154307,45219842,45285381,45350914,45416452,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006279,46071810,46137346,46202882,46268418,46333954,46399490,46465029,46530562,46596102,46661634,46727170,46792706,46858243,46923778,46989315,47054852,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775748,47841282,47906820,47972354,48037891,48103428,48168962,48234498,48300035,48365572,48431107,48496650,48562187,48627724,48693261,48758793,48824322,48889860,48955397,49020933,49086466,49152004,49217538,49283075,49348610,49414147,49479682,49545219,49610756,49676290,49741826,59179018,59244555,59572226,59834378,59899915,59965450,60030986,60096522,61079562,61407241,62062597,64028675,64094224,64159749,64225285,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812807,68878337,68943873,69009409,69074945,69140481,69206018,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582274,70647809,70713345,70778881,70844417,70909953,71368706,75038724,75104260,75169796,75235332,75300868,75366403,75431939,75497475,75563012,75628548,75694084,75759619,75825155,75890691,75956227,76021763,76087299,76152835,76218371,76283907,76349443,76414979,76480515,76546051,76611587,76677123,76742659,76808195,76873731,76939268,77004804,77070340,77135876,77201412,77266948,77332484,77398020,77463557,77529091,77594627,77660163,77725700,77791236,77856772,77922308,77987844,78053379,78118916,78184451,78249988,78315523,78381059,78446596,78512131,78577667,78643204,78708740,78774276,78839812,78905347,78970883,79036420,79101956,79167494,79233028,79298564,79364100,79429636,79495172,79560708,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835202,87293954,87359490,87883778,87949314,88014849,88080386,88276993,88408065,88473605,88539141,88604677,88670213,88735749,88801285,88866821,88932357,97189897,97255426,97320962,97386498,97452041,97517570,97583106,97648642,97714178,97779722,97845250,97910786,97976329,98041865,98107395,98172931,98238474,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221514,99287042,99352578,99418114,99483650,99549194,99614723,99680259,99745795,99811337,99876866,99942409,100007938,100073474,100139017,100204546,100270090,100335619,100401155,100466698,100532227,100597770,100663306,100728835,100794378,100859907,100925443,100990986,101056515,101122051,101187594,101253123,101318666,101384195,101449738,101515267,101580810,101646339,101711875,101777418,101842954,101908490,101974026,102039555,102105098,102170626,102236162,102301706,102367234,102432770,102498314,102563842,102629378,102694922,102760450,102825986,102891522,102957065,103022594,103088137,103153666,103219202,103284745,103350274,103415817,103481346,103546882,103612425,103677954,103743497,103809026,103874562,103940098,104005634,104071170,104136713,104202249,104267778,104333321,104398851,104464392,104529923,104595459,104660994,104726537,104792066,104857602,104923138,104988674,105054210,105119753,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840649,105906178,105971714,106037250,106102786,106168329,106233865,106299401,106364930,106430466,106496002,106561538,106627074,106692618,106758147,106823683,106889219,106954755,107020291,107085833,107151362,107216898,107282434,107347978,107413507,107479043,107544579,107610122,107675651,107741187,107806723,107872259,107937801,108003330,108068866,108134410,108199939,108265482,108331011,108396553,108462082,108527618,108593161,108658691,108724226,108789762,108855298,108920834,108986377,109051906,109117442,109182978,109248521,109314050,109379586,109445122,109510666,109576202,109641730,109707273,109772809,109838338,109903881,109969411,110034946,110100483,110166018,110231561,110297090,110362626,110428169,110493698,110559241,110624770,110690313,110755842,110821385,110886921,110952450,141230081,141295617,146407430,147456002,148307976,148701192,148897793,149684226,149880833,150011905,150142977,155058184,155123719,155189255,155254792,155320328,155385863,155451399,155516935,155582473,155648007,155713543,155779079,155844615,155910151,155975687,156041223,156106759,156172295,156237831,156303367,156368903,156434439,156499975,156565511,156631053,156696583,156762119,156827655,156893190,156958727,157024263,157089801,157155335,157220871,157286409,157351943,157417479,157483016,157548607,157614100,157679625,157745159,157810699,157876231,157941768,158007303,158072839,158138375,158203911,158269447,158334983,158400519,158466055,158531591,158597127,158662665,158728199,158793735,158859272,158924807,158990343,159055880,159121415,159186959,159252487,159318023,159383559,159449095,159514632,159580167,161611777,161677313,162988035,163053571,164495362,164626434,165019651,165085185,165150721,167444482,167510020,167641091,167772162,167837700,168230915,168427523,168886275,168951811,169213956,169672707,169738243,170262531,170328067,170721281,171048964,171966465,173342721,173473793,173539340,173604876,173670410,173735946,173801483,173867019,173932554,173998094],"action_append":[1179649,3932166,159186945],"action_delcat":[1179649,3997702,159186945],"action_delete":[1179649,4063238,159186945],"action_newcat":[1179649,4128774,159186945],"action_renamecat":[1179649,4194310,159186945],"action_update":[1179649,4259846,159186945],"arrive":[1310721,4456449,171048961],"attributes":[1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4653062,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,52101126,54657030,61997062,62062594,62259206,62455814,64159747,64225282,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132055046,149749766,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131460,170196993,170262529,170328065,173539332,173604868,173670404,173735942,173801476,173867012,173932548,173998084],"assembly":[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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,74842114,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272392,96337923,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664963,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"array":[3276801,3342337,3473409,4521985,22740994,38010881,38273025,38535169,39059457,62914564,150732803,174850050],"api":[3473409,60227585,60293121,77529089,77594625,77660161,78053377,79691777,86048769,86638593,104464385,105775105,111017985,111280129,138412033,140705793,154730497,157548545,157614081,157679617,158072833,161939457,168427521,169017345],"agiconnectionhandler":[4784131,23134211,23199752,63504390,63766530,151126026],"agireader":[5046275,23003152,23592964,23658500,23724039,63766530,64356353,151060481,151126017,151388170],"agireply":[5111811,22937605,23592965,23789570,23855106,23920642,23986178,24051714,24117252,24182791,24248328,63766530,64487430,72155139,89260038,89325570,89391107,89456643,89522178,89587714,151453708],"additional":[5111810,23789570,64094209,64159746,71958529,72024065,72089601,74645505,74711041,78708737,79626241,79691777,88145921,89063425,108855297,151191553,151257089,151322625,151453698,151519233,154402817,154468353,158728194,160628737,161939457,169213953,170131457,171180033,174260225],"attribute":[5111810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789572,62062596,64225282,88080385,111017985,147456001,151453698,171048961,173539330,173604866,173670402,173735938,173801474,173867010,173932547,173998083],"agirequest":[5177347,23658501,24313861,24379396,24444933,24510468,24576006,27262984,35979272,36241418,36569098,37027850,63766531,72220675,89653250,89718787,89784323,89849859,89915395,89980931,90046467,90112002,90177538,90243075,90308610,90374146,90439682,90505219,90570755,90636290,90701827,90767363,90832899,90898435,90963970,91029506,91095042,91160578,151257089,151584778],"agiscript":[5242883,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165827,25231362,25296898,25362434,25427972,25493506,25559042,25624578,25690114,25755651,25821186,25886722,25952258,26017794,26083330,26148868,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262981,27328515,27394052,27459587,27525123,27590659,27656195,27721730,27787266,27852802,27918338,27983874,28049410,28114950,35979269,36241414,36569094,37027846,63766532,63897602,64552962,64618498,64684034,64749570,64815106,64880642,64946178,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,72286211,74842113,91226115,96403457,151126017,151650313,154599426,154664961,154730498],"answer":[5242881,24641541,151650305],"answers":[5242881,24641537,151650305],"allowing":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,151650308,152043521,154075137],"audio":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,72220674,90308610,151584770,151650308,152043521,154075137],"ascii":[5242884,24707073,24772609,24838145,24903681,63832074,64552964,88080385,147521537,151650308,152043521,152567809,153026561,153092097,153157633,153223169,153288705,153354241,154075137,154271745,171048961],"available":[5242890,22872065,24707073,24772609,24838145,24903681,25690113,25755649,26476545,26542081,26607617,26673153,46202882,46333953,63504385,63832068,64028673,64094215,64159760,64552964,64815106,65142788,69861377,78249988,79757314,79822850,79888386,79953922,80019458,80084994,80150542,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983239,86048772,86114318,86179854,86245389,86310925,86376461,86441989,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,107151361,107216898,107282433,112394241,112459777,112525313,112590849,112721921,112787457,112852993,112918529,112984065,113115137,113180673,113246209,132251649,132448257,138739714,138805249,138870785,149946369,151519233,151650314,152043521,152502273,152895489,153092097,155123713,155254785,156893185,158269447,158924801,158990337,162004994,162070530,162136066,162201602,162267138,162332674,162398222,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988035,163053571,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019651,165085186,165150722,165216259,165281794,165347331,165412866,165478402,165543938,165609475,165675010,165740546,165806083,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575555,167641090,167706627,167772162,167837699,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361992,168427524,168493071,168558607,168624141,168689678,168755213,168820741,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869315,169934850,170000386,170065923,170131458,170196994,170262530,170328066,172883969,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174981121],"adds":[5242881,12713985,21954561,22872065,25231361,45744129,45809665,45875201,45940737,46006273,48758785,61145089,63504385,63832065,64028673,64094210,69730307,69795842,70582273,151650305,152305665,156893185,158138372,158203906,159186945,173342721,173408257,174981121],"allowed":[5242882,25624577,26214401,26279937,63832065,65011714,151650306,152961025],"autohangup":[5242881,27328513,34144257,63832065,151650305,153550849],"agiwriter":[5308419,23003152,28180484,28246023,63766530,64356353,151060481,151715850],"agicommand":[5439491,5505027,5570563,5636099,5701635,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,22937608,28180487,28901380,28966917,29032452,29097990,63832065,151519236,151846923,151912456,151977992,152043528,152109064,152174600,152240136,152305672,152371208,152436744,152502280,152567816,152633352,152698888,152764424,152829960,152895496,152961032,153026568,153092104,153157640,153223176,153288712,153354248,153419784,153485320,153550856,153616392,153681928,153747464,153813000,153878536,153944072,154009608,154075144,154140680,154206216,154271752],"answercommand":[5505027,29163524,29229062,63832065,151846913,151912458],"accept":[8388609,37289991,154796033],"associated":[8454145,37486593,71958529,72024065,72089601,74645505,74711041,79626241,79691777,80150529,86114305,86179841,86310913,86376449,88145921,89063425,112984065,151191553,151257089,151322625,154402817,154468353,154861569,160628737,161939457,162398209,168493057,168558593,168689665,168755201,171180033,174260225],"absolutetimeoutaction":[8585219,39190535,39256071,64094210,67698694,75038723,97189890,97255426,97320962,155058188,157548545],"agentcallbackloginaction":[8650755,39321607,39387143,39452679,64094210,67764232,75104259,97386498,97452034,97517570,97583106,97648642,97714178,155123726,157548545],"agentlogoffaction":[8716291,39518215,39583751,39649287,64094210,67829768,75169795,97779714,97845250,97910786,155189262,157548545],"agentsaction":[8781827,39714820,39780358,64028674,64094210,64159746,75235331,97976322,155254794,157614081,160169985,160235521,162988034,163053570],"actioncompleteeventclass":[8781826,9371650,9437186,10354690,11141121,11337730,11468802,12189698,12451842,12517378,12582914,13041666,39714824,40828936,40960008,42598408,44236806,44892168,45416456,47054856,47775752,47906824,48103432,49610760,64094209,155254786,155844610,155910146,156827650,157614082,157810690,157941762,158662658,158924802,158990338,159055874,159514626],"agiaction":[8847363,39845896,64094209,75300867,98041858,98107395,98172931,155320329,157548545],"aocmessageaction":[8912899,39911430,39976980,64094209,67895300,75366403,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,155385866,157548545],"atxferaction":[8978435,40042502,40108038,64094209,67960836,75431939,99221507,99287042,99352578,99418114,99483650,155451402,157548545],"actioncompleteresponseclass":[10616834,11206657,12713986,43122696,44367878,48365576,64094209,157089794,157679618,159186946],"addcommand":[12713990,48431111,48496648,48562185,48627722,48693259,48758790,64094209,70582279,159186951],"abstractagentevent":[13303811,50003975,64159745,79757315,80412675,80478211,80543747,83230723,111083522,111149058,111214594,162005001,162070529,162660360,162725896,162791432,165609480],"abstractagentvariables":[13303812,13369347,13893636,13959172,14024708,14090244,16777220,50069508,50135043,50200580,50266115,50331655,64159745,79757313,79822851,80347137,80412673,80478209,80543745,83230721,111280130,162005002,162070538,162594826,162660358,162725894,162791430,165609478,166264833],"abstractchannelevent":[13434883,50397191,64159745,79888387,83296265,84869129,85000201,111345666,111411202,111476739,111542274,111607810,111673346,111738883,111804419,111869955,162136073,165675022,166264833,167247886,167378958],"abstractconfbridgeevent":[13500419,50462727,50528264,64159745,71041030,79953923,81920001,81985537,82051073,82182145,82313217,82378753,82444289,111935491,162201613,164298758,164364294,164429830,164560902,164691974,164757510,164823046,166264833],"abstractmeetmeevent":[13565955,50593799,64159745,80019459,83951618,84017154,84082690,84148226,84213762,84279298,84344834,112001026,112066563,162267146,166264833,166330375,166395911,166461447,166526983,166592519,166658055,166723591],"abstractparkedcallevent":[13631491,50659335,64159745,80084995,85196804,85327876,87687172,112132098,112197634,112263170,112328706,162332681,166264833,167575561,167706633,170065929],"abstractqueuememberevent":[13697027,50724870,64159745,80150531,85983239,86114316,86179854,86245389,86310925,86376461,86441989,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,162398218,166264833,168361996,168493073,168558611,168624146,168689682,168755218,168820746],"agentcallbackloginevent":[13762563,50790407,64159746,80216067,113311746,113377283,159645701,162463754,162529281,166264833],"agentcallbacklogoffevent":[13828099,50855943,64159747,80281603,113442818,113508355,113573891,113639426,159711237,162463745,162529290,162922497,166264833],"agentcalledevent":[13893635,50921479,64159746,80347139,113704963,113770499,113836035,113901570,113967106,114032643,114098179,114163715,114229251,114294787,114360323,159776773,162070529,162594826],"agentcompleteevent":[13959171,50987015,64028673,64159746,80412675,114425858,114491394,114556930,159842310,162004993,162660362],"agentconnectevent":[14024707,51052551,64028673,64159746,80478211,114622466,114688002,114753538,159907846,162004993,162725898],"agentdumpevent":[14090243,51118087,64028673,64159746,80543747,159973382,162004993,162791434],"agentloginevent":[14155779,51183623,64028673,64159746,80609283,114819074,114884611,160038918,162856970,162922497,166264833],"agentlogoffevent":[14221315,51249159,64028673,64159745,80674819,114950146,115015683,160104454,162856961,162922505,166264833],"agentscompleteevent":[14286851,51314695,64028673,64094209,64159746,80740355,155254786,160169990,162988042,169213953],"agentsevent":[14352387,51380231,64028673,64094209,64159746,80805891,115081218,115146754,115212290,115277826,115343362,115408898,155254786,160235526,163053578,169213953],"agiexecevent":[14417923,51445767,64159745,80871427,115474435,115539971,115605507,115671043,115736579,160301061,163119113,166264833],"alarmclearevent":[14483459,51511303,64159745,80936963,160366597,163184649,166264833],"alarmevent":[14548995,51576839,64028674,64159747,81002499,115802114,160366593,160432134,163184641,163250186,166264833],"asyncagievent":[14614531,51642375,64159745,81068035,115867651,115933187,115998723,116064259,163315722,166264833],"attendedtransferevent":[14680067,51707911,64159745,81133571,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,160563205,163381258,166264833],"asteris":[21626882,41484289,41549825,43712514,43778049,43843585,59572225,59637761,64094210,64159745,64225282,68550658,71303170,75104258,77266945,83230721,88080387,97386497,97714177,104005633,129564673,146997249,147128321,147587073,155123715,155713537,156172290,157286401,162267137,165609473,171048965,173604865,173735937],"ans":[21626881,59965441,71368705,171048961],"addevent":[21954561,61145093,173408257],"alert_info":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,62062594,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"alertinfo":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"algorithm":[22740994,40304641,40370177,43778049,43843585,62783490,62849031,62980103,68091906,71761922,77266945,103809025,155582466,157286401,174850051],"append":[22740993,47513606,48758785,62914561,64094210,64159745,78774275,109051910,109182977,158793732,159186945,170131457,174850049],"addjob":[22872065,63504390,63635457,174981122],"active":[22872065,63504385,64028673,64094212,64159745,87228417,144375809,155910145,157941761,159055874,169607169,169738241,174129153,174981121],"agiexeption":[23330817,23396353,64421890,151191554],"abstract":[24117249,24510465,27262979,28901379,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36044801,36241409,36306945,36569089,36634625,37027841,37093377,39714817,40828929,40960001,42598401,43122689,44236803,44367875,44498945,44892161,45023233,45154305,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50135041,50266113,52101121,54591489,54657025,54722561,58720257,59047937,59113473,60882945,61014017,61276161,61341697,62193665,62259201,62324737,62586881,63111169,63766529,64159754,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104464387,104595457,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,110231553,110428161,110559233,110690305,110821377,110886913,132055041,146407425,146472961,148307969,148373505,148701185,148766721,149749761,150994945,151191553,151650306,151846914,157548546,157614082,157679618,158072834,162004995,162070530,162136067,162267139,162332675,162398211,163512322,164036610,164954115,166264835,168296451,169213955,170131457],"allow":[24772609,24838145,24903681,26214401,26279938,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,29753345,29818881,29884417,32374785,32440322,32636929,32833537,32899073,32964609,33161217,33357825,33554433,33751041,35389441,35454977,72482817,73334785,73400321,73465857,73531393,73596929,73662465,73728001,74383361,91619329,93585409,93913089,94109697,94371841,94437377,94568449,94699521,95551489,152043521,152961025,153026561,153092097,153157633,153223169,153288705,153354241,154075137],"agiserver":[28639233,28770305,63766529,72351745,91422721,151126017,151781377],"args":[38010886,38273030,38535174,39059462,63832066,152502273,152633345],"absolutetimeout":[39256065,64094209,75038721,97189889,155058178],"agent":[39387144,39452680,39583751,39649287,64028681,64094212,64159755,67764226,67829762,75104260,75169794,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216067,80281604,80347137,80412675,80478209,80543745,80609283,80674819,80740353,80805901,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623938,83689474,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721090,85786626,85852161,85917698,85983235,86048770,86114306,86179842,86245378,86310915,86376450,86441987,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,97386498,97517574,97845256,112656385,113311750,113442823,113639425,114491393,114556929,114819078,114950150,115081221,115146754,115212289,115277825,115343365,115408898,132251649,137560065,137822209,138280961,139132929,139460609,149946369,155123720,155189253,155254785,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160235521,162004994,162070529,162136065,162201601,162267137,162332673,162398210,162463748,162529285,162594818,162660356,162725890,162791426,162856964,162922500,162988033,163053582,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954114,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002690,166068226,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099842,168165378,168230913,168296450,168361987,168427522,168493058,168558594,168624130,168689667,168755202,168820739,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"advice":[39911425,39976961,67895298,155385858],"aocbillingid":[39976966,75366401,98304006,155385857],"attended":[40042497,40108033,67960834,87425025,145620993,155451394,169803777],"authtype":[40370181,43778053,43843589,75563009,77266945,99876869,103809029,155582465,157286401],"alogrithm":[40370177,43778049,43843585,75563009,77266945,99876865,103809025,155582465,157286401],"applies":[42991617,69140481,156958721],"assumed":[44040193,44171265,77398017,77463553,78118913,104267777,104398849,106561537,157417473,157483009,158138369],"added":[45744129,45809666,45875202,63635457,64028673,64159745,78118915,80150531,85983237,86048773,86114307,86179843,86245379,86310915,86376451,86441989,106496002,106627073,112787459,137756673,137887747,138018817,138215425,138412035,138608641,139395073,139526147,139657217,158138371,162398211,168361990,168427525,168493059,168558595,168624131,168689667,168755203,168820741,172687361,174981121],"authentication":[49807361,49872898,64094209,86638593,88080385,140705793,146866177,157286401,169017345,171048961],"asteriskversion":[59375621,64028673,88080385,146538508,160497670,171048961],"autoresetevent":[61079560,61407239],"autoevent":[61079558,61407238],"agiscripts":[63766530,72351745,91357185,151650306,151781377],"agireplystatuses":[63766529,151519238],"actions":[64028673,64094209,77529089,77594625,77660161,78053377,79167489,104464385,109969413,157548545,157614081,157679617,158072833,159186946,173408257],"agentcallbacklogineventhandler":[64028673,159645701],"agentcallbacklogin":[64028673,64094209,64159746,75104257,97452033,155123714,159645697,162463745,162529281],"agentcallbacklogoffeventhandler":[64028673,159711237],"agentcallbacklogoff":[64028673,159711233],"agentcalledeventhandler":[64028673,159776773],"agentcalled":[64028674,80347137,113704966,159776770,162594817],"agentcompleteeventhandler":[64028673,159842309],"agentconnecteventhandler":[64028673,159907845],"agentdumpeventhandler":[64028673,159973381],"announcement":[64028673,64159745,159973377,162791425],"agentlogineventhandler":[64028673,160038917],"agentlogin":[64028674,64159746,160038913,160104449,162856961,162922497],"agentlogoffeventhandler":[64028673,160104453],"agentscompleteeventhandler":[64028673,160169989],"agents":[64028673,64094211,64159745,75235329,80281601,97976321,113639425,155254787,158662657,160169985,162529281,162988033],"agentseventhandler":[64028673,160235525],"agiexechandler":[64028673,160301061],"agiexec":[64028673,160301057],"alarmcleareventhandler":[64028673,160366597],"alarm":[64028674,64159746,81002501,87949318,115802121,146210826,160366593,160432129,163184641,163250182,170328070],"alarmeventhandler":[64028673,160432133],"attendedtransfereventhandler":[64028673,160563206],"attempts":[64028675,64159747,161742849,165216257,167903233,169017345,172359681,173211649],"absolute":[64094210,155058178],"agen":[64094209,155123713],"authenticates":[64094209,157286401],"answered":[64094209,77791233,83623937,83689473,85721089,85786625,85917697,85983234,86048770,86441986,86507521,88211457,105709569,137560065,137691137,137756673,138149889,138215425,139264001,139395073,140312578,148242433,157810690,166002689,166068225,168099841,168165377,168296449,168361986,168427522,168820738,168886273,171835393],"async":[64094209,77791233,105250821,157810690],"apps":[64094213,64159760,158138369,158269441,158466049,158662657,158793729,162594817,165216257,165609473,166002689,166068225,166395905,166461441,166592513,166789121,168230913,168361985,168427521,168493057,168689665,168886273,170131457],"app_queue":[64094212,64159753,158138369,158269441,158466049,158662657,162594817,166002689,166068225,168230913,168361985,168427521,168493057,168689665,168886273],"appended":[64094209,78774273,109051905,158793730],"app_setcdruserfield":[64094209,158793729],"appropriate":[64094209,64159745,80281601,113639425,159186945,162529281,170131457],"action_":[64094209,159186945],"avoiding":[64094209,159186945],"agentcalledevents":[64159745,162594817],"agiexecevents":[64159745,163119105],"app_dial":[64159745,165216257],"app_rxfax":[64159745,165609473],"app_meetme":[64159747,166395905,166461441,166592513],"app_voicemail":[64159745,166789121],"assigned":[64159745,71958529,72024065,72089601,74645505,74711041,79626241,79691777,86507521,88145921,89063425,140443649,151191553,151257089,151322625,154402817,154468353,160628737,161939457,168624129,168886273,171180033,174260225],"arbitrary":[64159745,170131457],"app_userevent":[64159745,170131457],"algorithms":[64290817,174850049],"accountcode":[72220673,79888386,81264641,81461249,81592321,81723393,83296258,84738049,84869122,85000194,89653253,111345670,122748934,124911622,133693446,151584769,162136066,163512321,163708929,163971073,164102145,165675010,167116801,167247874,167378946],"account":[72220673,77791235,83492865,87359490,88211459,89653249,105054215,130482182,144506887,147718151,151584769,157810691,165871617,169738242,171835395],"agirequests":[72351745,91357185,151781377],"actionid":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,80740353,80805889,82116609,82247681,82640897,85065729,85131265,85262337,85393409,85458945,85852161,86048769,86507521,86573057,86835201,87293953,87359489,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104529926,141230085,149684229,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162988033,163053569,164495361,164626433,165019649,167444481,167510017,167641089,167772161,167837697,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"ackcall":[75104257,97386501,155123713],"acknowledgement":[75104258,97386498,155123714],"agentlogoff":[75169793,97779713,155189249],"asteri":[77266945,104071169,157286401],"asynchronous":[77791233,105250817,157810689],"assumes":[77791233,105709569,157810689],"assignments":[77791234,105775106,157810690],"abc":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"actio":[79167489,109969409,159186945],"actionbuilder":[79167489,109969409,159186945],"actual":[79167489,109969409,159186945],"avoided":[79691777,111017985,161939457],"actioncompleteevent":[79691777,111017985,161939457],"authorization":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"accepting":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,112852993,137953281,139591681,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_unknown":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_not_inuse":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_inuse":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_busy":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_invalid":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_unavailable":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_ringing":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,139788289,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_ringinuse":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,139788289,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_onhold":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,139788289,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"autologoff":[80281603,113639427,162529283],"answering":[80281601,113639425,162529281],"agentname":[80347137,113770502,162594817],"agentid":[80805889,115081217,163053569],"agent_loggedoff":[80805889,115343361,163053569],"agent_idle":[80805889,115343361,163053569],"agent_oncall":[80805889,115343361,163053569],"agent_unknown":[80805889,115343361,163053569],"amaflags":[81723393,124977158,164102145],"answertime":[81723393,125042694,164102145],"admin":[82182145,127074310,164560897],"aclname":[83165185,129302534,165543937],"appdata":[84934657,134152197,167313409],"appdevent":[84934657,134217734,167313409],"acl":[85393409,135397382,167772161],"abandoned":[86507522,139853831,168886274],"average":[86507521,140050434,168886273],"auth":[86638593,140705793,169017345],"attempt":[88080386,146866177,146931713,171048962],"arrival":[88080385,147456001,171048961],"anymore":[105775108,111280132],"aware":[105775108,111280132],"abstractclassattribute":[150994945,151650305,151846913,157548545,157614081,157679617,158072833,162004993,162070529,162136065,162267137,162332673,162398209,163512321,164036609,164954113,166264833,168296449,169213953],"asterisk_1_0":[160497665],"asterisk_1_2":[160497665],"asterisk_1_4":[160497665],"asterisk_1_6":[160497665],"asterisk_1_8":[160497665],"asterisk_10":[160497665],"asterisk_11":[160497665],"asterisk_12":[160497665],"asterisk_13":[160497665]} \ No newline at end of file diff --git a/docs/fti/FTI_98.json b/docs/fti/FTI_98.json index 19097b9..418bb52 100644 --- a/docs/fti/FTI_98.json +++ b/docs/fti/FTI_98.json @@ -1 +1 @@ -{"b67870ba79f9":[131073],"blindtransfer":[786433,1900550,175046657],"bridge":[786435,1966086,2424833,3604481,45547521,45613059,46858241,46923777,69468163,73334786,73859074,159580162,160235522,167837698,167968772,170196993,175046659],"bridgecreate":[786433,2031622,175046657],"bridgedestroy":[786433,2097158,175046657],"bridgeenter":[786433,2162694,175046657],"bridgeleave":[786433,2228230,175046657],"begin":[786433,2621441,69468162,88342529,133234694,169148417,169213953,169476097,175046657],"behalf":[786433,3604481,69468161,170196993,175046657],"blindtransfereventhandler":[1900551,69337089,164757510],"blindtransferevent":[1900545,20185091,57147399,69468161,86507523,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,164757509,167510026,170328065],"bridgeeventhandler":[1966087,69337089,165019654],"bridgeevent":[1966081,20512771,22740993,26542081,57475074,57540615,69468164,86835203,89063434,92864522,128319497,128385034,128450563,128516099,128581635,128647171,128712707,128778243,128843779,128909315,165019653,167837706,167903234,167968770,170197008,170328065,173998096],"bridgecreateeventhandler":[2031623,69337089,164823046],"bridgecreateevent":[2031617,20316163,57278471,69468161,86638595,164823045,167641098,168099841],"bridgedestroyeventhandler":[2097159,69337089,164888582],"bridgedestroyevent":[2097153,20381699,57344007,69468161,86704131,164888581,167706634,168099841],"bridgeentereventhandler":[2162695,69337089,164954118],"bridgeenterevent":[2162689,20447235,57409543,69468161,86769667,164954117,167575553,167772170],"bridgeleaveeventhandler":[2228231,69337089,165085190],"bridgeleaveevent":[2228225,20578307,57606151,69468161,86900739,165085189,167575553,168034314],"bind":[6356994,7471105,7536641,77660161,96534529,155058178,155844609],"backwards":[6422530,8978433,9043969,155844610],"bool":[8978435,9043971,9895939,28377094,28442630,28573702,31653891,34209798,37814275,44040195,44105731,44171267,45023235,50200579,51576835,51707907,52887555,54329347,59965444,64028676,64618499,64815107,67436547,67502084,95551492,98762757,101908485,101974020,102629381,103153669,110231557,110493701,111738885,112459781,114294789,120717317,121962501,125501445,132120581,133234693,133431301,136314885,137363461,137428997,137494533,139853829,140050437,140247045,140378117,140509189,140574725,142409733,142999557,143327237,143589381,148307973,149422085,150798341,150929413,150994949,152567813,153681925,154468356,154861572,154927109],"boolean":[8978434,9043970,9895938,10682369,13959170,28377102,28442636,28573704,31653891,34209808,37814275,44040194,44105731,44171267,45023235,50200579,51576835,51707907,52887555,54329350,59965442,64028674,64618498,64815106,67436546,67502082,69664772,70320129,70909954,71761921,72876034,73138177,74907649,75169794,75628545,75956225,95551490,98762754,101908482,101974018,102629378,103153666,110231554,110493698,111738882,112459778,114294786,120717314,121962498,125501442,132120578,133234690,133431298,136314882,137363458,137428994,137494530,139853826,140050434,140247042,140378114,140509186,140574722,142409730,142999554,143327234,143589378,148307970,149422082,150798338,150929410,150994946,152567810,153681922,154468354,154861570,154927106,155123716,155713537,155844610,157024257,158990338,159252481,161808385,162332674,162856961,163250177],"builtin":[10682369,31064065,69140481,70123521,155713537,156565505],"buildcommand":[10878977,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,34275335,34537480,34668552,34865160,35323912,35520520,35717128,35848200,35979272,36175880,36438024,36634632,36831240,36962312,37158920,37289992,37486600,37683208,37879816,38076424,38404104,38600712,38797320,38993928,39190536,39321608,39452680,39583752,39714824,39845896,39976968,40108040,40304648,40501256,40632328,40894472,41025544,41156616,155910145,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978],"blocked":[13893634,42860545,42926081,158924802],"bridgeaction":[14483459,45547526,45613062,69402625,73334788,80805891,104792067,104857603,104923139,104988675,159580170,161611777],"bridgeactivityevent":[20250627,57212935,69468161,86573059,86769681,86900753,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253955,167575562,167772182,168034326,170328065],"bridgestateevent":[20643843,57671687,69468161,86638598,86704134,86966275,128974851,129040387,129105923,129171459,129236995,129302531,167641099,167706635,168099850,170328065],"buildaction":[27000834,64487433,64552970,76546051,175046658],"based":[27000834,64880641,64946177,76611586,82575361,109051905,161349633,175046658],"bytes":[28114945,68222978,154796033,178782209],"beep":[31653894,37814278,78643202,98762758,157024258],"berlin":[32047105,38338561],"beginning":[35061761,35127297,40697857,40763393,69140481,71106562,72351746,156106754,156631041,158138370],"blocks":[41222145,72417281,158334977],"bindaddress":[42795014],"base":[45875201,50069505,50135041,50200577,69074945,69402625,69468170,155254785,161611777,166068225,166199297,166330369,166395905,166461441,169017345,170328065,172359681,173211649,174129153],"byte":[68222980],"begins":[68681729,68747265,69140481,156631041],"baseagiscript":[69074945,155713537],"bundle":[69074946,69206018,158662658,158793730],"block":[69140481,158334977],"better":[69402625,161873921],"body":[69468161,174129153],"bridgestates":[69468161,128319495,167903238],"bridgetypes":[69468161,128385031,167968774],"bindport":[77660161,96534533,155844609],"billing":[83099649,93454337,110297089,151781377,161873921,175833089],"behavior":[84475905,115343361,163250177],"bridgedchannel":[85786625,119078917,166789121],"bridged":[85786625,92602369,119078913,148963329,166789121,173735937],"blue":[86310913,93192193,120258561,150274049,167313409,174325761],"bridgecreator":[86507521,86573057,86638593,86704129,86769665,86900737,86966273,124911622,127270918,128974854,167510017,167575553,167641089,167706625,167772161,168034305,168099841],"bridgename":[86507521,86573057,86638593,86704129,86769665,86900737,86966273,124977158,127336454,129040390,167510017,167575553,167641089,167706625,167772161,168034305,168099841],"bridgenumchannels":[86507521,86573057,86638593,86704129,86769665,86900737,86966273,125042694,127401990,129105926,167510017,167575553,167641089,167706625,167772161,168034305,168099841],"bridgetechnology":[86507521,86573057,86638593,86704129,86769665,86900737,86966273,125108230,127467526,129171462,167510017,167575553,167641089,167706625,167772161,168034305,168099841],"bridgetype":[86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,89063425,92864513,125173766,127533062,128385030,129236998,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,170196993,173998081],"bridgeuniqueid":[86507521,86573057,86638593,86704129,86769665,86900737,86966273,125239302,127598598,129302534,167510017,167575553,167641089,167706625,167772161,168034305,168099841],"bridgestate":[86835201,89063425,92864513,128319493,167837697,170196993,173998081],"billableseconds":[87031809,129564678,168165377],"bits":[88539137,134414337,169672705],"blind":[92667905,149684225,173801473],"background":[94437377,154927105,178847745],"bridge_state_link":[167903233],"bridge_state_unlink":[167903233],"bridge_type_core":[167968769],"bridge_type_rtp_direct":[167968769],"bridge_type_rtp_native":[167968769],"bridge_type_rtp_remote":[167968769]} \ No newline at end of file +{"b67870ba79f9":[131073],"bind":[917506,2031617,2097153,72351745,91291649,150994946,151781377],"backwards":[983042,3538945,3604481,151781378],"bool":[3538947,3604483,4456451,23003142,23068678,23199750,26279939,28835846,32440323,38666243,38731779,38797315,39649283,44826627,46202883,46333955,47513603,48955395,54591492,58720260,59310083,59506691,62128131,62193668,90308612,93519877,96665605,96731140,97386501,97910789,104988677,105250821,106496005,107216901,109051909,112459781,112852997,113115141,116260869,117506053,121044997,127664133,128778245,128974853,131858437,132907013,132972549,133038085,135397381,135593989,135790597,135921669,136052741,136118277,137953285,138543109,138805253,139198469,139329541,139591685,144244741,145358853,146735109,146866181,146931717,148504581,149618693,150405124,150798340,150863877],"boolean":[3538946,3604482,4456450,5242881,8519682,23003150,23068684,23199752,26279939,28835856,32440323,38666242,38731779,38797315,39649283,44826627,46202883,46333955,47513603,48955398,54591490,58720258,59310082,59506690,62128130,62193666,64356356,65011713,65601538,66453505,67567618,67829761,69599233,69861378,70320129,70647809,90308610,93519874,96665602,96731138,97386498,97910786,104988674,105250818,106496002,107216898,109051906,112459778,112852994,113115138,116260866,117506050,121044994,127664130,128778242,128974850,131858434,132907010,132972546,133038082,135397378,135593986,135790594,135921666,136052738,136118274,137953282,138543106,138805250,139198466,139329538,139591682,144244738,145358850,146735106,146866178,146931714,148504578,149618690,150405122,150798338,150863874,151060484,151650305,151781378,152961025,154927106,155189249,157745153,158269442,158793729,159186945],"builtin":[5242881,25690113,63832065,64815105,151650305,152502273],"buildcommand":[5439489,5505026,5570562,5636098,5701634,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,7536642,7602178,7667714,7733250,7798786,7864322,28901383,29163528,29294600,29491208,29949960,30146568,30343176,30474248,30605320,30801928,31064072,31260680,31457288,31588360,31784968,31916040,32112648,32309256,32505864,32702472,33030152,33226760,33423368,33619976,33816584,33947656,34078728,34209800,34340872,34471944,34603016,34734088,34930696,35127304,35258376,35520520,35651592,35782664,151846913,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746],"blocked":[8454146,37486593,37552129,154861570],"bridgeaction":[9043971,40173574,40239110,64094209,68026372,75497475,99549187,99614723,99680259,99745795,155516938,157548545],"blindtransferevent":[14745603,51773447,64159745,81199107,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,160694277,163446794,166264833],"bridgeactivityevent":[14811139,51838983,64159745,81264643,81461265,81592337,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,163512330,163708950,163971094,166264833],"bridgecreateevent":[14876675,51904519,64159745,81330179,160759813,163577866,164036609],"bridgedestroyevent":[14942211,51970055,64159745,81395715,160825349,163643402,164036609],"bridgeenterevent":[15007747,52035591,64159745,81461251,160890885,163512321,163708938],"bridgeevent":[15073283,17301505,21168129,52101122,52166663,64159748,81526787,83755018,87621642,123863049,123928586,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,160956421,163774474,163840002,163905538,166133776,166264833,170000400],"bridgeleaveevent":[15138819,52232199,64159745,81592323,161021957,163512321,163971082],"bridgestateevent":[15204355,52297735,64159745,81330182,81395718,81657859,124518403,124583939,124649475,124715011,124780547,124846083,163577867,163643403,164036618,166264833],"buildaction":[21626882,59179017,59244554,71237635,171048962],"based":[21626882,59572225,59637761,71303170,77266945,103809025,157286401,171048962],"bytes":[22740993,62914562,150732801,174850049],"beep":[26279942,32440326,73334786,93519878,152961026],"berlin":[26673153,32964609],"beginning":[29687809,29753345,35323905,35389441,63832065,65798146,67043330,152043522,152567809,154075138],"blocks":[35848193,67108865,154271745],"bindaddress":[37421062],"bridge":[40173569,40239107,41484289,41549825,64028674,64159747,68026370,68550658,155516930,156172290,161218561,163774466,163905540,166133761,170917889],"base":[40501249,44695553,44761089,44826625,63766529,64094209,64159754,151191553,157548545,162004993,162136065,162267137,162332673,162398209,164954113,166264833,168296449,169213953,170131457],"byte":[62914564],"begins":[63373313,63438849,63832065,152567809],"baseagiscript":[63766529,151650305],"bundle":[63766530,63897602,154599426,154730498],"block":[63832065,154271745],"blindtransfereventhandler":[64028673,160694278],"bridgecreateeventhandler":[64028673,160759814],"bridgedestroyeventhandler":[64028673,160825350],"bridgeentereventhandler":[64028673,160890886],"bridgeeventhandler":[64028673,160956422],"bridgeleaveeventhandler":[64028673,161021958],"begin":[64028673,64159746,83034113,128778246,161415169,165085185,165150721,165412865],"behalf":[64028673,64159745,166133761,170917889],"better":[64094209,157810689],"body":[64159745,170131457],"bridgestates":[64159745,123863047,163840006],"bridgetypes":[64159745,123928583,163905542],"bindport":[72351745,91291653,151781377],"billing":[77791233,88211457,105054209,147718145,157810689,171835393],"behavior":[79167489,110100481,159186945],"bridgedchannel":[80478209,114622469,162725889],"bridged":[80478209,87359489,114622465,144900097,162725889,169738241],"blue":[81002497,87949313,115802113,146210817,163250177,170328065],"bridgecreator":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120455174,122814470,124518406,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgename":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120520710,122880006,124583942,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgenumchannels":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120586246,122945542,124649478,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgetechnology":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120651782,123011078,124715014,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgetype":[81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,83755009,87621633,120717318,123076614,123928582,124780550,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,166133761,170000385],"bridgeuniqueid":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120782854,123142150,124846086,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgestate":[81526785,83755009,87621633,123863045,163774465,166133761,170000385],"billableseconds":[81723393,125108230,164102145],"bits":[83230721,129957889,165609473],"blind":[87425025,145620993,169803777],"background":[89194497,150863873,174915585],"bridge_state_link":[163840001],"bridge_state_unlink":[163840001],"bridge_type_core":[163905537],"bridge_type_rtp_direct":[163905537],"bridge_type_rtp_native":[163905537],"bridge_type_rtp_remote":[163905537]} \ No newline at end of file diff --git a/docs/fti/FTI_99.json b/docs/fti/FTI_99.json index a023abb..f34a12d 100644 --- a/docs/fti/FTI_99.json +++ b/docs/fti/FTI_99.json @@ -1 +1 @@ -{"class":[65537,131073,196610,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,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,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,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,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,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,10289156,10354692,10420228,10485762,10551298,10616834,10682371,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,13369345,13434884,13500420,13565954,13631490,13697026,13762562,13828098,13893634,13959174,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,18612228,18677764,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,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935297,27000835,27066372,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049412,28114948,28180482,28246018,28311554,28377091,28442627,28508162,28573698,28639235,28704770,28770306,28835843,28901379,28966914,29032450,29097987,29163522,29229058,29294594,29360130,29425666,29491202,29556739,29622275,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457283,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33423362,33488899,33554434,33619971,33685506,33751042,33816578,33882114,33947651,34013186,34078722,34144258,34209795,34275330,34340866,34406402,34471939,34537474,34603011,34668546,34734083,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,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,37617667,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173571,40239108,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353217,41418753,41484290,41549826,41615362,41680898,41746435,41811971,41877507,41943042,42008578,42074115,42139651,42205186,42270722,42336259,42401794,42467330,42532867,42598403,42663938,42729474,42795011,42860546,42926082,42991618,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974659,44040195,44105731,44171268,44236802,44302338,44367874,44433410,44498947,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154307,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399491,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382531,47448067,47513603,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431107,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283075,49348610,49414146,49479682,49545218,49610754,49676291,49741826,49807363,49872898,49938435,50003970,50069506,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593795,50659330,50724866,50790402,50855939,50921475,50987011,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232194,52297731,52363267,52428802,52494339,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215235,53280770,53346306,53411842,53477378,53542915,53608450,53673986,53739522,53805058,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591490,54657026,54722562,54788098,54853634,54919170,54984706,55050243,55115779,55181314,55246850,55312386,55377923,55443458,55508994,55574530,55640066,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819714,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475074,57540611,57606147,57671683,57737219,57802755,57868290,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720258,58785794,58851330,58916867,58982402,59047938,59113475,59179011,59244547,59310083,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965442,60030978,60096514,60162050,60227586,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734914,61800451,61865987,61931522,61997058,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766530,63832066,63897603,63963139,64028674,64094211,64159747,64225283,64290819,64356353,64421889,64487426,64552962,64618498,64684034,64749570,64815106,64880642,64946178,65011714,65077251,65142786,65208322,65273858,65339394,65404930,65470466,65536002,65601538,65667074,65732610,65798146,65863682,65929218,65994754,66060290,66125827,66191362,66256898,66322434,66387970,66453506,66519042,66584578,66650114,66715650,66781187,66846723,66912259,66977794,67043331,67108867,67174403,67239938,67305475,67371010,67436546,67502082,67567618,67633154,67698691,67764227,67829762,67895298,67960835,68026370,68091908,68157444,68222978,68288514,68354050,68419586,68485122,68550659,68616195,68681731,68747267,68812802,68878338,68943874,69009410,69074948,69140482,69206019,69271554,69337090,69402629,69468177,69533699,69599235,69664772,69730307,69795844,69861378,69926914,69992450,70057986,70123522,70189058,70254595,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909956,70975491,71041026,71106562,71172098,71237634,71303170,71368706,71434242,71499778,71565314,71630850,71696387,71761922,71827458,71892994,71958530,72024066,72089602,72155138,72220676,72286210,72351746,72417282,72482821,72548356,72613892,72679426,72744962,72810498,72876036,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497476,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349444,76414980,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939267,77004804,77070340,77135878,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495171,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150532,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014851,88080387,88145923,88211459,88276995,88342531,88408067,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997891,89063427,89128963,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91226115,91291651,91357187,91422723,91488259,91553795,91619331,91684867,91750403,91815939,91881475,91947011,92012547,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,93257729,93323266,93388802,93454338,93519874,93585410,93650946,93716483,93782019,93847555,93913091,93978627,94044163,94109699,94175235,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337922,96403458,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466693,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580803,101646339,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708099,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470657,150536193,150601730,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650306,151715842,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009603,154075138,154140674,154206210,154271746,154337282,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927106,154992642,155058182,155123720,155189254,155254794,155320329,155385865,155451399,155516936,155582466,155648006,155713544,155779079,155844616,155910151,155975687,156041223,156106758,156172294,156237830,156303366,156368902,156434438,156499974,156565510,156631046,156696582,156762118,156827654,156893190,156958727,157024262,157089798,157155334,157220870,157286406,157351942,157417478,157483014,157548550,157614086,157679622,157745158,157810694,157876230,157941769,158007302,158072838,158138374,158203910,158269446,158334982,158400514,158466056,158531592,158597129,158662665,158728201,158793741,158859271,158924806,158990347,159055874,159121414,159186950,159252486,159318023,159383558,159449094,159514630,159580166,159645702,159711238,159776774,159842310,159907846,159973383,160038918,160104454,160169990,160235526,160301062,160366598,160432134,160497671,160563207,160628743,160694278,160759814,160825350,160890886,160956422,161021958,161087495,161153030,161218566,161284102,161349638,161415175,161480710,161546246,161611785,161677319,161742855,161808390,161873927,161939462,162004999,162070535,162136071,162201606,162267142,162332678,162398214,162463750,162529286,162594822,162660360,162725895,162791430,162856966,162922502,162988039,163053574,163119111,163184646,163250183,163315718,163381254,163446790,163512326,163577863,163643399,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560898,164626433,164691976,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002696,166068233,166133768,166199305,166264841,166330377,166395913,166461449,166526984,166592520,166658056,166723592,166789128,166854664,166920200,166985736,167051272,167116808,167182343,167247880,167313416,167378952,167444488,167510024,167575560,167641096,167706632,167772168,167837704,167903234,167968770,168034312,168099848,168165384,168230920,168296455,168361992,168427528,168493064,168558600,168624136,168689672,168755208,168820744,168886280,168951816,169017353,169082888,169148423,169213959,169279495,169345032,169410567,169476103,169541640,169607177,169672712,169738248,169803784,169869320,169934856,170000392,170065928,170131464,170197000,170262536,170328072,170393608,170459144,170524680,170590216,170655752,170721288,170786824,170852360,170917896,170983432,171048968,171114504,171180040,171245576,171311112,171376648,171442184,171507720,171573256,171638792,171704328,171769864,171835399,171900936,171966472,172032007,172097543,172163080,172228616,172294152,172359689,172425224,172490760,172556296,172621832,172687368,172752904,172818440,172883976,172949512,173015048,173080584,173146120,173211657,173277192,173342728,173408264,173473800,173539336,173604872,173670408,173735944,173801480,173867015,173932551,173998088,174063624,174129166,174194696,174260232,174325768,174391297,174456833,174522369,174587905,174653441,174718978,174784513,174850049,174915585,174981121,175046663,175112193,175177736,175243270,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833095,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274886,177340422,177405958,177471496,177537032,177602568,177668105,177733640,177799176,177864712,177930249,177995783,178061313,178126849,178192392,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782216,178847755,178913286],"changes":[131074,262145,786435,1703937,3145729,3997697,69140481,69402625,69468163,157679617,159711233,167313409,169541633,171245569,175046659],"c84e":[131073],"create":[196609,327681,393217,458753,524289,589825,655361,720897,851969,917505,47579137,47644673,68943873,69468162,69533697,74121218,82575361,109051905,155254785,155320321,155385857,158466049,158531585,160694274,161349633,164691969,166002689,174129154,175177729,177668097,178192385],"com":[196610],"change":[262145,28180481,68485121,178847745],"contains":[327681,393217,458753,524289,589825,655361,720897,786437,851969,917505,4587521,4784129,4980737,5046273,5373953,10551297,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,29163521,30146561,30212097,30277633,31195137,31260673,31588353,31653889,35127297,35192833,35258369,36700161,36765697,37748737,37814273,38010881,38731777,38928385,39124993,40763393,40828929,67371010,69074945,69206017,69402625,69468165,69533699,77463553,80150529,82313217,82575361,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160578,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,94044161,94568449,101580801,108396545,109248513,136904705,141885441,153681921,155254785,155320321,155385857,155516930,158466049,158531585,158662657,158728193,158793729,161087489,161349633,161546241,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082882,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294147,172359681,172425217,172490754,172556289,172621825,172687361,172752897,172818433,172883970,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046661,175177729,177471491,177537026,177602562,177668098,177733635,177799172,177864706,177930242,178192385],"conf":[786433,1114113,49086466,49152001,49217537,69402626,69468162,82575362,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590018,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439682,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357186,91422721,91488257,91553793,91619329,91684866,91750403,91815937,91881475,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192194,93323267,109248513,109314049,118095873,136904705,139788289,142868481,144179201,144310273,144703490,150339585,151060481,151191553,151650305,161349634,163250178,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592514,166658050,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573250,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490754,172556289,172621825,172687361,172752897,172818434,172883971,172949505,173015043,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325762,175046660],"call":[786439,1179649,2293762,3604482,4521985,5963777,13893633,16777220,18743300,18808836,19333124,19398660,19464196,19529732,22216708,27197444,27983874,42860545,48365569,49217537,50200577,50331649,50397185,50462721,50528257,50724866,52822017,52887553,55443457,55508993,55574529,55640065,65863681,65929217,65994753,66060289,67829762,69140481,69402630,69468168,75628546,77266945,77332481,77398017,77529089,79953921,80019457,80412673,82247681,82575361,83034113,83099653,83165186,84934657,85000193,85065730,85131266,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655554,85721091,85786626,85852162,85917697,85983233,86048769,86114307,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539138,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439683,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291650,91357186,91422721,91488258,91553793,91619329,91684866,91750402,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930050,92995585,93061121,93126657,93192193,93388801,93454340,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94306305,94896129,102957057,108265473,109117441,110231553,110297091,110624769,111017985,111214593,111345665,116523009,118947841,119799810,136708097,139722753,139788289,142213121,142671873,143458305,144506881,149749761,151781379,151977985,154009601,155254785,155320321,155385857,155648001,158334977,158466049,158531585,158924801,159121411,159186945,161021953,161349633,161808385,161873931,161939458,162856963,164691969,166002689,166068230,166133766,166199297,166264833,166330369,166395906,166461441,166526977,166592513,166658054,166723592,166789126,166854662,166920193,166985729,167051265,167116803,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165379,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672710,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196995,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573251,171638785,171704321,171769858,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425218,172490754,172556289,172621826,172687361,172752897,172818434,172883970,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063618,174129153,174194689,174260225,174325761,175046663,175177729,175833096,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995778,178192385],"caller":[786438,1179649,1245185,1310721,3997697,4849665,4915201,69468164,80412673,83099649,85196802,85393411,85655554,85721091,85786626,86114305,88014851,88080387,88145923,88539137,88604674,88932356,90112002,90177538,90308610,90439683,90505219,90636291,91160578,92602371,92930051,93454337,102957057,110559233,116654081,116785153,117374977,117440513,117506049,118358017,118423553,118882305,118947841,119013377,119144449,119209985,119865345,132448257,132513793,132579329,133955585,136118274,136183810,138280961,138412033,139460609,139526145,139591681,141688833,141754369,148635650,148701186,148766722,151912449,159186945,161873921,166199298,166395907,166658050,166723588,166789123,166854657,167116801,169148419,169213955,169279491,169672705,169738242,170065924,171245571,171311106,171442178,171573251,171638787,171769859,172294146,173735939,174063619,175046662,175833089],"connected":[786435,1179649,1245185,4128769,69468163,90243073,138805249,166723585,166789121,171376642,175046659],"channel":[786457,1703937,1769473,3014658,3276801,3342338,3407873,3473409,3538945,3735553,3801089,3997697,4063233,4128769,4194305,4325377,4390913,4521985,5570561,5636097,5898242,6029313,6225921,6422529,6553602,8978433,9175046,10682384,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,30015489,30081025,30146561,30212097,30277633,31064065,31129601,31326209,31391745,31784961,32178177,32309249,32440321,32571393,32702465,33095681,33423361,34799623,36569094,37027841,37093383,37421057,39518209,41222145,41287681,44630023,45219846,45285377,45350919,45481990,45613059,45875207,46137350,46661638,46792710,47316998,48824327,48955399,50069511,50135047,50200583,50659334,50724871,51118082,51183618,51249154,52625415,52690951,52822023,52887559,53084169,53673991,54525953,54657025,54788097,54919170,67371009,69074945,69140512,69402646,69468194,69861380,70123522,70385665,70516737,70582273,70647809,70713345,70975489,71565314,72417281,73007105,73203714,73465857,74579969,74645505,74907651,75563009,75628546,75694082,75825153,76021761,76087297,76152833,76218370,77529092,77594625,77725697,78249986,78446594,78512129,78577665,79233025,79888385,80347138,80609281,80674817,80740354,80936962,81068033,81330177,81395713,81657857,82444291,82509826,83034115,83099653,83165187,83427330,84017154,84082690,84148226,84410370,84541441,84606977,84672513,84738049,84869121,85065731,85131267,85196808,85262339,85327875,85393415,85458948,85524483,85590019,85655557,85721091,85786628,85852163,85917699,85983235,86048771,86114309,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097348,87162884,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014855,88080391,88145927,88211459,88276997,88342531,88408067,88473603,88539139,88604680,88670217,88735747,88801283,88866819,88932360,88997891,89063427,89128963,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177544,90243075,90308616,90374147,90439688,90505223,90570755,90636295,90701827,90767363,90832900,90898435,90963971,91029507,91095043,91160579,91226115,91291653,91357188,91422725,91488260,91553796,91619333,91684868,91750403,91815939,91881476,91947011,92012549,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602377,92667907,92733443,92798979,92864515,92930056,92995587,93061123,93126659,93192197,93454340,94240769,95354887,96337922,96403458,96468998,96796678,98172934,98566153,98631681,98697217,100204546,101253121,102498310,103350278,103612422,104529926,105250822,105578502,106102790,106299398,106889222,108724231,108920838,110034950,110100481,110559233,110624774,110952449,111017985,111149062,111214593,111607810,113901574,114098177,114360326,114556934,115081222,115605505,115736577,115867649,115998721,116195329,116588545,116654081,116785153,116850689,116916225,117374977,117440513,117506049,117571585,117637121,118358017,118423553,119078913,119603201,119865345,130613249,130744321,132644865,132710401,132907009,132972545,133103617,133169153,134610946,134676481,134742018,134807553,136118274,136183810,136249345,136577030,136970241,139460609,139526145,139591681,139657217,139722753,140771329,142278657,142737409,143261697,143851521,144637953,145162241,145227777,148570114,148635650,148701186,148766722,148963331,149749761,150274049,150339585,151912449,151977990,152305665,154271750,155320321,155582465,155648004,155713553,155844609,156041218,156106753,156499969,156565508,156631041,156696577,156762119,156893187,156958722,157089793,157220865,157286401,157351937,157417473,157483010,157548546,157614083,157679617,157876225,157941761,158072833,158138369,158203906,158334980,159121412,159383553,159449091,159514626,159711237,159842305,160104449,160169985,160432129,161218565,161284100,161808391,161873926,161939460,162004993,162201602,162791429,162856965,162922504,163119105,163184644,163315715,163381251,163446787,163512324,163577857,163643394,166068227,166133763,166199304,166264835,166330371,166395911,166461444,166526979,166592515,166658053,166723587,166789124,166854659,166920195,166985731,167051267,167116805,167182339,167247876,167313412,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167968769,168034307,168099843,168165379,168230916,168296452,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148423,169213959,169279495,169345027,169410567,169476099,169541635,169607171,169672707,169738250,169803786,169869317,169934851,170000387,170065929,170131460,170196995,170262531,170328068,170393603,170459140,170524676,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245573,171311114,171376644,171442186,171507715,171573257,171638792,171704323,171769864,171835395,171900931,171966468,172032003,172097539,172163076,172228612,172294147,172359683,172425221,172490756,172556293,172621828,172687364,172752901,172818436,172883971,172949507,173015044,173080579,173146119,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735946,173801475,173867013,173932547,173998083,174063625,174129156,174194691,174260227,174325766,175046681,175833092,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777],"cdr":[786433,2293765,52887553,69468161,84082692,91947010,114294786,114360321,114425857,144965633,145031169,162856964,168165377,173080578,175046657],"cdrevent":[786433,2293762,20709379,57737223,69468162,87031811,129368067,129433603,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,165150725,168165386,170328065,175046657],"confbridgeend":[786433,2359301,175046657],"conference":[786440,2359297,2424833,2490369,2555905,2621441,3735553,3801089,3866625,46071809,46137351,46268423,46465025,46530567,46596097,46661639,46727169,46792711,46858241,46923783,46989313,47054855,47120385,47185927,47251457,47316999,69402625,69468165,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,81068033,81133569,81264641,81330177,81395713,81461249,81526785,81592321,81657857,85262337,85327873,87228417,87293953,87359489,87490561,87621633,87687169,87752705,89260033,89325569,89391105,89456641,89522177,89587713,89653249,105644038,105775110,105971718,106168326,106364934,106496006,106627078,106758150,106954758,117178374,117243905,159842307,159907843,160038915,160104451,160169987,160235523,160301059,160366595,160432131,166264833,166330370,168361985,168427521,168493057,168624129,168755201,168820737,168886273,170393601,170459138,170524674,170590209,170655746,170721282,170786817,175046664],"confbridgejoin":[786433,2424837,175046657],"confbridgeleave":[786433,2490373,175046657],"confbridgestart":[786433,2555909,175046657],"confbridgetalking":[786433,2621445,175046657],"connectionstate":[786434,2686982,175046658],"connect":[786433,2686977,27000833,44761089,44826625,64618503,65536001,65601537,69402628,83099652,93323268,93454341,110428161,110690305,110821377,110886913,150863873,151060481,151191553,151650305,151846913,151977985,152043521,152174593,152240129,161873928,175046662,175833093],"completed":[786433,2949121,69468161,91750403,144048135,144375810,169213953,172883971,175046657],"channels":[786436,3604481,5701633,5963777,6291457,45547521,45613057,52690945,69140484,69402628,69468179,73334786,75563009,86835201,89063425,92471297,92864513,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,128319489,148439041,154206209,156893185,156958721,157483009,157548545,159580162,162791425,163119106,163577858,166526977,166592513,166920193,166985729,167247873,167313409,167837698,169410561,169869313,170196994,171835393,171966466,173015042,173604865,173670401,173867009,173998082,174260225,175046660,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"commences":[786433,3604481,69468161,170196993,175046657],"codec":[786433,3604481,69468161,170196993,175046657],"conversion":[786433,3604481,69468161,170196993,175046657],"created":[786433,4063233,43974657,69074945,69468161,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,154206209,155189249,171311105,175046657,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"changed":[786434,4194305,5570561,69402625,69468162,162856961,171442177,173146113,175046658],"case":[786433,4325377,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,29163521,67371010,69468161,77463553,82771969,90832897,91881474,94568449,109641729,140705793,144900098,155516929,161546241,171573249,171966465,173015042,175046657,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242],"calls":[786433,4456449,45023233,51249153,69402626,69468161,80478210,83099649,83427329,88932353,88997889,91029505,91095041,91226113,91291651,91357186,91422721,91488257,91684866,91750408,103153667,110493697,111804417,142016513,142147585,142409729,142475265,142606337,143065089,143327233,143589377,143917058,143982599,144048130,144375812,144506882,159252482,161873921,162004994,162201601,170065921,170131457,171704321,172163073,172228609,172359681,172425219,172490754,172556289,172621825,172818434,172883976,175046657],"client":[786434,4718593,5505025,43122690,69468162,90832899,140836866,140967937,171966468,173015041,175046658],"completion":[786433,5963777,69468161,173998081,175046657],"copy":[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,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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582465,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400513,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990337,159055873,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497666,160563202,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691970,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903233,167968769,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046658,175112193,175177730,175243266,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833090,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274882,177340418,177405954,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242,177995778,178061313,178126849,178192386,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782210,178847746,178913282],"cdreventhandler":[2293767,69337089,165150726],"confbridgeendeventhandler":[2359303,69337089,165216262],"confbridgeendevent":[2359297,20905987,57933831,69468161,87228419,165216261,166264833,168361994],"confbridgejoineventhandler":[2424839,69337089,165281798],"confbridgejoinevent":[2424833,20971523,57999367,69468161,87293955,131268611,131334147,165281797,166264833,168427530],"confbridgeleaveeventhandler":[2490375,69337089,165347334],"confbridgeleaveevent":[2490369,21037059,58064903,69468161,87359491,131399683,131465219,165347333,166264833,168493066],"confbridgestarteventhandler":[2555911,69337089,165412870],"confbridgestartevent":[2555905,21364739,58392583,69468161,87687171,165412869,166264833,168820746],"confbridgetalkingeventhandler":[2621447,69337089,165478406],"confbridgetalkingevent":[2621441,21430275,58458119,69468161,87752707,131989507,165478405,166264833,168886282],"connectionstateeventhandler":[2686983,69337089,165543942],"connectionstateevent":[2686977,21561347,58589191,69468161,87818241,87883779,88211457,91947009,92471297,132120578,165543941,168951814,169017353,169345030,170328065,173080582,173604870],"common":[6356995,7340035,7405571,7471106,7536642,7602179,7667715,7733251,7798787,7864323,7929859,7995394,8060931,8126467,8192003,8257539,8323075,8388611,8454146,8519682,8585219,8650754,8716291,8781827,8847363,8912899,69009409,69468164,155058184,166199297,166330369,170328065,172359681],"cultureinfoen":[6356993,8388614,155058177],"causes":[6422530,8978433,9043969,28180481,45875201,68485121,69402627,73465857,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,155844610,158466049,158531585,159711233,161284097,161415169,162856961,164691969,166002689,175177729,178192385,178847745],"code":[6422529,8978433,10551297,29294594,30081025,30146561,30212097,30277633,30670849,30736385,31588353,31653889,69074946,69140483,69468161,77463554,77529089,83099650,89128961,92602369,93454338,94765058,94830594,94896129,110297090,136445953,148570114,151781378,155516931,155582469,155648001,155844609,156303361,156565505,156696577,158466049,158531585,161873922,167837697,170262529,173735937,175833090],"compatibility":[6422530,8978433,9043969,155844610],"commandaction":[6488067,9109507,14680067,45940743,46006279,69402626,69533697,73531398,81002499,105381890,105447426,159776780,161611777,177537026],"command":[6488065,9109510,10551300,10682370,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,18153474,28311562,29294594,29360130,29425666,30081025,30146562,30212098,30277634,30670849,30736385,31916033,31981569,32047105,33554441,34275332,34340869,34406404,34471938,34537476,34603010,34668548,34734082,34799618,34865156,34930690,34996226,35061762,35127299,35192835,35258371,35323908,35389442,35454978,35520516,35586050,35651586,35717124,35782658,35848196,35913730,35979268,36044802,36110338,36175876,36241410,36306946,36372482,36438020,36503554,36569090,36634628,36700162,36765698,36831236,36896770,36962308,37027842,37093378,37158916,37224450,37289988,37355522,37421058,37486596,37552130,37617667,37683204,37748738,37814274,37879812,37945346,38010883,38076420,38141955,38207491,38273027,38338563,38404100,38469634,38535171,38600708,38666242,38731779,38797316,38862850,38928387,38993924,39059458,39124995,39190532,39256066,39321604,39387138,39452676,39518210,39583748,39649282,39714820,39780354,39845892,39911426,39976964,40042498,40108036,40173570,40239106,40304644,40370178,40435714,40501252,40566787,40632324,40697858,40763395,40828931,40894468,40960003,41025540,41091074,41156612,41222146,41287682,41484290,41549830,45219846,46006279,54132738,69074945,69140485,69206017,69402633,69468163,69533701,69992450,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,73531393,75890690,77463553,77725697,77791234,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708738,78774274,78839810,78905346,78970882,79036418,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691778,79757313,79822849,79888385,79953922,80609281,81002499,83099649,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179842,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357186,91422721,91488257,91553793,91619329,91684866,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782018,93847553,93913089,93978625,94044161,94109697,94175233,94568449,96796675,96862211,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500611,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155971,99221506,99287042,99352579,99418114,99483650,99549186,99614723,99680259,99745794,99811331,99876866,99942403,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794371,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,103415814,105381889,105447430,110624769,119930886,136708097,142868481,153026561,154009601,155516933,155582465,155713538,155910186,155975685,156041221,156106757,156172292,156237828,156303364,156368900,156434436,156499972,156565509,156631046,156696581,156762116,156827652,156893188,156958724,157024260,157089797,157155333,157220869,157286405,157351941,157417477,157483012,157548548,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138373,158203908,158269444,158334980,158466050,158662657,158793729,159121409,159383554,159776776,161153025,161873921,163250181,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182340,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490754,172556289,172621825,172687361,172752897,172818434,172883969,172949505,173015041,173080578,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537030,177602561,177668098,177733633,177799169,177864705,177930241],"control":[6750209,9895937,10682372,11075586,30081025,30146561,30212097,30277633,34930689,34996225,69140481,69861380,71041026,155713540,156106755,175046657],"challengeresponse":[6815747,27459587,66781190,69402625,69533697,93716483,152961026,159645698,177471497,177930241],"commandresponse":[6881283,10027011,27525123,66846726,69533698,93782019,153026562,177537034,177930241],"const":[7471106,7536642,7602178,7667714,7733250,7798786,7995394,8454146,8519682,8650754,9371650,9437186,9502722,9568258,9633794,9699330],"char":[8585220,8716292,8781828,8912900,9961476,31195140,31260676,31784964,31916036,31981572,32047108,32178180,32309252,32440324,32571396,33292292,33423364,68222977,94830596,154796034],"current":[10158084,10223620,10289156,10354692,10420228,10485764,10551299,10616835,10682373,10747908,10813444,10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893637,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,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,18612228,18677764,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,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,27000836,27066372,27131908,27197444,27262980,27328516,27394052,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049412,28114948,28180485,28246021,31064065,37027841,42926081,48365569,68485121,68878337,69140484,69402625,70123521,71565313,74448897,77266947,77332483,77398019,79953923,80019459,80150529,84934659,85000195,91750401,93388803,94306307,94437377,98566145,101580801,144113666,154861569,155123716,155189252,155254791,155320327,155385863,155451396,155516931,155648003,155713541,155779076,155844612,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762117,156827651,156893187,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679620,157745155,157810691,157876228,157941764,158007299,158072835,158138371,158203907,158269443,158334979,158466055,158531591,158597124,158662660,158728197,158793732,158859268,158924805,158990339,159121412,159186947,159252483,159318019,159383555,159449091,159514627,159580163,159645699,159711235,159776771,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563203,160628739,160694275,160759811,160825347,160890883,160956419,161021956,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939459,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,164691975,166002695,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883972,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,175046660,175177735,175243268,175833092,177274884,177340420,177405956,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243,177995779,178192391,178782212,178847750,178913285],"cleanup":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281],"collection":[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,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,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,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,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,69337089,77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155123713,155189249,155254786,155320322,155385858,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466050,158531586,158597121,158662657,158728193,158793729,158859265,158924801,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691970,166002690,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177730,175243265,175833089,177274881,177340418,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192386,178782209,178847745,178913281],"creates":[10158081,10223617,10289154,10354690,10420226,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,13434882,13500418,13565953,13631489,13697025,13762561,13828097,13893633,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,18612226,18677762,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,27000833,27066370,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049410,28114945,28180481,28246017,28573697,28704769,28770305,29949953,33816577,33882113,34013185,34078721,34144257,34799617,35061761,35127297,35192833,35258369,35389441,35454977,35586049,35651585,35782657,35913729,36044801,36110337,36241409,36306945,36372481,36503553,36569089,36700161,36765697,36896769,37027841,37093377,37224449,37355521,37421057,37552129,37748737,37814273,37945345,38010881,38141953,38207489,38273025,38338561,38469633,38535169,38666241,38731777,38862849,38928385,39059457,39124993,39256065,39387137,39518209,39649281,39780353,39911425,40042497,40173569,40239105,40370177,40435713,40566785,40697857,40763393,40828929,40960001,41091073,41222145,41287681,41484289,41549825,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45219841,45678593,45744129,45809665,45875201,45940737,46006273,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103425,48168961,48234497,48300033,48365569,48562177,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49348609,49414145,49479681,49545217,50003969,50069505,50135041,50200577,50659329,50724865,51052545,51118081,51183617,51249153,51445761,51511297,51576833,51642369,51707905,52035585,52101121,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53346305,53411841,53608449,53673985,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,55181313,55246849,55312385,56819713,57868289,58720257,58785793,58851329,58982401,59047937,60162049,60227585,61734913,61931521,61997057,63766529,63832065,65470465,65536001,65601537,65667073,65732609,65798145,66387969,66519041,66715649,67239937,68026369,68288513,68943873,69730306,70909957,70975489,71106564,71172098,71237634,71303170,71368707,71434242,71499778,71565314,71630850,71696385,71761922,71827458,71892996,71958530,72024066,72089602,72155138,72220674,72286210,72351747,72417282,73007106,73072643,73138179,73400322,73465858,73531394,74121218,74186754,74252290,74317826,74383362,74448898,74514433,74579971,74645506,74711044,74776578,74842114,74907652,74973186,75038724,75169797,75366402,75563011,75628547,75694083,75759618,75825154,75956228,76021762,76087298,76152834,76218370,76283906,76480514,76808195,76873730,76939265,155123713,155189250,155254788,155320322,155385858,155451393,155516929,155648002,155713537,155779073,155844614,155910145,155975681,156041218,156106757,156172291,156237827,156303362,156368898,156434435,156499972,156565507,156631043,156696578,156762115,156827650,156893187,156958722,157024259,157089795,157155333,157220867,157286403,157351939,157417475,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941763,158007299,158072834,158138372,158203906,158269442,158334979,158466051,158531587,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121411,159186948,159252484,159318017,159383554,159449089,159514625,159580161,159645699,159711235,159776771,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694275,160759811,160825347,160890883,160956419,161021955,161087489,161153026,161218564,161284099,161349637,161415169,161480707,161546243,161611777,161677313,161742849,161808389,161873921,161939459,162004993,162070529,162136065,162201605,162267137,162332678,162398209,162463745,162529283,162594817,162660353,162725889,162791428,162856964,162922500,162988033,163053571,163119105,163184643,163250181,163315715,163381251,163446787,163512323,163577857,163643393,164691972,166002691,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182338,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296450,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148418,169213954,169279490,169345025,169410562,169476098,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328067,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032002,172097538,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867010,173932546,173998081,174063617,174129153,174194689,174260225,174325761,175046660,175177732,175243266,175833089,177274882,177340418,177405954,177471489,177537025,177602561,177668097,177733633,177799169,177864706,177930241,177995777,178192387,178782210,178847745,178913282],"cause":[10289153,10354689,10420225,10682369,13434881,13500417,18612225,18677761,27066369,28049409,28770310,28901382,32702465,55246854,65732614,69140482,69533697,69730305,76283905,76873729,88604675,90832899,91881476,134479878,134545409,140705800,144572424,155254786,155320321,155385857,155713537,157614082,158466049,158531585,164691970,166002689,169738243,171966467,173015044,175177730,177864705,178192385],"contained":[10551297,29163521,77463553,94568449,155516930],"calling":[10551297,13893633,29163521,42860545,69402625,85655554,88539137,118358017,118423553,133955585,155516929,158924801,159121409,166658050,169672705],"corresponding":[10551297,29163521,49152001,49217537,69074945,69206017,69468161,69533697,155516929,158662657,158793729,174129153,177930241],"codes":[10551297,29294593,91291649,91357185,91684865,142540801,143196161,155516929,172425217,172490753,172818433],"controlstreamfile":[10682372,30081030,30146566,30212102,30277638,69861381,155713540],"completes":[10682372,30081025,30146561,30212097,30277633,69140488,69861380,155713540,156106753,157089793,157155329,157220865,157286401,157351937,157417473,158138369],"complex":[10682369,31064065,69140481,70123521,155713537,156565505],"character":[10682372,31719425,31784961,32374785,32440321,37421057,42926081,69140484,70385666,70647810,77463553,78512129,83099649,90243073,94830594,98631681,111017985,138608641,155516929,155713540,156893187,157089793,157351937,161873921,171376641],"context":[10682369,32833543,39780358,44826631,45481990,49414146,49545218,52625415,52690951,69140481,69402628,73072641,75563010,77529090,79364098,80412674,80740354,82313218,82706434,82771970,83099653,84017154,85655553,86507521,86573057,86769665,86900737,88408066,89718785,90243074,90374145,92602369,93192194,93454341,93847553,95420422,100335622,102825990,104595462,108396550,109510658,109641730,110690311,110821377,110886913,111017988,113967110,116523012,118554630,125304838,128057350,133496838,137560065,138805254,139198470,148832262,150339590,152043527,152174593,152240129,153092102,155648002,155713537,157745155,159186948,159514626,161087491,161480706,161546242,161873927,162791428,166658049,167510017,167575553,167772161,168034305,169541634,170852353,171376642,171507713,173735937,174325762,175833093,177602561],"continuation":[10682372,32833537,32899073,32964609,33030145,39780353,39911425,40370177,40435713,69140483,70778882,79364097,79429633,79560706,100335617,100401154,100532225,100597761,155713540,157745154,157810690,158007299],"console":[10682369,33357825,69140481,69468161,155713537,158269441,173080577],"channelstatuscommand":[11010051,34668548,34734087,34799623,69140481,70975494,77725699,96796675,155910145,156041228],"controlstreamfilecommand":[11075587,30081025,30146561,30212097,30277633,34865156,34930690,34996226,35061767,35127303,35192839,35258375,69140481,71041026,71106570,77791235,96862210,96927746,96993282,97058818,97124354,97189890,155910145,156106767],"controldigits":[11075586,34930694,34996230,71041027,156106754],"close":[13828097,13893634,42729478,42860550,69402625,158859265,158924802,161415169],"closes":[13893633,42860545,69074945,155189249,158924801],"connection":[13893636,27000833,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,28573698,42860545,42926081,42991618,43057154,48365569,64815106,65536001,65601537,65798150,66387974,67371009,69074946,69402628,69468161,74448897,76808194,80281601,93323265,101974017,150929409,155189251,158924805,161021954,161349633,161415169,162070529,169345025,175046660,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"currently":[13893633,42860545,69402625,77529089,80871425,82575361,91750401,95551489,105119745,109051905,143982594,155648001,158924801,159645697,161349633,162004993,172883969],"challengeaction":[14548995,45678599,45744135,49086465,49152001,49217537,64880641,69402627,69533697,73400326,80871427,105054210,105119746,159645708,161349634,161611777,177471490],"changemonitoraction":[14614531,45809671,45875207,69402626,73465862,80936963,105185282,105250818,105316354,159711244,161611777],"confbridgekickaction":[14745603,46071814,46137352,69402625,73596932,81068035,105512963,105578499,105644035,159842314,161611777],"confbridgelistaction":[14811139,46202884,46268422,69402625,81133571,105709571,105775107,159907848,161677313],"confbridgelistroomsaction":[14876675,46333956,46399494,69402625,81199107,105840643,159973385,161677313],"confbridgelockaction":[14942211,46465030,46530567,69402625,73662468,81264643,105906179,105971715,160038922,161611777],"confbridgemuteaction":[15007747,46596102,46661640,69402625,73728004,81330179,106037251,106102787,106168323,160104458,161611777],"confbridgesetsinglevideosrcaction":[15073283,46727174,46792712,69402625,73793540,81395715,106233859,106299395,106364931,160169994,161611777],"confbridgestartrecordaction":[15138819,46858246,46923783,69402625,73859076,81461251,106430467,106496003,160235530,161611777],"confbridgestoprecordaction":[15204355,46989318,47054855,69402625,73924612,81526787,106561539,106627075,160301066,161611777],"confbridgeunlockaction":[15269891,47120390,47185927,69402625,73990148,81592323,106692611,106758147,160366602,161611777],"confbridgeunmuteaction":[15335427,47251462,47317000,69402625,74055684,81657859,106823683,106889219,106954755,160432138,161611777],"coresettingsaction":[15400963,47382534,69402625,81723395,107020291,160497674,161611777],"coreshowchannelsaction":[15466499,47448070,69402625,81788931,107085827,160563210,161611777],"corestatusaction":[15532035,47513606,69402625,81854467,107151363,160628746,161611777],"createconfigaction":[15597571,47579142,47644679,69402625,74121220,81920003,107216899,107282435,160694282,161611777],"config":[18153473,54132737,69402625,75890689,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250179,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"comman":[18153473,54132737,75890689,163250177],"convert":[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,60096513,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"channelreloadevent":[20774915,57802759,69468161,87097347,130416642,130482179,130547715,130613250,130678787,168230922,170328065],"channelupdateevent":[20840451,57868295,69468161,87162883,130744322,130809859,130875395,130940931,131006467,131072003,131137539,131203075,168296458,170328065],"confbridgelistcompleteevent":[21102595,58130439,69468161,87425027,168558602,173211649],"confbridgelistevent":[21168131,58195975,69468161,87490563,131530755,131596291,131661827,131727363,166264833,168624138],"confbridgelistroomscompleteevent":[21233667,58261511,69468161,87556099,168689674,173211649],"confbridgelistroomsevent":[21299203,58327047,69468161,87621635,131792899,131858435,131923971,166264833,168755210],"connectevent":[21495811,58523655,69468162,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818244,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,132055042,136642561,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951819,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761],"called":[26935297,44761089,44826625,46268417,64421889,69402627,69468161,77529091,79953922,80150529,80412674,95420417,95617025,95879169,101318658,101384194,101711873,102629378,155648003,158466050,158728193,159121409,159186946,159907842,159973377,174129153,174718977],"challenge":[27000834,45744129,49152002,49217538,64880641,64946177,69402626,69533698,73400321,74711042,76611586,80871425,82575362,93716482,105054209,109051906,152961030,159645700,161349636,175046658,177471492],"converted":[27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,67371009,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"category":[27656193,53936134,54001670,54067206,54132742,66977799,69402625,69533697,93913090,153354242,163250177,177668100],"calcduration":[27983873,67829766,177995777],"calculated":[27983873,67829761,177995777],"constructor":[28377089,28442625,28573697,28639233,28704769,28770305,28835841,28901377,29097985,29556737,29622273,29949953,33488897,33619969,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34471937,34603009,34734081,34799617,35061761,35127297,35192833,35258369,35389441,35454977,35586049,35651585,35782657,35913729,36044801,36110337,36241409,36306945,36372481,36503553,36569089,36700161,36765697,36896769,37027841,37093377,37224449,37355521,37421057,37552129,37617665,37748737,37814273,37945345,38010881,38141953,38207489,38273025,38338561,38469633,38535169,38666241,38731777,38862849,38928385,39059457,39124993,39256065,39387137,39518209,39649281,39780353,39911425,40042497,40173569,40239105,40370177,40435713,40566785,40697857,40763393,40828929,40960001,41091073,41222145,41287681,41484289,41549825,41746433,41811969,41877505,42074113,42139649,42336257,42532865,42598401,42795009,43122689,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46268417,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49676289,49807361,49938433,50003969,50069505,50135041,50200577,50593793,50659329,50724865,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53215233,53346305,53411841,53542913,53608449,53673985,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,55050241,55115777,55181313,55246849,55312385,55377921,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64094209,64159745,64225281,64290817,65470465,65536001,65601537,65667073,65732609,65798145,66125825,66387969,66519041,66715649,66781185,66846721,66912257,67043329,67108865,67174401,67239937,67305473,67698689,67764225,67960833,68026369,68288513,68550657,68616193,68681729,68747265,68943873,69074945,69206017,69468161,69664769,69730305,69795841,70909953,70975489,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76808193,76873729,76939265,77004801,77135873,158662657,158793729,174129153],"ctor":[28377092,28442627,28573698,28901378,29097985,29622273,33619969,33882113,33947652,34078721,34209797,37617665,38141953,40566785,40960001,41811969,41877505,42139649,42598401,42795011,45219842,45350926,46137346,46268417,46530561,46661634,46792706,46923777,47054849,47185921,47316994,47644673,50659331,51380229,51838979,51970052,52232193,52363265,53411841,53673985,54263810,54329347,54394883,54525954,54657025,54788097,54919169,55377921,55705601,55771137,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64094209,64159745,64225281,64290817,65601537,65798145,66387971,66715650,67305473,67764225],"caused":[28770305,55246849,65732609,69468161,69533697,77266945,77332481,77398017,79953921,80019457,84934657,85000193,86048770,86114306,87425026,87556098,87949314,90374146,90439682,90570754,90701826,90767362,91160578,91357186,91684866,91750402,91815938,92078082,92536834,92602370,93126658,93192194,93388801,94306305,145293313,145358849,155254785,155320321,155385857,158466049,158531585,164691969,166002689,167051266,167116802,168558594,168689666,169082882,171507714,171573250,171704322,171835394,171900930,172294146,172490754,172818434,172883970,172949506,173211651,173670402,173735938,174260226,174325762,175177729,177930241,178192385],"collections":[29622274,29949953,41811970,42270724,50528258,55640066,57475073,60030977,66060290,67305474,67567617,67764226],"containing":[29949953,30867457,30932993,30998529,31784961,32178177,32309249,32440321,32571393,33292289,69402627,69533697,80150529,93782017,101646337,153026561,158728193,160890881,162988033,163053569,177537026],"channelname":[31129606,94240769,154337286,177995777],"coordinated":[31850497,31916033,31981569,32047105,38141953,38207489,38273025,38338561,69140481,71892993,78774273,99418113,157155330,157417473],"callerid":[32768006,39649286,69140481,77529089,79298562,83099649,85196801,85393409,85655553,87031809,88014849,88080385,88145921,88539137,88604673,88932353,90112003,90177537,90308609,90374145,90439681,90505217,90636289,91160577,92602369,92930049,93454337,94961670,100270086,110559237,116654085,117374981,118292486,129630214,132448261,133955589,136118277,138280965,138477569,138543105,139001862,139460613,141688837,148635653,151912453,155648001,157679619,161873921,166199297,166395905,166658049,168165377,169148417,169213953,169279489,169672705,169738241,170065921,171245571,171311105,171442177,171507713,171573249,171638785,171769857,172294145,173735937,174063617,175833089],"concurrent":[34013185,34144257,77660161,96665601,155844609],"closed":[42991617,43057153,69402625,161349633],"consructor":[43122689,158924801],"classmethod":[44040198,44171269],"commonslogginglog":[44498945,158990337],"commons":[44498945,158990337],"cancel":[44630017],"callback":[44761089,44826626,69402626,73072642,80412674,102825985,102891521,159186950],"charge":[45285377,45350913,73203714,159449090],"channelprefix":[45350918,80674817,103677958,159449089],"chargetype":[45350918,80674817,103743494,159449089],"currencyname":[45350918,80674817,104136710,159449089],"currencyamount":[45350918,80674817,104005638,159449089],"currencymultiplier":[45350918,80674817,104071174,159449089],"chargingassociationid":[45350918,80674817,103809030,159449089],"chargingassociationnumber":[45350918,80674817,103874566,159449089],"chargingrassociationplan":[45350918,80674817,103940102,159449089],"channel1":[45613062,80805889,86835201,88670209,89063425,92864513,104857606,128581638,134610949,159580161,167837697,169803777,170196993,173998081],"channel2":[45613062,50659334,50724870,80805889,83165186,86835201,88670209,89063425,92864513,104923142,111214597,111345665,128647174,134676485,159580161,161939458,167837697,169803777,170196993,173998081],"courtesy":[45613057],"cli":[46006273,69402625,81002497,83034113,93782017,105447425,110100481,153026561,159776770,161808385,177537025],"confbridge":[46268417,69402625,159907842],"confbridgelist":[46268417,69402625,159907842],"confbridgelistcomplete":[46268417,69402625,159907842],"conferences":[46858241,46923777,69402625,73859074,159973377,160235522],"configuration":[47579138,47644674,48627713,69402627,74121220,80412674,82378753,102629377,102957057,108593153,159186946,160694276,161153025,163250179],"combination":[48365569,49217537,82247681,82575361,108265473,109117441,161021953,161349633],"cleartext":[49086466,74711042,82575361,109248513,161349635],"concerned":[49086465,74711041,161349633],"configured":[49086466,49152001,49217537,69074946,69206018,82575362,85590017,109248513,109314049,118095873,155189249,158597121,158662657,158793729,161349634,166592513],"checks":[49545217,69402625,74842113,82771969,93323265,109641729,151519233,161546243,175046657],"check":[49545217,69402625,69468161,159383553,167837697],"considered":[51249153,83099649,83427329,91291649,91357185,91684865,92471297,93454337,110952449,111804417,142475265,143065089,148439041,152305665,161873921,162201601,172425217,172490753,172818433,173604865,175833089],"custom":[51314689,51380225,69074945,69140482,69402625,69468161,75104258,155713537,156565505,156696577,161742849,162267138,174129153],"connections":[65536001,65601537,77660161,96534529,155844609],"classes":[69009409,69074945,69140481,69206017,69271554,69337089,69402625,69468162,69533697,69599233,158859265,170328065],"convinience":[69074945,155713537],"course":[69140481,157614081],"capable":[69140481,158203905],"completely":[69337089,166002689],"combinded":[69337089,177274881],"counting":[69402625,159121409],"cancelled":[69402625,159121409],"corresponds":[69402625,69533698,90439681,91750401,139788289,144179201,159121409,171573249,172883969,177471489,177537025],"contrast":[69402625,159186945],"commands":[69402625,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776770,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"confbridgelistrooms":[69402625,159973377],"confbridgelistroomscomplete":[69402625,159973377],"concrete":[69402625,161611777],"connecting":[69402626,161873922],"careful":[69402625,161873921],"choose":[69402625,161873921],"callers":[69402625,162725889],"cat":[69402625,84475905,115212289,163250178],"chan_agent":[69468164,166526977,166592513,166920193,166985729],"chan_zap":[69468163,167247873,167313409,169410561],"compatibily":[69468161,167837697],"cdrevents":[69468161,168165377],"cdr_manager":[69468162,168165378],"chan_sip":[69468165,169869313,171835393,171966465,173015041,173867009],"contain":[69468162,69533697,84475906,115212290,163250178,170328065,173211649,177668097],"core":[69468161,170328065],"conrete":[69468161,170328065],"chan_iax2":[69468162,171966465,173015041],"coded":[77266945,77332481,77398017,79953921,80019457,84934657,85000193,93388801,94306305,155254785,155320321,155385857,158466049,158531585,164691969,166002689,175177729,178192385],"calleridname":[77529089,85196801,85393409,85655553,86573057,86769665,86900737,87293953,87359489,87490561,88014849,88080385,88145921,88604673,88932353,89325569,89391105,90112001,90177537,90308609,90374145,90439681,90505217,90636289,91160577,92602369,92930049,95027206,116719622,117440517,118358021,127664134,131268614,131399686,131596294,132513797,136183813,137035782,137166854,138346502,139067398,139526149,141754373,148701189,155648001,166199297,166395905,166658049,167575553,167772161,168034305,168427521,168493057,168624129,169148417,169213953,169279489,169738241,170065921,170459137,170524673,171245569,171311105,171442177,171507713,171573249,171638785,171769857,172294145,173735937,174063617],"callingani2":[77529089,95092742,155648001],"callingpres":[77529089,95158278,155648001],"callingtns":[77529089,95223814,155648001],"callington":[77529089,95289350,155648001],"configurations":[80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,109903873,136773633,154140673,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"changemonitor":[80936961,105185281,159711233],"conventions":[85000193,116260865,166002689],"correct":[85000193,116260865,155582465,166002689],"comma":[85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,136708097,154009601,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"calleridnum":[85196801,85393409,85655553,86573057,86769665,86900737,87293953,87359489,87490561,88014849,88080385,88145921,88604673,89325569,89391105,90112001,90177537,90308609,90374145,90439681,90505217,90636289,92602369,92930049,116785157,117506053,118423557,127729670,131334150,131465222,131661830,132579333,137101318,137232390,138412037,139132934,139591685,148766725,166199297,166395905,166658049,167575553,167772161,168034305,168427521,168493057,168624129,169148417,169213953,169279489,169738241,170459137,170524673,171245569,171311105,171442177,171507713,171573249,171638785,171769857,173735937,174063617],"channelstate":[85196801,86573057,86769665,86900737,88604673,90177537,90308609,116850693,127795206,166199297,167575553,167772161,168034305,169738241,171311105,171442177],"channelstatedesc":[85196801,88604673,90177537,90308609,116916229,166199297,169738241,171311105,171442177],"connectedlinename":[85196801,86573057,86769665,86900737,88604673,90177537,90308609,116981766,127926278,166199297,167575553,167772161,168034305,169738241,171311105,171442177],"connectedlinenum":[85196801,86573057,86769665,86900737,88604673,90177537,90308609,117047302,127991814,166199297,167575553,167772161,168034305,169738241,171311105,171442177],"channelcalling":[85655553,118489094,166658049],"commandid":[86179841,86376449,119996422,120324102,167182337,167378945],"channelstateddesc":[86573057,86769665,86900737,127860742,167575553,167772161,168034305],"callerid1":[86835201,89063425,92864513,128450566,167837697,170196993,173998081],"callerid2":[86835201,89063425,92864513,128516102,167837697,170196993,173998081],"channeltype":[87097345,87162881,90701825,90832897,91881473,130416645,130744325,139919365,140771333,144637957,168230913,168296449,171835393,171966465,173015041],"causetxt":[88604673,134545413,169738241],"count":[88932353,88997889,91029505,91095041,91226113,142016517,170065921,170131457,172163073,172228609,172359681],"cidcallingpres":[90112001,138477573,171245569],"cidcallingpresnumeric":[90112001,138543109,171245569],"chanobjecttype":[90701825,139984901,171835393],"callstaken":[91291649,91357185,91684865,142147589,142606341,172425217,172490753,172818433],"cumulativeloss":[92209153,146210822,173342721],"cleanly":[92471297,148439041,173604865],"counter":[93323266,151388161,151453697,175046658],"checking":[93323265,151519233,175046657],"complete":[93585409,152567813,177340417],"creating":[93716481,152961025,177471489],"content":[93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,153944065,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241],"categories":[93913089,153354245,177668097],"computes":[94371841,154796033,178782209],"constructors":[155123713,155189249,155254785,155320321,155385857,155451393,155516929,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,164691969,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,175046657,175177729,175243265,175833089,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178192385,178782209,178847745,178913281]} \ No newline at end of file +{"class":[65537,131073,196610,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,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,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849668,4915204,4980740,5046274,5111810,5177346,5242883,5308418,5373954,5439490,5505026,5570562,5636098,5701634,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,7536642,7602178,7667714,7733250,7798786,7864322,7929857,7995396,8060932,8126466,8192002,8257538,8323074,8388610,8454146,8519686,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,12779522,12845058,12910594,12976130,13041666,13107202,13172740,13238276,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,21561345,21626883,21692420,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675460,22740996,22806530,22872066,22937602,23003139,23068675,23134210,23199746,23265283,23330818,23396354,23461891,23527427,23592962,23658498,23724035,23789570,23855106,23920642,23986178,24051714,24117250,24182787,24248323,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083331,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114947,28180482,28246019,28311554,28377090,28442626,28508162,28573699,28639234,28704770,28770306,28835843,28901378,28966914,29032450,29097987,29163522,29229059,29294594,29360131,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243715,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,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,34734082,34799619,34865156,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979265,36044801,36110338,36175874,36241410,36306946,36372483,36438019,36503555,36569090,36634626,36700163,36765699,36831234,36896770,36962307,37027842,37093378,37158915,37224451,37289986,37355522,37421059,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600707,38666243,38731779,38797316,38862850,38928386,38993922,39059458,39124995,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780355,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025539,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008579,42074115,42139651,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057155,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909123,43974658,44040194,44105730,44171266,44236802,44302339,44367874,44433411,44498946,44564483,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219843,45285378,45350914,45416450,45481987,45547523,45613059,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923779,46989315,47054850,47120387,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841283,47906818,47972354,48037890,48103426,48168963,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676291,49741827,49807362,49872898,49938434,50003971,50069506,50135042,50200578,50266114,50331651,50397187,50462723,50528259,50593795,50659331,50724866,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445762,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52101122,52166659,52232195,52297731,52363267,52428803,52494338,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346306,53411842,53477378,53542915,53608450,53673986,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591490,54657026,54722562,54788098,54853634,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360962,56426499,56492035,56557570,56623106,56688643,56754179,56819715,56885251,56950786,57016323,57081858,57147394,57212930,57278466,57344002,57409538,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458114,58523650,58589187,58654723,58720258,58785795,58851331,58916867,58982403,59047937,59113473,59179010,59244546,59310082,59375618,59441154,59506690,59572226,59637762,59703298,59768835,59834370,59899906,59965442,60030978,60096514,60162050,60227586,60293122,60358658,60424194,60489730,60555266,60620802,60686338,60751874,60817411,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472771,61538307,61603843,61669378,61734915,61800451,61865987,61931522,61997059,62062594,62128130,62193666,62259202,62324738,62390275,62455811,62521346,62586882,62652419,62717954,62783492,62849028,62914562,62980098,63045634,63111170,63176706,63242243,63307779,63373315,63438851,63504386,63569922,63635458,63700994,63766532,63832066,63897603,63963138,64028674,64094213,64159761,64225283,64290819,64356356,64421891,64487428,64552962,64618498,64684034,64749570,64815106,64880642,64946179,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,65601540,65667075,65732610,65798146,65863682,65929218,65994754,66060290,66125826,66191362,66256898,66322434,66387971,66453506,66519042,66584578,66650114,66715650,66781186,66846722,66912260,66977794,67043330,67108866,67174405,67239940,67305476,67371010,67436546,67502082,67567620,67633154,67698690,67764226,67829762,67895298,67960834,68026370,68091906,68157442,68222978,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812802,68878338,68943874,69009410,69074946,69140482,69206018,69271554,69337090,69402626,69468162,69533698,69599234,69664770,69730306,69795842,69861378,69926914,69992450,70057986,70123522,70189060,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041028,71106564,71172098,71237634,71303170,71368706,71434242,71499778,71565314,71630851,71696388,71761924,71827462,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186755,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842116,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757315,79822851,79888387,79953923,80019459,80084995,80150531,80216067,80281603,80347139,80412675,80478211,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82837507,82903043,82968579,83034115,83099651,83165187,83230723,83296259,83361795,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014849,88080386,88145922,88211458,88276994,88342530,88408066,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223813,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337923,96403459,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251651,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407425,146472961,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946371,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994950,151060488,151126022,151191562,151257097,151322633,151388167,151453704,151519234,151584774,151650312,151715847,151781384,151846919,151912455,151977991,152043526,152109062,152174598,152240134,152305670,152371206,152436742,152502278,152567814,152633350,152698886,152764422,152829958,152895495,152961030,153026566,153092102,153157638,153223174,153288710,153354246,153419782,153485318,153550854,153616390,153681926,153747462,153812998,153878537,153944070,154009606,154075142,154140678,154206214,154271750,154337282,154402824,154468360,154533897,154599433,154664969,154730509,154796039,154861574,154927115,154992642,155058182,155123718,155189254,155254791,155320326,155385862,155451398,155516934,155582470,155648006,155713542,155779078,155844614,155910151,155975686,156041222,156106758,156172294,156237830,156303366,156368902,156434439,156499975,156565511,156631046,156696582,156762118,156827654,156893190,156958726,157024263,157089798,157155334,157220870,157286406,157351943,157417478,157483014,157548553,157614087,157679623,157745158,157810695,157876230,157941767,158007303,158072839,158138374,158203910,158269446,158334982,158400518,158466054,158531590,158597128,158662663,158728198,158793734,158859270,158924807,158990342,159055879,159121414,159186951,159252486,159318022,159383558,159449094,159514631,159580167,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497666,160563201,160628744,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939464,162005001,162070536,162136073,162201609,162267145,162332681,162398216,162463752,162529288,162594824,162660360,162725896,162791432,162856968,162922504,162988040,163053576,163119111,163184648,163250184,163315720,163381256,163446792,163512328,163577864,163643400,163708936,163774472,163840002,163905538,163971080,164036616,164102152,164167688,164233223,164298760,164364296,164429832,164495368,164560904,164626440,164691976,164757512,164823048,164888584,164954121,165019656,165085191,165150727,165216263,165281800,165347335,165412871,165478408,165543945,165609480,165675016,165740552,165806088,165871624,165937160,166002696,166068232,166133768,166199304,166264840,166330376,166395912,166461448,166526984,166592520,166658056,166723592,166789128,166854664,166920200,166985736,167051272,167116808,167182344,167247880,167313416,167378952,167444488,167510024,167575560,167641096,167706632,167772167,167837704,167903240,167968775,168034311,168099848,168165384,168230920,168296457,168361991,168427528,168493063,168558599,168624135,168689671,168755207,168820743,168886280,168951816,169017352,169082888,169148424,169213961,169279496,169345032,169410568,169476104,169541640,169607176,169672712,169738248,169803784,169869319,169934855,170000392,170065928,170131470,170197000,170262536,170328072,170393601,170459137,170524673,170590209,170655745,170721282,170786817,170852353,170917889,170983425,171048967,171114497,171180040,171245574,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835399,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342726,173408262,173473798,173539336,173604872,173670408,173735945,173801480,173867016,173932552,173998089,174063623,174129153,174194689,174260232,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850056,174915595,174981126],"changes":[131074,262145,63832065,64028675,64094209,64159747,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113180673,139722753,153616385,155648001,160432129,162398209,163250177,165478401,167182337,168361985,168493057,168558593,168624129,168689665,168755201,168820737,170393601,171573249],"c84e":[131073],"create":[196609,327681,393217,458753,524289,589825,655361,720897,786433,851969,42205185,42270721,63635457,64159746,64225281,68812802,77266945,103809025,151191553,151257089,151322625,154402817,154468353,156631042,157286401,160628737,161939457,170131458,171180033,173735937,174260225],"com":[196610],"change":[262145,22806529,63176705,174915585],"contains":[327681,393217,458753,524289,589825,655361,720897,786433,851969,5111809,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789569,24772609,24838145,24903681,25821185,25886721,26214401,26279937,29753345,29818881,29884417,31326209,31391745,32374785,32440321,32636929,33357825,33554433,33751041,35389441,35454977,62062594,63766529,63897601,64028676,64094209,64159749,64225283,72155137,74842113,77004801,77266945,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852162,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88801281,89325569,96337921,103153665,104005633,132448257,137428993,149618689,151191553,151257089,151322625,151453698,154402817,154468353,154599425,154664961,154730497,157024257,157286401,157483009,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019650,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772162,167837697,167903233,167968769,168034305,168099841,168165377,168230915,168296449,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886274,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,172228609,172621825,172752897,173080577,173539331,173604866,173670402,173735938,173801475,173867012,173932546,173998082,174260225],"common":[917507,1900547,1966083,2031618,2097154,2162691,2228227,2293763,2359299,2424835,2490371,2555906,2621443,2686979,2752515,2818051,2883587,2949123,3014658,3080194,3145731,3211266,3276803,3342339,3407875,3473411,63700993,64159748,150994952,162136065,162267137,166264833,168296449],"cultureinfoen":[917505,2949126,150994945],"causes":[983042,3538945,3604481,22806529,40501249,63176705,64094211,68157441,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,151781378,154402817,154468353,155648001,157220865,157351937,158793729,160628737,161939457,171180033,174260225,174915585],"code":[983041,3538945,5111809,23920642,24707073,24772609,24838145,24903681,25296897,25362433,26214401,26279937,63766530,63832067,64159745,72155138,72220673,77791234,83820545,87359489,88211458,89522178,89587714,89653249,105054210,131989505,144506882,147718146,151453699,151519237,151584769,151781377,152240129,152502273,152633345,154402817,154468353,157810690,163774465,166199297,169738241,171835394],"channel":[983041,1114114,3538945,3735558,5242896,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,24641537,24707073,24772609,24838145,24903681,25690113,25755649,25952257,26017793,26411009,26804225,26935297,27066369,27197441,27328513,27721729,28049409,29425671,31195142,31653889,31719431,32047105,34144257,35848193,35913729,39256071,39845894,39911425,39976967,40108038,40239107,40501255,40763398,41287686,41418758,41943046,43450375,43581447,44695559,44761095,44826631,45285382,45350919,45744130,45809666,45875202,47251463,47316999,47448071,47513607,47710217,48300039,49152001,49283073,49414145,49545218,62062593,63766529,63832096,64028697,64094230,64159778,64552964,64815106,65077249,65208321,65273857,65339393,65404929,65667073,66256898,67108865,67698689,67895298,68157441,69271553,69337089,69599235,70254593,70320130,70385666,70516737,70713345,70778881,70844417,70909954,72220676,72286209,72417281,72941570,73138178,73203713,73269249,73924609,74579969,75038722,75300865,75366401,75431938,75628546,75759617,76021761,76087297,76349441,77135875,77201410,77725699,77791237,77856771,78118914,78708738,78774274,78839810,79101954,79233025,79298561,79364097,79429633,79560705,79757315,79822851,79888392,79953923,80019459,80084999,80150534,80216067,80281603,80347141,80412675,80478212,80543747,80609283,80674819,80740355,80805893,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788932,81854468,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706439,82771975,82837511,82903043,82968581,83034115,83099651,83165187,83230723,83296264,83361801,83427331,83492867,83558403,83623944,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869128,84934659,85000200,85065731,85131272,85196807,85262339,85327879,85393411,85458947,85524484,85590019,85655555,85721091,85786627,85852163,85917699,85983239,86048772,86114310,86179846,86245382,86310919,86376454,86441991,86507523,86573059,86638596,86704131,86769669,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359497,87425027,87490563,87556099,87621635,87687176,87752707,87818243,87883779,87949317,88211460,88997889,90112007,91095042,91160578,91226118,91553798,92930054,93323273,93388801,93454337,94961666,96010241,97255430,98107398,98369542,99287046,100007942,100335622,100859910,101056518,101646342,103481351,103677958,104792070,104857601,105316353,105381894,105709569,105775105,105906182,105971713,106364930,108658694,108855297,109117446,109314054,109838342,110362625,110493697,110624769,110755841,110952449,111345665,111411201,111542273,111607809,111673345,112132097,112197633,112263169,112328705,112525313,112656385,113180673,113901569,113967105,114622465,115146753,115408897,126156801,126287873,128188417,128253953,128450561,128516097,128647169,128712705,130154498,130220033,130285570,130351105,131661826,131727362,131792897,132120582,132513793,135004161,135069697,135135233,135200769,135266305,136314881,137822209,138280961,139132929,139460609,139722753,140574721,141099009,141164545,144506882,144572418,144637954,144703490,144900099,145686529,146210817,146276353,147849217,147914758,148242433,150208518,151257089,151519233,151584772,151650321,151781377,151977986,152043521,152436737,152502276,152567809,152633345,152698887,152829955,152895490,153026561,153157633,153223169,153288705,153354241,153419778,153485314,153550851,153616385,153812993,153878529,154009601,154075137,154140674,154271748,155058180,155320321,155385859,155451394,155648005,155779073,156041217,156106753,156368897,157155333,157220868,157745159,157810694,157876228,157941761,158138370,158728197,158793733,158859272,159055873,159121412,159252483,159318019,159383555,159449092,159514625,159580162,160366593,160432129,161808386,162004995,162070531,162136072,162201603,162267139,162332679,162398214,162463747,162529283,162594821,162660355,162725892,162791427,162856963,162922499,162988035,163053573,163119107,163184644,163250180,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163905537,163971075,164036611,164102147,164167684,164233220,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085191,165150727,165216263,165281795,165347335,165412867,165478403,165543939,165609475,165675018,165740554,165806085,165871619,165937155,166002697,166068228,166133763,166199299,166264836,166330371,166395908,166461444,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182341,167247882,167313412,167378954,167444483,167510025,167575560,167641091,167706632,167772163,167837699,167903236,167968771,168034307,168099844,168165380,168230915,168296451,168361991,168427524,168493062,168558598,168624134,168689671,168755206,168820743,168886275,168951811,169017348,169082883,169148423,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738250,169803779,169869317,169934851,170000387,170065929,170131460,170196995,170262531,170328070,170524673,170590209,170655746,170786817,170852353,171311105,171376641,171573249,171638785,171704321,171769857,171835396,171966465,172032001,172163073,173277185,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174391298,174522369,174784513],"compatibility":[983042,3538945,3604481,151781378],"commandaction":[1048579,3670019,9240579,40566791,40632327,64094210,64225281,68222982,75694083,100139010,100204546,155713548,157548545,173604866],"command":[1048577,3670022,5111812,5242882,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,12713986,22937610,23920642,23986178,24051714,24707073,24772610,24838146,24903682,25296897,25362433,26542081,26607617,26673153,28180489,28901380,28966917,29032452,29097986,29163524,29229058,29294596,29360130,29425666,29491204,29556738,29622274,29687810,29753347,29818883,29884419,29949956,30015490,30081026,30146564,30212098,30277634,30343172,30408706,30474244,30539778,30605316,30670850,30736386,30801924,30867458,30932994,30998530,31064068,31129602,31195138,31260676,31326210,31391746,31457284,31522818,31588356,31653890,31719426,31784964,31850498,31916036,31981570,32047106,32112644,32178178,32243715,32309252,32374786,32440322,32505860,32571394,32636931,32702468,32768003,32833539,32899075,32964611,33030148,33095682,33161219,33226756,33292290,33357827,33423364,33488898,33554435,33619972,33685506,33751043,33816580,33882114,33947652,34013186,34078724,34144258,34209796,34275330,34340868,34406402,34471940,34537474,34603012,34668546,34734084,34799618,34865154,34930692,34996226,35061762,35127300,35192835,35258372,35323906,35389443,35454979,35520516,35586051,35651588,35717122,35782660,35848194,35913730,36110338,36175878,39845894,40632327,48758786,63766529,63832069,63897601,64094217,64159747,64225285,64684034,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,68222977,70582274,72155137,72417281,72482818,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400322,73465858,73531394,73596930,73662466,73728002,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383362,74448897,74514433,74579969,74645506,75300865,75694083,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871426,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048770,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539138,88604673,88670209,88735745,88801281,88866817,88932353,89325569,91553795,91619331,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257731,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913091,93978626,94044162,94109699,94175234,94240770,94306306,94371843,94437379,94502914,94568451,94633986,94699523,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551491,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,98172934,100139009,100204550,105381889,115474438,132251649,138412033,148963329,149946369,151453701,151519233,151650306,151846954,151912453,151977989,152043525,152109060,152174596,152240132,152305668,152371204,152436740,152502277,152567814,152633349,152698884,152764420,152829956,152895492,152961028,153026565,153092101,153157637,153223173,153288709,153354245,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075141,154140676,154206212,154271748,154402818,154599425,154730497,155058177,155320322,155713544,157089793,157810689,159186949,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119108,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082882,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604870,173670401,173735938,173801473,173867009,173932545,173998081],"control":[1310721,4456449,5242884,5636098,24707073,24772609,24838145,24903681,29556737,29622273,63832065,64552964,65732610,151650308,152043523,171048961],"challengeresponse":[1376259,22085635,61472774,64094209,64225281,88473603,148897794,155582466,173539337,173998081],"commandresponse":[1441795,4587523,22151171,61538310,64225282,88539139,148963330,173604874,173998081],"copy":[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,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,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,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,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519233,151584770,151650306,151715842,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746,154337281,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927105,154992641,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628738,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840001,163905537,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048962,171114497,171180034,171245570,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129153,174194689,174260226,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850050,174915586,174981122],"const":[2031618,2097154,2162690,2228226,2293762,2359298,2555906,3014658,3080194,3211266,3932162,3997698,4063234,4128770,4194306,4259842],"char":[3145732,3276804,3342340,3473412,4521988,25821188,25886724,26411012,26542084,26607620,26673156,26804228,26935300,27066372,27197444,27918340,28049412,62914561,89587716,150732802],"current":[4718596,4784132,4849668,4915204,4980740,5046276,5111811,5177347,5242885,5308420,5373956,5439491,5505027,5570563,5636099,5701635,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,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454149,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10420227,10485763,10551299,10616835,10682371,10747907,10813443,10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172740,13238276,13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,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,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,21168131,21233667,21299203,21364739,21430275,21495811,21626884,21692420,21757956,21823492,21889028,21954564,22020100,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675460,22740996,22806533,22872069,25690113,31653889,37552129,42991617,63176705,63569921,63832068,64094209,64815105,66256897,69140481,71958531,72024067,72089603,74645507,74711043,74842113,79626243,79691779,86507521,88145923,89063427,89194497,93323265,96337921,140050434,150798337,151060484,151126020,151191559,151257095,151322631,151388164,151453699,151584771,151650309,151715844,151781380,151846915,151912451,151977987,152043523,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698885,152764419,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616388,153681923,153747459,153812996,153878532,153944067,154009603,154075139,154140675,154206211,154271747,154402823,154468359,154533892,154599428,154664965,154730500,154796036,154861573,154927107,155058180,155123715,155189251,155254787,155320323,155385859,155451395,155516931,155582467,155648003,155713539,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827651,156893187,156958724,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859267,158924803,158990339,159055875,159121411,159186947,159252483,159318019,159383555,159449091,159514627,159580163,160628743,161939463,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886276,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,171048964,171180039,171245572,171835396,173342724,173408260,173473796,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174260231,174850052,174915590,174981125],"cleanup":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"collection":[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,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,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,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,64028673,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151060481,151126017,151191554,151257090,151322626,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402818,154468354,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628738,161939458,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180034,171245569,171835393,173342721,173408258,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260226,174850049,174915585,174981121],"creates":[4718593,4784129,4849666,4915202,4980738,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,7995394,8060930,8126465,8192001,8257537,8323073,8388609,8454145,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,13172738,13238274,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,21626881,21692418,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675458,22740993,22806529,22872065,23199745,23330817,23396353,24576001,28442625,28508161,28639233,28704769,28770305,29425665,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31653889,31719425,31850497,31981569,32047105,32178177,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34668545,34799617,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35848193,35913729,36110337,36175873,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39845889,40304641,40370177,40435713,40501249,40566785,40632321,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43188225,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43974657,44040193,44105729,44171265,44630017,44695553,44761089,44826625,45285377,45350913,45678593,45744129,45809665,45875201,46071809,46137345,46202881,46268417,46333953,46661633,46727169,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47972353,48037889,48234497,48300033,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49807361,49872897,49938433,51445761,52494337,53346305,53411841,53477377,53608449,53673985,54788097,54853633,56360961,56557569,56623105,56950785,57081857,57147393,57212929,57278465,57344001,57409537,58458113,58523649,60162049,60227585,60293121,60358657,60424193,60489729,61079553,61210625,61407233,61931521,62717953,62980097,63635457,64421890,65601541,65667073,65798148,65863682,65929218,65994754,66060291,66125826,66191362,66256898,66322434,66387969,66453506,66519042,66584580,66650114,66715650,66781186,66846722,66912258,66977794,67043331,67108866,67698690,67764227,67829763,68091906,68157442,68222978,68812802,68878338,68943874,69009410,69074946,69140482,69206017,69271555,69337090,69402628,69468162,69533698,69599236,69664770,69730308,69861381,70057986,70254595,70320131,70385667,70451202,70516738,70647812,70713346,70778882,70844418,70909954,70975490,71172098,71499779,71565314,71630849,151060481,151126018,151191556,151257090,151322626,151388161,151453697,151584770,151650305,151715841,151781382,151846913,151912449,151977986,152043525,152109059,152174595,152240130,152305666,152371203,152436740,152502275,152567811,152633346,152698883,152764418,152829955,152895490,152961027,153026563,153092101,153157635,153223171,153288707,153354243,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878531,153944067,154009602,154075140,154140674,154206210,154271747,154402819,154468355,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058179,155123716,155189252,155254785,155320322,155385857,155451393,155516929,155582467,155648003,155713539,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631043,156696579,156762115,156827651,156893187,156958723,157024257,157089794,157155332,157220867,157286405,157351937,157417475,157483011,157548545,157614081,157679617,157745157,157810689,157876227,157941761,158007297,158072833,158138373,158203905,158269446,158334977,158400513,158466051,158531585,158597121,158662657,158728196,158793732,158859268,158924801,158990339,159055873,159121411,159186949,159252483,159318019,159383555,159449091,159514625,159580161,160628740,161939459,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233218,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085186,165150722,165216258,165281793,165347330,165412866,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264835,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772162,167837697,167903233,167968770,168034306,168099841,168165377,168230913,168296449,168361986,168427521,168493058,168558594,168624130,168689666,168755202,168820738,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869314,169934850,170000385,170065921,170131457,170196993,170262529,170328065,171048964,171180036,171245570,171835393,173342722,173408258,173473794,173539329,173604865,173670401,173735937,173801473,173867009,173932546,173998081,174063617,174260227,174850050,174915585,174981122],"cause":[4849665,4915201,4980737,5242881,7995393,8060929,13172737,13238273,21692417,22675457,23396358,23527430,27328513,49872902,60424198,63832066,64225281,64421889,70975489,71565313,83296259,85524483,86638596,130023430,130088961,136249352,140509192,151191554,151257089,151322625,151650305,153550850,154402817,154468353,160628738,161939457,165675011,167903235,169017348,171180034,173932545,174260225],"contained":[5111809,23789569,72155137,89325569,151453698],"calling":[5111809,8454145,23789569,37486593,64094209,80347138,83230721,113901569,113967105,129499137,151453697,154861569,155058177,162594818,165609473],"corresponding":[5111809,23789569,43778049,43843585,63766529,63897601,64159745,64225281,151453697,154599425,154730497,170131457,173998081],"codes":[5111809,23920641,80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,151453697,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"controlstreamfile":[5242884,24707078,24772614,24838150,24903686,64552965,151650308],"completes":[5242884,24707073,24772609,24838145,24903681,63832072,64552964,151650308,152043521,153026561,153092097,153157633,153223169,153288705,153354241,154075137],"complex":[5242881,25690113,63832065,64815105,151650305,152502273],"character":[5242884,26345473,26411009,27000833,27066369,32047105,37552129,63832068,65077250,65339394,72155137,73203713,77791233,84934657,89587714,93388801,105775105,134152193,151453697,151650308,152829955,153026561,153288705,157810689,167313409],"context":[5242881,27459591,34406406,39452679,40108038,44040194,44171266,47251463,47316999,63832065,64094212,67764225,70254594,72220674,74055682,75104258,75431938,77004802,77398018,77463554,77791237,78708738,80347137,81199105,81264641,81461249,81592321,83099650,84410369,84934658,85065729,87359489,87949314,88211461,88604673,90177542,95092742,97583110,99352582,103153670,104267778,104398850,105447431,105578497,105644033,105775108,108724230,111280132,114098182,120848390,123600902,129040390,133103617,134348806,134742022,144769030,146276358,147980295,148111361,148176897,149028870,151584770,151650305,153681923,155123716,155451394,157024259,157417474,157483010,157810695,158728196,162594817,163446785,163512321,163708929,163971073,165478402,166789121,167313410,167444481,169738241,170328066,171835397,173670401],"continuation":[5242884,27459585,27525121,27590657,27656193,34406401,34537473,34996225,35061761,63832067,65470466,74055681,74121217,74252290,95092737,95158274,95289345,95354881,151650308,153681922,153747458,153944067],"console":[5242881,27983873,63832065,64159745,151650305,154206209,169082881],"channelstatuscommand":[5570563,29294596,29360135,29425671,63832065,65667078,72417283,91553795,151846913,151977996],"controlstreamfilecommand":[5636099,24707073,24772609,24838145,24903681,29491204,29556738,29622274,29687815,29753351,29818887,29884423,63832065,65732610,65798154,72482819,91619330,91684866,91750402,91815938,91881474,91947010,151846913,152043535],"controldigits":[5636098,29556742,29622278,65732611,152043522],"close":[8388609,8454146,37355526,37486598,64094209,154796033,154861570,157351937],"closes":[8454145,37486593,63766529,151126017,154861569],"connection":[8454148,21626881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,23199746,37486593,37552129,37617666,37683202,42991617,59506690,60227585,60293121,60489734,61079558,62062593,63766530,64094212,64159745,69140481,71499778,74973185,88080385,96731137,146866177,151126019,154861573,156958722,157286401,157351937,158007297,165281793,171048964,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"currently":[8454145,37486593,64094209,72220673,75563009,77266945,86507521,90308609,99876865,103809025,139919362,151584769,154861569,155582465,157286401,157941761,168886273],"call":[8454145,11337732,13303812,13369348,13893636,13959172,14024708,14090244,16777220,21823492,22609922,37486593,42991617,43843585,44826625,44957697,45023233,45088769,45154305,45350914,47448065,47513601,50069505,50135041,50200577,50266113,60555265,60620801,60686337,60751873,62521346,63832065,64028679,64094214,64159752,70320130,71958529,72024065,72089601,72220673,74645505,74711041,75104257,76939265,77266945,77725697,77791237,77856770,79626241,79691777,79757314,79822850,79888385,79953921,80019457,80084993,80150531,80216065,80281601,80347138,80412675,80478210,80543746,80609281,80674817,80740353,80805891,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230722,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131267,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983235,86048770,86114306,86179843,86245379,86310915,86376451,86441987,86507522,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687170,87752705,87818241,87883777,87949313,88145921,88211460,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,89653249,97714177,103022593,103874561,104988673,105054211,105381889,105775105,105971713,106102785,111280129,112459777,112590849,114491393,115343362,132251649,135266305,135331841,137756673,138215425,139329537,139395073,140443649,145686529,147718147,147914753,149946369,151191553,151257089,151322625,151584769,154271745,154402817,154468353,154861569,155058179,155123713,156958721,157286401,157745153,157810699,157876226,158793731,159842305,160628737,161087490,161939457,162004998,162070534,162136065,162201601,162267137,162332674,162398211,162463745,162529281,162594822,162660360,162725894,162791430,162856961,162922497,162988033,163053571,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102147,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609478,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133763,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510019,167575553,167641089,167706626,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361987,168427522,168493058,168558595,168624131,168689667,168755203,168820739,168886274,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000386,170065922,170131457,170196993,170262529,170328065,170917890,171180033,171835400,172163073,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063618,174260225,174456833],"challengeaction":[9109507,40304647,40370183,43712513,43778049,43843585,59572225,64094211,64225281,68091910,75563011,99811330,99876866,155582476,157286402,157548545,173539330],"changemonitoraction":[9175043,40435719,40501255,64094210,68157446,75628547,99942402,100007938,100073474,155648012,157548545],"confbridgekickaction":[9306115,40697862,40763400,64094209,68288516,75759619,100270083,100335619,100401155,155779082,157548545],"confbridgelistaction":[9371651,40828932,40894470,64094209,75825155,100466691,100532227,155844616,157614081],"confbridgelistroomsaction":[9437187,40960004,41025542,64094209,75890691,100597763,155910153,157614081],"confbridgelockaction":[9502723,41091078,41156615,64094209,68354052,75956227,100663299,100728835,155975690,157548545],"confbridgemuteaction":[9568259,41222150,41287688,64094209,68419588,76021763,100794371,100859907,100925443,156041226,157548545],"confbridgesetsinglevideosrcaction":[9633795,41353222,41418760,64094209,68485124,76087299,100990979,101056515,101122051,156106762,157548545],"confbridgestartrecordaction":[9699331,41484294,41549831,64094209,68550660,76152835,101187587,101253123,156172298,157548545],"confbridgestoprecordaction":[9764867,41615366,41680903,64094209,68616196,76218371,101318659,101384195,156237834,157548545],"confbridgeunlockaction":[9830403,41746438,41811975,64094209,68681732,76283907,101449731,101515267,156303370,157548545],"confbridgeunmuteaction":[9895939,41877510,41943048,64094209,68747268,76349443,101580803,101646339,101711875,156368906,157548545],"coresettingsaction":[9961475,42008582,64094209,76414979,101777411,156434442,157548545],"coreshowchannelsaction":[10027011,42074118,64094209,76480515,101842947,156499978,157548545],"corestatusaction":[10092547,42139654,64094209,76546051,101908483,156565514,157548545],"createconfigaction":[10158083,42205190,42270727,64094209,68812804,76611587,101974019,102039555,156631050,157548545],"config":[12713985,48758785,64094209,70582273,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186947,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"comman":[12713985,48758785,70582273,159186945],"convert":[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,54722561,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"cdrevent":[15269891,52363271,64028673,64159746,81723395,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,161087494,164102154,166264833],"channelreloadevent":[15335427,52428807,64159745,81788931,125960194,126025731,126091267,126156802,126222339,164167690,166264833],"channelupdateevent":[15400963,52494343,64159745,81854467,126287874,126353411,126418947,126484483,126550019,126615555,126681091,126746627,164233226,166264833],"confbridgeendevent":[15466499,52559879,64159745,81920003,161153029,162201601,164298762],"confbridgejoinevent":[15532035,52625415,64159745,81985539,126812163,126877699,161218565,162201601,164364298],"confbridgeleaveevent":[15597571,52690951,64159745,82051075,126943235,127008771,161284101,162201601,164429834],"confbridgelistcompleteevent":[15663107,52756487,64159745,82116611,164495370,169213953],"confbridgelistevent":[15728643,52822023,64159745,82182147,127074307,127139843,127205379,127270915,162201601,164560906],"confbridgelistroomscompleteevent":[15794179,52887559,64159745,82247683,164626442,169213953],"confbridgelistroomsevent":[15859715,52953095,64159745,82313219,127336451,127401987,127467523,162201601,164691978],"confbridgestartevent":[15925251,53018631,64159745,82378755,161349637,162201601,164757514],"confbridgetalkingevent":[15990787,53084167,64159745,82444291,127533059,161415173,162201601,164823050],"connectevent":[16056323,53149703,64159746,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509828,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,127598594,132186113,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888587,164954114,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"connectionstateevent":[16121859,53215239,64159745,82509825,82575363,82903041,86704129,87228417,127664130,161480709,164888582,164954121,165281798,166264833,169082886,169607174],"called":[21561345,39387137,39452673,40894465,59113473,64094211,64159745,72220675,74645506,74842113,75104258,90177537,90374145,90636289,96075778,96141314,96468993,97386498,151584771,154402818,154664961,155058177,155123714,155844610,155910145,170131457,170721281],"connect":[21626881,39387137,39452673,59310087,60227585,60293121,64028673,64094212,77791236,88080388,88211461,105185281,105447425,105578497,105644033,146800641,146997249,147128321,147587073,147783681,147914753,147980289,148111361,148176897,157810696,161480705,171048965,171835397],"challenge":[21626882,40370177,43778050,43843586,59572225,59637761,64094210,64225282,68091905,69402626,71303170,75563009,77266946,88473602,99811329,103809026,148897798,155582468,157286404,171048962,173539332],"case":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789569,62062594,64028673,64159745,72155137,77463553,85524481,86638594,89325569,104398849,136249345,140836866,151453697,157483009,167510017,167903233,169017346,171966465,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"converted":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"category":[22282241,48562182,48627718,48693254,48758790,61669383,64094209,64225281,88670210,149291010,159186945,173735940],"calcduration":[22609921,62521350,174063617],"calculated":[22609921,62521345,174063617],"constructor":[23003137,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23724033,24182785,24248321,24576001,28114945,28246017,28442625,28508161,28573697,28639233,28704769,28770305,28835841,29097985,29229057,29360129,29425665,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31653889,31719425,31850497,31981569,32047105,32178177,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34668545,34799617,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35848193,35913729,36110337,36175873,36372481,36438017,36503553,36700161,36765697,36962305,37158913,37224449,37421057,37748737,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40894465,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44302337,44433409,44564481,44630017,44695553,44761089,44826625,45219841,45285377,45350913,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47841281,47972353,48037889,48168961,48234497,48300033,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49676289,49741825,49807361,49872897,49938433,50003969,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58785793,58851329,58916865,58982401,60162049,60227585,60293121,60358657,60424193,60489729,60817409,61079553,61210625,61407233,61472769,61538305,61603841,61734913,61800449,61865985,61931521,61997057,62390273,62455809,62652417,62717953,62980097,63242241,63307777,63373313,63438849,63635457,63766529,63897601,64159745,64356353,64421889,64487425,65601537,65667073,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71499777,71565313,71630849,71696385,71827457,154599425,154730497,170131457],"ctor":[23003140,23068675,23199746,23527426,23724033,24248321,28246017,28508161,28573700,28704769,28835845,32243713,32768001,35192833,35586049,36438017,36503553,36765697,37224449,37421059,39845890,39976974,40763394,40894465,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,45285379,46006277,46465027,46596100,46858241,46989313,48037889,48300033,48889858,48955395,49020931,49152002,49283073,49414145,49545217,50003969,50331649,50397185,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58785793,58851329,58916865,58982401,60293121,60489729,61079555,61407234,61997057,62455809],"caused":[23396353,49872897,60424193,64159745,64225281,71958529,72024065,72089601,74645505,74711041,79626241,79691777,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835202,87293954,87359490,87883778,87949314,88145921,89063425,141230081,141295617,151191553,151257089,151322625,154402817,154468353,160628737,161939457,162988034,163053570,164495362,164626434,165019650,167444482,167510018,167641090,167772162,167837698,168230914,168427522,168886274,168951810,169213955,169672706,169738242,170262530,170328066,171180033,173998081,174260225],"collections":[24248322,24576001,36438018,36896772,45154306,50266114,52101121,54657025,60751874,61997058,62259201,62455810],"containing":[24576001,25493505,25559041,25624577,26411009,26804225,26935297,27066369,27197441,27918337,64094211,64225281,74842113,88539137,96403457,148963329,154664961,156827649,158924801,158990337,173604866],"channelname":[25755654,88997889,150274054,174063617],"coordinated":[26476545,26542081,26607617,26673153,32768001,32833537,32899073,32964609,63832065,66584577,73465857,94175233,153092098,153354241],"callerid":[27394054,34275334,63832065,72220673,73990146,77791233,79888385,80084993,80347137,81723393,82706433,82771969,82837505,83230721,83296257,83623937,84803587,84869121,85000193,85065729,85131265,85196801,85327873,85852161,87359489,87687169,88211457,89718790,95027206,105316357,111411205,112132101,113836038,125173766,127991813,129499141,131661829,133824517,134021121,134086657,134545414,135004165,137232389,144572421,147849221,151584769,153616387,157810689,162136065,162332673,162594817,164102145,165085185,165150721,165216257,165609473,165675009,166002689,167182339,167247873,167378945,167444481,167510017,167575553,167706625,168230913,169738241,170065921,171835393],"concurrent":[28639233,28770305,72351745,91422721,151781377],"closed":[37617665,37683201,64094209,157286401],"consructor":[37748737,154861569],"client":[37748738,64028674,64159746,85524483,136380418,136511489,167903236,169017345,172359681,173211649],"created":[38600705,63766529,64028673,64159745,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,150142977,151126017,167247873,171638785,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"classmethod":[38666246,38797317],"commonslogginglog":[39124993,154927105],"commons":[39124993,154927105],"cancel":[39256065],"callback":[39387137,39452674,64094210,67764226,75104258,97583105,97648641,155123718],"calls":[39649281,45875201,64028673,64094210,64159745,75169794,77791233,78118913,80150531,83623937,83689473,85721089,85786625,85917697,85983235,86048770,86114307,86179843,86245378,86310915,86376451,86441987,86507528,97910787,105250817,106561537,112394241,112852993,112984065,137560065,137691137,137953281,138018817,138149889,138608641,139264001,139591681,139657217,139853826,139919367,139984898,140312580,140443650,155189250,157810689,157941762,158138369,162398211,166002689,166068225,167641089,168099841,168165377,168296449,168361987,168427522,168493059,168558595,168624130,168689667,168755203,168820739,168886280,172097537],"charge":[39911425,39976961,67895298,155385858],"channelprefix":[39976966,75366401,98435078,155385857],"chargetype":[39976966,75366401,98500614,155385857],"currencyname":[39976966,75366401,98893830,155385857],"currencyamount":[39976966,75366401,98762758,155385857],"currencymultiplier":[39976966,75366401,98828294,155385857],"chargingassociationid":[39976966,75366401,98566150,155385857],"chargingassociationnumber":[39976966,75366401,98631686,155385857],"chargingrassociationplan":[39976966,75366401,98697222,155385857],"channels":[40173569,40239105,47316993,63832068,64028676,64094212,64159763,68026370,70254593,81526785,83755009,87228417,87621633,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,123863041,144375809,150142977,152829953,152895489,153419777,153485313,155516930,158728193,159055874,159514626,162463745,162529281,162856961,162922497,163184641,163250177,163774466,165347329,165806081,166133762,167772161,167903234,169017346,169607169,169672705,169869313,170000386,170262529,170917889,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174325761,174456833,174718977],"channel1":[40239110,75497473,81526785,83361793,83755009,87621633,99614726,124125190,130154501,155516929,163774465,165740545,166133761,170000385],"channel2":[40239110,45285382,45350918,75497473,77856770,81526785,83361793,83755009,87621633,99680262,105971717,106102785,124190726,130220037,155516929,157876226,163774465,165740545,166133761,170000385],"courtesy":[40239105],"cli":[40632321,64094209,75694081,77725697,88539137,100204545,104857601,148963329,155713538,157745153,173604865],"conference":[40697857,40763399,40894471,41091073,41156615,41222145,41287687,41353217,41418759,41484289,41549831,41615361,41680903,41746433,41811975,41877505,41943047,64028680,64094209,64159749,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,75759617,75825153,75956225,76021761,76087297,76152833,76218369,76283905,76349441,79953921,80019457,81920001,81985537,82051073,82182145,82313217,82378753,82444289,83951617,84017153,84082689,84148225,84213761,84279297,84344833,100401158,100532230,100728838,100925446,101122054,101253126,101384198,101515270,101711878,111935494,112001025,155779075,155844611,155975683,156041219,156106755,156172291,156237827,156303363,156368899,161153025,161218561,161284097,161349633,161415169,162201601,162267138,164298753,164364289,164429825,164560897,164691969,164757505,164823041,166330369,166395906,166461442,166526977,166592514,166658050,166723585,171311105,171376641,171442177],"confbridge":[40894465,64094209,155844610],"confbridgelist":[40894465,64094209,155844610],"confbridgelistcomplete":[40894465,64094209,155844610],"conferences":[41484289,41549825,64094209,68550658,155910145,156172290],"configuration":[42205186,42270722,43253761,64094211,68812804,75104258,77070337,97386497,97714177,103350273,155123714,156631044,157089793,159186947],"combination":[42991617,43843585,76939265,77266945,103022593,103874561,156958721,157286401],"cleartext":[43712514,69402626,77266945,104005633,157286403],"concerned":[43712513,69402625,157286401],"configured":[43712514,43778049,43843585,63766530,63897602,77266946,80281601,104005633,104071169,113639425,151126017,154533889,154599425,154730497,157286402,162529281],"conf":[43712514,43778049,43843585,64028673,64094210,64159746,77266946,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281602,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131266,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048770,86114305,86179841,86245377,86310913,86376449,86441985,86507523,86573057,86638595,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949314,88080387,104005633,104071169,113639425,132448257,135331841,138412033,140115969,140247041,140640258,146276353,146997249,147128321,147587073,157286402,159186946,159776769,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529282,162594818,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510018,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886275,168951809,169017347,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,171048963],"checks":[44171265,64094209,69533697,77463553,88080385,104398849,147456001,157483011,171048961],"check":[44171265,64094209,64159745,155320321,163774465],"considered":[45875201,77791233,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,87228417,88211457,105709569,106561537,112984065,138018817,138608641,139657217,144375809,148242433,157810689,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737,169607169,171835393],"custom":[45940737,46006273,63766529,63832066,64094209,64159745,69795842,151650305,152502273,152633345,157679617,158203906,170131457],"cdr":[47513601,64159745,78774276,86704130,109051906,109117441,109182977,140902401,140967937,158793732,164102145,169082882],"contructor":[50724865,162398209],"connections":[60227585,60293121,72351745,91291649,151781377],"classes":[63700993,63766529,63832065,63897601,63963138,64028673,64094209,64159746,64225281,64290817,154796033,166264833],"convinience":[63766529,151650305],"course":[63832065,153550849],"capable":[63832065,154140673],"completely":[64028673,161939457],"combinded":[64028673,173342721],"caller":[64028678,64159748,75104257,77791233,79888386,80084995,80347138,80412675,80478210,80805889,82706435,82771971,82837507,83230721,83296258,83623940,84803586,84869122,85000194,85131267,85196803,85327875,85852162,87359491,87687171,88211457,97714177,105316353,111411201,111542273,112132097,112197633,112263169,113901569,113967105,114425857,114491393,114556929,114688001,114753537,115408897,127991809,128057345,128122881,129499137,131661826,131727362,133824513,133955585,135004161,135069697,135135233,137232385,137297921,144572418,144637954,144703490,147849217,155123713,157810689,159842305,159907841,159973377,162136066,162332675,162594818,162660356,162725891,162791425,163053569,165085187,165150723,165216259,165609473,165675010,166002692,167182339,167247874,167378946,167510019,167575555,167706627,168230914,169738243,170065923,171573249,171835393,172490753,172556289],"connected":[64028675,64159747,84934657,134348801,159842305,159907841,162660353,162725889,167313410,171704321],"cdreventhandler":[64028673,161087493],"confbridgeendeventhandler":[64028673,161153029],"confbridgejoineventhandler":[64028673,161218565],"confbridgeleaveeventhandler":[64028673,161284101],"confbridgestarteventhandler":[64028673,161349637],"confbridgetalkingeventhandler":[64028673,161415173],"connectionstateeventhandler":[64028673,161480709],"connectionstate":[64028673,161480705],"completed":[64028673,64159745,86507523,139984903,140312578,161677313,165150721,168886275],"commences":[64028673,64159745,166133761,170917889],"codec":[64028673,64159745,166133761,170917889],"conversion":[64028673,64159745,166133761,170917889],"changed":[64028674,64094209,64159748,158793729,167378945,168755201,168820737,169148417,171769857,173277185],"completion":[64028673,64159745,170000385,174456833],"counting":[64094209,155058177],"cancelled":[64094209,155058177],"corresponds":[64094209,64225282,85131265,86507521,135331841,140115969,155058177,167510017,168886273,173539329,173604865],"contrast":[64094209,155123713],"commands":[64094209,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713538,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"confbridgelistrooms":[64094209,155910145],"confbridgelistroomscomplete":[64094209,155910145],"concrete":[64094209,157548545],"connecting":[64094210,157810690],"careful":[64094209,157810689],"choose":[64094209,157810689],"callers":[64094209,158662657],"cat":[64094209,79167489,109969409,159186946],"chan_agent":[64159748,162463745,162529281,162856961,162922497],"chan_zap":[64159747,163184641,163250177,165347329],"compatibily":[64159745,163774465],"cdrevents":[64159745,164102145],"cdr_manager":[64159746,164102146],"chan_sip":[64159749,165806081,167772161,167903233,169017345,169869313],"contain":[64159746,64225281,79167490,109969410,159186946,166264833,169213953,173735937],"core":[64159745,166264833],"conrete":[64159745,166264833],"chan_iax2":[64159746,167903233,169017345],"coded":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"calleridname":[72220673,79888385,80084993,80347137,81264641,81461249,81592321,81985537,82051073,82182145,82706433,82771969,82837505,83296257,83623937,84017153,84082689,84803585,84869121,85000193,85065729,85131265,85196801,85327873,85852161,87359489,87687169,89784326,111476742,112197637,113901573,123207686,126812166,126943238,127139846,128057349,131727365,132579334,132710406,133890054,134610950,135069701,137297925,144637957,151584769,162136065,162332673,162594817,163512321,163708929,163971073,164364289,164429825,164560897,165085185,165150721,165216257,165675009,166002689,166395905,166461441,167182337,167247873,167378945,167444481,167510017,167575553,167706625,168230913,169738241,170065921],"callingani2":[72220673,89849862,151584769],"callingpres":[72220673,89915398,151584769],"callingtns":[72220673,89980934,151584769],"callington":[72220673,90046470,151584769],"configurations":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"changemonitor":[75628545,99942401,155648001],"conventions":[79691777,111017985,161939457],"correct":[79691777,111017985,151519233,161939457],"comma":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"calleridnum":[79888385,80084993,80347137,81264641,81461249,81592321,81985537,82051073,82182145,82706433,82771969,82837505,83296257,84017153,84082689,84803585,84869121,85000193,85065729,85131265,85196801,85327873,87359489,87687169,111542277,112263173,113967109,123273222,126877702,127008774,127205382,128122885,132644870,132775942,133955589,134676486,135135237,144703493,162136065,162332673,162594817,163512321,163708929,163971073,164364289,164429825,164560897,165085185,165150721,165216257,165675009,166395905,166461441,167182337,167247873,167378945,167444481,167510017,167575553,167706625,169738241,170065921],"channelstate":[79888385,81264641,81461249,81592321,83296257,84869121,85000193,111607813,123338758,162136065,163512321,163708929,163971073,165675009,167247873,167378945],"channelstatedesc":[79888385,83296257,84869121,85000193,111673349,162136065,165675009,167247873,167378945],"connectedlinename":[79888385,81264641,81461249,81592321,83296257,84869121,85000193,111738886,123469830,162136065,163512321,163708929,163971073,165675009,167247873,167378945],"connectedlinenum":[79888385,81264641,81461249,81592321,83296257,84869121,85000193,111804422,123535366,162136065,163512321,163708929,163971073,165675009,167247873,167378945],"callstaken":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,112394245,137691141,138149893,139264005,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"channelcalling":[80347137,114032646,162594817],"commandid":[80871425,81068033,115539974,115867654,163119105,163315713],"channelstateddesc":[81264641,81461249,81592321,123404294,163512321,163708929,163971073],"callerid1":[81526785,83755009,87621633,123994118,163774465,166133761,170000385],"callerid2":[81526785,83755009,87621633,124059654,163774465,166133761,170000385],"channeltype":[81788929,81854465,85393409,85524481,86638593,125960197,126287877,135462917,136314885,140574725,164167681,164233217,167772161,167903233,169017345],"causetxt":[83296257,130088965,165675009],"count":[83623937,83689473,85721089,85786625,85917697,137560069,166002689,166068225,168099841,168165377,168296449],"cidcallingpres":[84803585,134021125,167182337],"cidcallingpresnumeric":[84803585,134086661,167182337],"chanobjecttype":[85393409,135528453,167772161],"cumulativeloss":[86966273,142147590,169345025],"cleanly":[87228417,144375809,169607169],"counter":[88080386,147324929,147390465,171048962],"checking":[88080385,147456001,171048961],"complete":[88342529,148504581,173408257],"creating":[88473601,148897793,173539329],"content":[88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,149880833,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"categories":[88670209,149291013,173735937],"computes":[89128961,150732801,174850049],"constructors":[151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121]} \ No newline at end of file diff --git a/docs/fti/FTI_Files.json b/docs/fti/FTI_Files.json index 9529d0e..18a1628 100644 --- a/docs/fti/FTI_Files.json +++ b/docs/fti/FTI_Files.json @@ -1 +1 @@ -["AsterNet Class Library (Sandcastle documentation) - Redirect\u0000index.html\u000018","AsterNet Class Library (Sandcastle documentation) - Search\u0000search.html\u000016","Version History\u0000html/100303f2-3dd8-401b-a594-579aae2a939c.htm\u000067","Welcome to AsterNet Class library\u0000html/79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm\u0000105","Version 1.0.0.0\u0000html/d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm\u000047","AGIException Events\u0000html/Events_T_AsterNET_FastAGI_AGIException.htm\u000059","AGIHangupException Events\u0000html/Events_T_AsterNET_FastAGI_AGIHangupException.htm\u000059","AGINetworkException Events\u0000html/Events_T_AsterNET_FastAGI_AGINetworkException.htm\u000059","InvalidCommandSyntaxException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u000059","InvalidOrUnknownCommandException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u000059","AuthenticationFailedException Events\u0000html/Events_T_AsterNET_Manager_AuthenticationFailedException.htm\u000059","EventTimeoutException Events\u0000html/Events_T_AsterNET_Manager_EventTimeoutException.htm\u000059","ManagerConnection Events\u0000html/Events_T_AsterNET_Manager_ManagerConnection.htm\u00001223","ManagerException Events\u0000html/Events_T_AsterNET_Manager_ManagerException.htm\u000059","TimeoutException Events\u0000html/Events_T_AsterNET_Manager_TimeoutException.htm\u000059","ManagerConnection.AgentCallbackLogin Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm\u0000128","ManagerConnection.AgentCallbackLogoff Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm\u0000131","ManagerConnection.AgentCalled Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm\u0000141","ManagerConnection.AgentComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm\u0000136","ManagerConnection.AgentConnect Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm\u0000129","ManagerConnection.AgentDump Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm\u0000133","ManagerConnection.AgentLogin Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm\u0000130","ManagerConnection.AgentLogoff Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm\u0000133","ManagerConnection.Agents Event\u0000html/E_AsterNET_Manager_ManagerConnection_Agents.htm\u0000129","ManagerConnection.AgentsComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm\u0000135","ManagerConnection.AGIExec Event\u0000html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm\u0000119","ManagerConnection.Alarm Event\u0000html/E_AsterNET_Manager_ManagerConnection_Alarm.htm\u0000130","ManagerConnection.AlarmClear Event\u0000html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm\u0000128","ManagerConnection.AttendedTransfer Event\u0000html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm\u0000131","ManagerConnection.BlindTransfer Event\u0000html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm\u0000131","ManagerConnection.Bridge Event\u0000html/E_AsterNET_Manager_ManagerConnection_Bridge.htm\u0000131","ManagerConnection.BridgeCreate Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm\u0000131","ManagerConnection.BridgeDestroy Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm\u0000131","ManagerConnection.BridgeEnter Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm\u0000131","ManagerConnection.BridgeLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm\u0000131","ManagerConnection.Cdr Event\u0000html/E_AsterNET_Manager_ManagerConnection_Cdr.htm\u0000136","ManagerConnection.ConfbridgeEnd Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm\u0000133","ManagerConnection.ConfbridgeJoin Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm\u0000145","ManagerConnection.ConfbridgeLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm\u0000127","ManagerConnection.ConfbridgeStart Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm\u0000131","ManagerConnection.ConfbridgeTalking Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm\u0000134","ManagerConnection.ConnectionState Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm\u0000127","ManagerConnection.DBGetResponse Event\u0000html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm\u0000131","ManagerConnection.Dial Event\u0000html/E_AsterNET_Manager_ManagerConnection_Dial.htm\u0000128","ManagerConnection.DialBegin Event\u0000html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm\u0000124","ManagerConnection.DialEnd Event\u0000html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm\u0000124","ManagerConnection.DNDState Event\u0000html/E_AsterNET_Manager_ManagerConnection_DNDState.htm\u0000139","ManagerConnection.DTMF Event\u0000html/E_AsterNET_Manager_ManagerConnection_DTMF.htm\u0000131","ManagerConnection.ExtensionStatus Event\u0000html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm\u0000128","ManagerConnection.FailedACL Event\u0000html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm\u0000131","ManagerConnection.Hangup Event\u0000html/E_AsterNET_Manager_ManagerConnection_Hangup.htm\u0000127","ManagerConnection.Hold Event\u0000html/E_AsterNET_Manager_ManagerConnection_Hold.htm\u0000133","ManagerConnection.HoldedCall Event\u0000html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm\u0000128","ManagerConnection.Join Event\u0000html/E_AsterNET_Manager_ManagerConnection_Join.htm\u0000127","ManagerConnection.Leave Event\u0000html/E_AsterNET_Manager_ManagerConnection_Leave.htm\u0000127","ManagerConnection.Link Event\u0000html/E_AsterNET_Manager_ManagerConnection_Link.htm\u0000175","ManagerConnection.LogChannel Event\u0000html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm\u0000128","ManagerConnection.MeetMeJoin Event\u0000html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm\u0000129","ManagerConnection.MeetMeLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm\u0000129","ManagerConnection.MeetMeTalking Event\u0000html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm\u0000148","ManagerConnection.MessageWaiting Event\u0000html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm\u0000125","ManagerConnection.NewCallerId Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm\u0000129","ManagerConnection.NewChannel Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm\u0000127","ManagerConnection.NewExten Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewExten.htm\u0000130","ManagerConnection.NewState Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewState.htm\u0000129","ManagerConnection.OriginateResponse Event\u0000html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm\u0000127","ManagerConnection.ParkedCall Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm\u0000142","ManagerConnection.ParkedCallGiveUp Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm\u0000131","ManagerConnection.ParkedCallsComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm\u0000133","ManagerConnection.ParkedCallTimeOut Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm\u0000130","ManagerConnection.PeerEntry Event\u0000html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm\u0000134","ManagerConnection.PeerlistComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm\u0000137","ManagerConnection.PeerStatus Event\u0000html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm\u0000134","ManagerConnection.QueueCallerAbandon Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm\u0000135","ManagerConnection.QueueCallerJoin Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm\u0000124","ManagerConnection.QueueCallerLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm\u0000124","ManagerConnection.QueueEntry Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm\u0000135","ManagerConnection.QueueMember Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm\u0000135","ManagerConnection.QueueMemberAdded Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm\u0000130","ManagerConnection.QueueMemberPaused Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm\u0000129","ManagerConnection.QueueMemberRemoved Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm\u0000130","ManagerConnection.QueueMemberStatus Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm\u0000125","ManagerConnection.QueueParams Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm\u0000133","ManagerConnection.QueueStatusComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm\u0000135","ManagerConnection.Registry Event\u0000html/E_AsterNET_Manager_ManagerConnection_Registry.htm\u0000137","ManagerConnection.Rename Event\u0000html/E_AsterNET_Manager_ManagerConnection_Rename.htm\u0000129","ManagerConnection.Status Event\u0000html/E_AsterNET_Manager_ManagerConnection_Status.htm\u0000130","ManagerConnection.StatusComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm\u0000135","ManagerConnection.Transfer Event\u0000html/E_AsterNET_Manager_ManagerConnection_Transfer.htm\u0000131","ManagerConnection.UnhandledEvent Event\u0000html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm\u0000124","ManagerConnection.Unhold Event\u0000html/E_AsterNET_Manager_ManagerConnection_Unhold.htm\u0000135","ManagerConnection.Unlink Event\u0000html/E_AsterNET_Manager_ManagerConnection_Unlink.htm\u0000138","ManagerConnection.UnparkedCall Event\u0000html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm\u0000130","ManagerConnection.UserEvents Event\u0000html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm\u0000125","ManagerConnection.VarSet Event\u0000html/E_AsterNET_Manager_ManagerConnection_VarSet.htm\u0000121","ManagerConnection.ZapShowChannels Event\u0000html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm\u0000134","ManagerConnection.ZapShowChannelsComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm\u0000136","Common Fields\u0000html/Fields_T_AsterNET_Common.htm\u000096","AsteriskFastAGI Fields\u0000html/Fields_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000102","CommandAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_CommandAction.htm\u000033","SetVarAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_SetVarAction.htm\u000057","UpdateConfigAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u000038","RenameEvent Fields\u0000html/Fields_T_AsterNET_Manager_Event_RenameEvent.htm\u000034","ManagerConnection Fields\u0000html/Fields_T_AsterNET_Manager_ManagerConnection.htm\u000075","ChallengeResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ChallengeResponse.htm\u000040","CommandResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_CommandResponse.htm\u000041","ExtensionStateResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u000040","GetConfigResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_GetConfigResponse.htm\u000040","MailboxCountResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u000040","MailboxStatusResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u000040","ManagerError Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerError.htm\u000040","ManagerResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerResponse.htm\u000033","Common.AGI_ADDITIONAL_ATTRIBUTES_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTES_PATTERN.htm\u000095","Common.AGI_ADDITIONAL_ATTRIBUTE_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTE_PATTERN.htm\u000095","Common.AGI_BIND_ADDRESS Field\u0000html/F_AsterNET_Common_AGI_BIND_ADDRESS.htm\u000087","Common.AGI_BIND_PORT Field\u0000html/F_AsterNET_Common_AGI_BIND_PORT.htm\u000085","Common.AGI_DEFAULT_MAX_DIGITS Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_MAX_DIGITS.htm\u000093","Common.AGI_DEFAULT_RESOURCE_BUNDLE_NAME Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_RESOURCE_BUNDLE_NAME.htm\u000095","Common.AGI_DEFAULT_TIMEOUT Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_TIMEOUT.htm\u000093","Common.AGI_END_OF_PROPER_USAGE Field\u0000html/F_AsterNET_Common_AGI_END_OF_PROPER_USAGE.htm\u000095","Common.AGI_PARAMETER_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARAMETER_PATTERN.htm\u000095","Common.AGI_PARENTHESIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARENTHESIS_PATTERN.htm\u000095","Common.AGI_POOL_SIZE Field\u0000html/F_AsterNET_Common_AGI_POOL_SIZE.htm\u000086","Common.AGI_RESULT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_RESULT_PATTERN.htm\u000095","Common.AGI_SCRIPT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SCRIPT_PATTERN.htm\u000095","Common.AGI_STATUS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_STATUS_PATTERN.htm\u000095","Common.AGI_SYNOPSIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SYNOPSIS_PATTERN.htm\u000095","Common.ASTERISK_VERSION Field\u0000html/F_AsterNET_Common_ASTERISK_VERSION.htm\u000095","Common.CultureInfoEn Field\u0000html/F_AsterNET_Common_CultureInfoEn.htm\u000095","Common.DEFAULT_HOSTNAME Field\u0000html/F_AsterNET_Common_DEFAULT_HOSTNAME.htm\u000090","Common.DEFAULT_PORT Field\u0000html/F_AsterNET_Common_DEFAULT_PORT.htm\u000088","Common.INTERNAL_ACTION_ID_DELIMITER Field\u0000html/F_AsterNET_Common_INTERNAL_ACTION_ID_DELIMITER.htm\u000093","Common.LINE_SEPARATOR Field\u0000html/F_AsterNET_Common_LINE_SEPARATOR.htm\u000083","Common.MINUS_SEPARATOR Field\u0000html/F_AsterNET_Common_MINUS_SEPARATOR.htm\u0000108","Common.RESPONSE_KEY_VALUE_SEPARATOR Field\u0000html/F_AsterNET_Common_RESPONSE_KEY_VALUE_SEPARATOR.htm\u0000108","Common.SHOW_VERSION_FILES_PATTERN Field\u0000html/F_AsterNET_Common_SHOW_VERSION_FILES_PATTERN.htm\u000095","Common.VAR_DELIMITER Field\u0000html/F_AsterNET_Common_VAR_DELIMITER.htm\u0000178","AsteriskFastAGI.SC511_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SC511_CAUSES_EXCEPTION.htm\u0000113","AsteriskFastAGI.SCHANGUP_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SCHANGUP_CAUSES_EXCEPTION.htm\u0000110","CommandAction.command Field\u0000html/F_AsterNET_Manager_Action_CommandAction_command.htm\u000097","SetVarAction.channel Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_channel.htm\u000090","SetVarAction.varName Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varName.htm\u000089","SetVarAction.varValue Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varValue.htm\u000086","UpdateConfigAction.ACTION_APPEND Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_APPEND.htm\u0000101","UpdateConfigAction.ACTION_DELCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELCAT.htm\u0000101","UpdateConfigAction.ACTION_DELETE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELETE.htm\u0000101","UpdateConfigAction.ACTION_NEWCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_NEWCAT.htm\u0000101","UpdateConfigAction.ACTION_RENAMECAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_RENAMECAT.htm\u0000101","UpdateConfigAction.ACTION_UPDATE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_UPDATE.htm\u0000101","RenameEvent.newName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_newName.htm\u000097","RenameEvent.oldName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_oldName.htm\u000097","ManagerConnection.UseASyncEvents Field\u0000html/F_AsterNET_Manager_ManagerConnection_UseASyncEvents.htm\u0000119","ManagerConnection.VAR_DELIMITER Field\u0000html/F_AsterNET_Manager_ManagerConnection_VAR_DELIMITER.htm\u0000107","CommandResponse.result Field\u0000html/F_AsterNET_Manager_Response_CommandResponse_result.htm\u0000119","ManagerResponse.attributes Field\u0000html/F_AsterNET_Manager_Response_ManagerResponse_attributes.htm\u0000135","AGIChannel Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIChannel.htm\u0000151","AGIConnectionHandler Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000151","AGIException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIException.htm\u0000207","AGIHangupException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIHangupException.htm\u0000207","AGINetworkException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGINetworkException.htm\u0000207","AGIReader Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReader.htm\u0000152","AGIReply Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReply.htm\u0000276","AGIRequest Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIRequest.htm\u0000144","AGIScript Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIScript.htm\u00001657","AGIWriter Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIWriter.htm\u0000151","AsteriskFastAGI Methods\u0000html/Methods_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000152","AGICommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AGICommand.htm\u0000144","AnswerCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000158","ChannelStatusCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000158","ControlStreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000192","DatabaseDelCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000158","DatabaseDelTreeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000158","DatabaseGetCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000158","DatabasePutCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000158","ExecCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000158","GetDataCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000158","GetFullVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000158","GetOptionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000158","GetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000158","HangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000158","NoopCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000158","ReceiveCharCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000158","ReceiveTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000158","RecordFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000158","SayAlphaCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000158","SayDateTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000158","SayDigitsCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000158","SayNumberCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000158","SayPhoneticCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000158","SayTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000158","SendImageCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000158","SendTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000158","SetAutoHangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000158","SetCallerIdCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000158","SetContextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000158","SetExtensionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000158","SetMusicOffCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000158","SetMusicOnCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000158","SetPriorityCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000158","SetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000158","StreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000158","TDDModeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000158","VerboseCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000158","WaitForDigitCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000158","IMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_IMappingStrategy.htm\u000033","InvalidCommandSyntaxException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000207","InvalidOrUnknownCommandException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000207","GeneralMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000153","ResourceMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000153","ScriptMapping Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000153","MappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategy.htm\u0000152","ServerSocket Methods\u0000html/Methods_T_AsterNET_IO_ServerSocket.htm\u0000152","SocketConnection Methods\u0000html/Methods_T_AsterNET_IO_SocketConnection.htm\u0000239","Logger Methods\u0000html/Methods_T_AsterNET_Logger.htm\u0000223","AbsoluteTimeoutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000142","AgentCallbackLoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000142","AgentLogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000142","AgentsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentsAction.htm\u0000150","AgiAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgiAction.htm\u0000142","AOCMessageAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000142","AtxferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AtxferAction.htm\u0000142","BridgeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_BridgeAction.htm\u0000142","ChallengeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000142","ChangeMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000142","CommandAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CommandAction.htm\u0000142","ConfbridgeKickAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000142","ConfbridgeListAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000150","ConfbridgeListRoomsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000150","ConfbridgeLockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000142","ConfbridgeMuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000142","ConfbridgeSetSingleVideoSrcAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000142","ConfbridgeStartRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000142","ConfbridgeStopRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000142","ConfbridgeUnlockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000142","ConfbridgeUnmuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000142","CoreSettingsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000142","CoreShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000142","CoreStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000142","CreateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000142","DBDelAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelAction.htm\u0000142","DBDelTreeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000142","DBGetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBGetAction.htm\u0000150","DBPutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBPutAction.htm\u0000142","EventsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_EventsAction.htm\u0000142","ExtensionStateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000142","GetConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000150","GetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetVarAction.htm\u0000142","HangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_HangupAction.htm\u0000142","LoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LoginAction.htm\u0000142","LogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LogoffAction.htm\u0000142","MailboxCountAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000142","MailboxStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000142","ManagerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerAction.htm\u0000142","ManagerActionEvent Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000160","ManagerActionResponse Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000159","MonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MonitorAction.htm\u0000142","OriginateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_OriginateAction.htm\u0000211","ParkAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkAction.htm\u0000142","ParkedCallsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000150","PingAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_PingAction.htm\u0000142","ProxyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ProxyAction.htm\u0000142","QueueAddAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000142","QueueLogAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000142","QueuePauseAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000142","QueuePenaltyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000142","QueueReloadAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000142","QueueRemoveAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000142","QueueResetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000142","QueueRuleAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000142","QueueStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000150","RedirectAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_RedirectAction.htm\u0000142","SetCDRUserFieldAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000142","SetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetVarAction.htm\u0000142","SIPPeersAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000150","SIPShowPeerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000150","StatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StatusAction.htm\u0000150","StopMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000142","UpdateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000247","ZapDialOffhookAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000142","ZapDNDOffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000142","ZapDNDOnAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000142","ZapHangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000142","ZapShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000150","ZapTransferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000142","AuthenticationFailedException Methods\u0000html/Methods_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000207","EventTimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_EventTimeoutException.htm\u0000207","AbstractAgentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000259","AbstractAgentVariables Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000231","AbstractChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000170","AbstractConfbridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000170","AbstractMeetmeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000170","AbstractParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000170","AbstractQueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000170","AgentCallbackLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000170","AgentCallbackLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000170","AgentCalledEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000259","AgentCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000259","AgentConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000259","AgentDumpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000259","AgentLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000170","AgentLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000170","AgentsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000170","AgentsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000170","AGIExecEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000170","AlarmClearEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000170","AlarmEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000170","AsyncAGIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000170","AttendedTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000170","BlindTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000170","BridgeActivityEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000170","BridgeCreateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000170","BridgeDestroyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000170","BridgeEnterEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000170","BridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000175","BridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000170","BridgeStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000170","CdrEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_CdrEvent.htm\u0000170","ChannelReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000170","ChannelUpdateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000170","ConfbridgeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000170","ConfbridgeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000170","ConfbridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000170","ConfbridgeListCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000170","ConfbridgeListEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000170","ConfbridgeListRoomsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000170","ConfbridgeListRoomsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000170","ConfbridgeStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000170","ConfbridgeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000170","ConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000170","ConnectionStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000170","DBGetResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000170","DialBeginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000170","DialEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000170","DialEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEvent.htm\u0000170","DisconnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000170","DNDStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000170","DTMFEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000170","ExtensionStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000170","FailedACLEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000170","FaxReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000259","HangupEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HangupEvent.htm\u0000170","HoldedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000170","HoldEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldEvent.htm\u0000170","JabberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JabberEvent.htm\u0000170","JitterBufStatsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000170","JoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JoinEvent.htm\u0000170","LeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000170","LinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LinkEvent.htm\u0000169","LogChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000170","ManagerEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000156","MeetmeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000170","MeetmeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000170","MeetmeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000170","MeetmeMuteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000170","MeetmeStopTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000170","MeetmeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000170","MeetmeTalkRequestEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000170","MessageWaitingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000170","MobileStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000170","ModuleLoadReportEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000170","MonitorStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000170","MonitorStopEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000170","NewAccountCodeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000170","NewCallerIdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000170","NewChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000170","NewExtenEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000170","NewStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000170","OriginateResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000170","ParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000170","ParkedCallGiveUpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000170","ParkedCallsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000170","ParkedCallTimeOutEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000170","PeerEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000170","PeerlistCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000170","PeerStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000170","PRIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PRIEvent.htm\u0000170","QueueCallerAbandonEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000170","QueueCallerJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000170","QueueCallerLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000170","QueueEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000170","QueueEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEvent.htm\u0000170","QueueMemberAddedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000170","QueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000170","QueueMemberPausedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000170","QueueMemberPauseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000170","QueueMemberPenaltyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000170","QueueMemberRemovedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000170","QueueMemberStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000170","QueueParamsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000170","QueueStatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000170","RegistryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000170","ReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000170","RenameEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RenameEvent.htm\u0000170","ResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000170","RTCPReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000170","RTCPSentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000170","RTPReceiverStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000170","RTPSenderStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000170","ShowDialPlanCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000170","ShutdownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000170","StatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000170","StatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusEvent.htm\u0000170","TransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_TransferEvent.htm\u0000170","UnholdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000170","UnknownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000170","UnlinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000169","UnparkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000170","UserEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UserEvent.htm\u0000171","VarSetEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000170","ZapShowChannelsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000170","ZapShowChannelsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000170","IResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_IResponseHandler.htm\u000043","ManagerConnection Methods\u0000html/Methods_T_AsterNET_Manager_ManagerConnection.htm\u0000290","ManagerException Methods\u0000html/Methods_T_AsterNET_Manager_ManagerException.htm\u0000207","ManagerReader Methods\u0000html/Methods_T_AsterNET_Manager_ManagerReader.htm\u0000150","Originate Methods\u0000html/Methods_T_AsterNET_Manager_Originate.htm\u0000211","ResponseEventHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEventHandler.htm\u0000153","ResponseEvents Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEvents.htm\u0000159","ResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseHandler.htm\u0000152","ChallengeResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000316","CommandResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_CommandResponse.htm\u0000316","ExtensionStateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000316","GetConfigResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000331","MailboxCountResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000316","MailboxStatusResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000316","ManagerError Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerError.htm\u0000316","ManagerResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000288","OriginateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_OriginateResponse.htm\u0000167","TimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_TimeoutException.htm\u0000207","MD5Support Methods\u0000html/Methods_T_AsterNET_Util_MD5Support.htm\u0000201","ThreadClass Methods\u0000html/Methods_T_AsterNET_Util_ThreadClass.htm\u0000189","ThreadPool Methods\u0000html/Methods_T_AsterNET_Util_ThreadPool.htm\u0000201","AGIChannel.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIChannel_SendCommand.htm\u0000180","AGIChannel Constructor (AGIWriter, AGIReader, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor.htm\u0000323","AGIChannel Constructor (SocketConnection, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor_1.htm\u0000253","AGIConnectionHandler.Run Method\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler_Run.htm\u000095","AGIConnectionHandler Constructor\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler__ctor.htm\u0000268","AGIException Constructor\u0000html/M_AsterNET_FastAGI_AGIException__ctor.htm\u000086","AGIException Constructor (String)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_1.htm\u0000120","AGIException Constructor (String, Exception)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_2.htm\u0000160","AGIHangupException Constructor\u0000html/M_AsterNET_FastAGI_AGIHangupException__ctor.htm\u000084","AGINetworkException Constructor\u0000html/M_AsterNET_FastAGI_AGINetworkException__ctor.htm\u0000186","AGIReader.ReadReply Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadReply.htm\u0000119","AGIReader.ReadRequest Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadRequest.htm\u0000119","AGIReader Constructor\u0000html/M_AsterNET_FastAGI_AGIReader__ctor.htm\u0000134","AGIReply.GetAttribute Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetAttribute.htm\u0000186","AGIReply.GetResult Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetResult.htm\u0000109","AGIReply.GetStatus Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetStatus.htm\u0000112","AGIReply.GetSynopsis Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetSynopsis.htm\u0000127","AGIReply.GetUsage Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetUsage.htm\u0000127","AGIReply.ToString Method\u0000html/M_AsterNET_FastAGI_AGIReply_ToString.htm\u0000132","AGIReply Constructor\u0000html/M_AsterNET_FastAGI_AGIReply__ctor.htm\u000086","AGIReply Constructor (List(String))\u0000html/M_AsterNET_FastAGI_AGIReply__ctor_1.htm\u0000168","AGIRequest.Parameter Method\u0000html/M_AsterNET_FastAGI_AGIRequest_Parameter.htm\u0000172","AGIRequest.ParameterMap Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterMap.htm\u0000176","AGIRequest.ParameterValues Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterValues.htm\u0000194","AGIRequest.ToString Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ToString.htm\u0000132","AGIRequest Constructor\u0000html/M_AsterNET_FastAGI_AGIRequest__ctor.htm\u0000140","AGIScript.Answer Method\u0000html/M_AsterNET_FastAGI_AGIScript_Answer.htm\u000084","AGIScript.ControlStreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000232","AGIScript.ControlStreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_1.htm\u0000272","AGIScript.ControlStreamFile Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_2.htm\u0000306","AGIScript.ControlStreamFile Method (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_3.htm\u0000408","AGIScript.DatabaseDel Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDel.htm\u0000160","AGIScript.DatabaseDelTree Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u0000125","AGIScript.DatabaseDelTree Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree_1.htm\u0000178","AGIScript.DatabaseGet Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseGet.htm\u0000190","AGIScript.DatabasePut Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabasePut.htm\u0000201","AGIScript.Exec Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec.htm\u0000151","AGIScript.Exec Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec_1.htm\u0000194","AGIScript.GetChannelStatus Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm\u0000117","AGIScript.GetData Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData.htm\u0000166","AGIScript.GetData Method (String, Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_1.htm\u0000227","AGIScript.GetData Method (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_2.htm\u0000273","AGIScript.GetFullVariable Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u0000167","AGIScript.GetFullVariable Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable_1.htm\u0000206","AGIScript.GetOption Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000228","AGIScript.GetOption Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption_1.htm\u0000269","AGIScript.GetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetVariable.htm\u0000142","AGIScript.Hangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_Hangup.htm\u000085","AGIScript.PlayMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000094","AGIScript.PlayMusicOnHold Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm\u0000150","AGIScript.RecordFile Method (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000351","AGIScript.RecordFile Method (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile_1.htm\u0000467","AGIScript.SayAlpha Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u0000120","AGIScript.SayAlpha Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha_1.htm\u0000194","AGIScript.SayDateTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000142","AGIScript.SayDateTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_1.htm\u0000213","AGIScript.SayDateTime Method (Int64, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_2.htm\u0000253","AGIScript.SayDateTime Method (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_3.htm\u0000303","AGIScript.SayDigits Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits.htm\u0000121","AGIScript.SayDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits_1.htm\u0000194","AGIScript.SayNumber Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber.htm\u0000119","AGIScript.SayNumber Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber_1.htm\u0000193","AGIScript.SayPhonetic Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u0000122","AGIScript.SayPhonetic Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic_1.htm\u0000196","AGIScript.SayTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime.htm\u0000129","AGIScript.SayTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime_1.htm\u0000203","AGIScript.Service Method\u0000html/M_AsterNET_FastAGI_AGIScript_Service.htm\u0000212","AGIScript.SetAutoHangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetAutoHangup.htm\u0000147","AGIScript.SetCallerId Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm\u0000145","AGIScript.SetContext Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetContext.htm\u0000137","AGIScript.SetExtension Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetExtension.htm\u0000137","AGIScript.SetPriority Method (Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority.htm\u0000140","AGIScript.SetPriority Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority_1.htm\u0000142","AGIScript.SetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetVariable.htm\u0000157","AGIScript.StopMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_StopMusicOnHold.htm\u000086","AGIScript.StreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile.htm\u0000121","AGIScript.StreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile_1.htm\u0000193","AGIScript.Verbose Method\u0000html/M_AsterNET_FastAGI_AGIScript_Verbose.htm\u0000159","AGIScript.WaitForDigit Method\u0000html/M_AsterNET_FastAGI_AGIScript_WaitForDigit.htm\u0000153","AGIScript Constructor\u0000html/M_AsterNET_FastAGI_AGIScript__ctor.htm\u000084","AGIWriter.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIWriter_SendCommand.htm\u0000151","AGIWriter Constructor\u0000html/M_AsterNET_FastAGI_AGIWriter__ctor.htm\u0000134","AsteriskFastAGI.Start Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Start.htm\u000095","AsteriskFastAGI.Stop Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Stop.htm\u000095","AsteriskFastAGI Constructor\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u000083","AsteriskFastAGI Constructor (IMappingStrategy)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_1.htm\u0000136","AsteriskFastAGI Constructor (IMappingStrategy, String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_2.htm\u0000318","AsteriskFastAGI Constructor (Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_3.htm\u0000163","AsteriskFastAGI Constructor (String)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_4.htm\u0000134","AsteriskFastAGI Constructor (String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_5.htm\u0000197","AsteriskFastAGI Constructor (String, Int32, Int32, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_6.htm\u0000511","AGICommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_BuildCommand.htm\u0000127","AGICommand.EscapeAndQuote Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_EscapeAndQuote.htm\u0000177","AGICommand.ToString Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_ToString.htm\u0000136","AGICommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AGICommand__ctor.htm\u000086","AnswerCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand_BuildCommand.htm\u0000136","AnswerCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand__ctor.htm\u000086","ChannelStatusCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand_BuildCommand.htm\u0000136","ChannelStatusCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000088","ChannelStatusCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor_1.htm\u0000125","ControlStreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_BuildCommand.htm\u0000136","ControlStreamFileCommand.ControlDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u0000160","ControlStreamFileCommand.ControlDigits Method (String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits_1.htm\u0000197","ControlStreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000154","ControlStreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_1.htm\u0000194","ControlStreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_2.htm\u0000240","ControlStreamFileCommand Constructor (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_3.htm\u0000342","DatabaseDelCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand_BuildCommand.htm\u0000136","DatabaseDelCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u0000121","DatabaseDelCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor_1.htm\u0000157","DatabaseDelTreeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_BuildCommand.htm\u0000136","DatabaseDelTreeCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u0000120","DatabaseDelTreeCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor_1.htm\u0000153","DatabaseGetCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand_BuildCommand.htm\u0000136","DatabaseGetCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand__ctor.htm\u0000146","DatabasePutCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand_BuildCommand.htm\u0000136","DatabasePutCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand__ctor.htm\u0000177","ExecCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ExecCommand_BuildCommand.htm\u0000136","ExecCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u0000120","ExecCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor_1.htm\u0000156","GetDataCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand_BuildCommand.htm\u0000136","GetDataCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u0000133","GetDataCommand Constructor (String, Int64)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_1.htm\u0000190","GetDataCommand Constructor (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_2.htm\u0000230","GetFullVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand_BuildCommand.htm\u0000136","GetFullVariableCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u0000120","GetFullVariableCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor_1.htm\u0000154","GetOptionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand_BuildCommand.htm\u0000136","GetOptionCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u0000171","GetOptionCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor_1.htm\u0000212","GetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand_BuildCommand.htm\u0000136","GetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand__ctor.htm\u0000115","HangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_HangupCommand_BuildCommand.htm\u0000136","HangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000091","HangupCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor_1.htm\u0000126","NoopCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_NoopCommand_BuildCommand.htm\u0000136","NoopCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_NoopCommand__ctor.htm\u000083","ReceiveCharCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand_BuildCommand.htm\u0000136","ReceiveCharCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000096","ReceiveCharCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor_1.htm\u0000122","ReceiveTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand_BuildCommand.htm\u0000136","ReceiveTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000096","ReceiveTextCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor_1.htm\u0000138","RecordFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand_BuildCommand.htm\u0000136","RecordFileCommand Constructor (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u0000247","RecordFileCommand Constructor (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor_1.htm\u0000363","SayAlphaCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand_BuildCommand.htm\u0000136","SayAlphaCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u0000117","SayAlphaCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor_1.htm\u0000157","SayDateTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand_BuildCommand.htm\u0000136","SayDateTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000164","SayDateTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_1.htm\u0000192","SayDateTimeCommand Constructor (Int64, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_2.htm\u0000232","SayDateTimeCommand Constructor (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_3.htm\u0000282","SayDigitsCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand_BuildCommand.htm\u0000136","SayDigitsCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u0000117","SayDigitsCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor_1.htm\u0000156","SayNumberCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand_BuildCommand.htm\u0000136","SayNumberCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u0000117","SayNumberCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor_1.htm\u0000157","SayPhoneticCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand_BuildCommand.htm\u0000136","SayPhoneticCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u0000117","SayPhoneticCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor_1.htm\u0000157","SayTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand_BuildCommand.htm\u0000136","SayTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u0000127","SayTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor_1.htm\u0000167","SendImageCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand_BuildCommand.htm\u0000136","SendImageCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand__ctor.htm\u0000117","SendTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand_BuildCommand.htm\u0000136","SendTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand__ctor.htm\u0000112","SetAutoHangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand_BuildCommand.htm\u0000136","SetAutoHangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand__ctor.htm\u0000123","SetCallerIdCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand_BuildCommand.htm\u0000136","SetCallerIdCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand__ctor.htm\u0000111","SetContextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand_BuildCommand.htm\u0000136","SetContextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand__ctor.htm\u0000116","SetExtensionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand_BuildCommand.htm\u0000136","SetExtensionCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand__ctor.htm\u0000116","SetMusicOffCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand_BuildCommand.htm\u0000136","SetMusicOffCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand__ctor.htm\u000083","SetMusicOnCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand_BuildCommand.htm\u0000136","SetMusicOnCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000094","SetMusicOnCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor_1.htm\u0000131","SetPriorityCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand_BuildCommand.htm\u0000136","SetPriorityCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u0000119","SetPriorityCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor_1.htm\u0000121","SetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand_BuildCommand.htm\u0000136","SetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand__ctor.htm\u0000165","StreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand_BuildCommand.htm\u0000136","StreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u0000130","StreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_1.htm\u0000170","StreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_2.htm\u0000216","TDDModeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand_BuildCommand.htm\u0000136","TDDModeCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand__ctor.htm\u0000158","VerboseCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand_BuildCommand.htm\u0000136","VerboseCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand__ctor.htm\u0000150","WaitForDigitCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand_BuildCommand.htm\u0000136","WaitForDigitCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000097","WaitForDigitCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor_1.htm\u0000123","IMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_DetermineScript.htm\u0000171","IMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_Load.htm\u000090","InvalidCommandSyntaxException Constructor\u0000html/M_AsterNET_FastAGI_InvalidCommandSyntaxException__ctor.htm\u0000149","InvalidOrUnknownCommandException Constructor\u0000html/M_AsterNET_FastAGI_InvalidOrUnknownCommandException__ctor.htm\u0000111","GeneralMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_DetermineScript.htm\u0000200","GeneralMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_Load.htm\u0000112","GeneralMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000088","GeneralMappingStrategy Constructor (List(ScriptMapping))\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_1.htm\u0000173","GeneralMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_2.htm\u0000140","ResourceMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_DetermineScript.htm\u0000200","ResourceMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_Load.htm\u0000112","ResourceMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000088","ResourceMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor_1.htm\u0000140","ScriptMapping.LoadMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_LoadMappings.htm\u0000203","ScriptMapping.SaveMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_SaveMappings.htm\u0000254","ScriptMapping Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping__ctor.htm\u000086","MappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_DetermineScript.htm\u0000195","MappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_Load.htm\u0000109","MappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000086","MappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor_1.htm\u0000137","ServerSocket.Accept Method\u0000html/M_AsterNET_IO_ServerSocket_Accept.htm\u0000119","ServerSocket.Close Method\u0000html/M_AsterNET_IO_ServerSocket_Close.htm\u000095","ServerSocket Constructor\u0000html/M_AsterNET_IO_ServerSocket__ctor.htm\u0000250","SocketConnection.Close Method\u0000html/M_AsterNET_IO_SocketConnection_Close.htm\u0000120","SocketConnection.ReadLine Method\u0000html/M_AsterNET_IO_SocketConnection_ReadLine.htm\u0000125","SocketConnection.Write Method\u0000html/M_AsterNET_IO_SocketConnection_Write.htm\u0000124","SocketConnection.WriteEx Method\u0000html/M_AsterNET_IO_SocketConnection_WriteEx.htm\u0000124","SocketConnection Constructor\u0000html/M_AsterNET_IO_SocketConnection__ctor.htm\u0000157","Logger.Debug Method (Object)\u0000html/M_AsterNET_Logger_Debug.htm\u0000146","Logger.Debug Method (String)\u0000html/M_AsterNET_Logger_Debug_1.htm\u0000146","Logger.Debug Method (String, Exception)\u0000html/M_AsterNET_Logger_Debug_2.htm\u0000202","Logger.Debug Method (String, Object[])\u0000html/M_AsterNET_Logger_Debug_3.htm\u0000229","Logger.Error Method (Object)\u0000html/M_AsterNET_Logger_Error.htm\u0000146","Logger.Error Method (String)\u0000html/M_AsterNET_Logger_Error_1.htm\u0000146","Logger.Error Method (String, Exception)\u0000html/M_AsterNET_Logger_Error_2.htm\u0000202","Logger.Error Method (String, Object[])\u0000html/M_AsterNET_Logger_Error_3.htm\u0000229","Logger.Info Method (Object)\u0000html/M_AsterNET_Logger_Info.htm\u0000146","Logger.Info Method (String)\u0000html/M_AsterNET_Logger_Info_1.htm\u0000146","Logger.Info Method (String, Exception)\u0000html/M_AsterNET_Logger_Info_2.htm\u0000202","Logger.Info Method (String, Object[])\u0000html/M_AsterNET_Logger_Info_3.htm\u0000229","Logger.Instance Method\u0000html/M_AsterNET_Logger_Instance.htm\u0000108","Logger.IsVisible Method\u0000html/M_AsterNET_Logger_IsVisible.htm\u0000216","Logger.Visible Method (Boolean, Logger.MessageLevel)\u0000html/M_AsterNET_Logger_Visible.htm\u0000148","Logger.Visible Method (Boolean, Logger.MessageLevel, String)\u0000html/M_AsterNET_Logger_Visible_1.htm\u0000178","Logger.Warning Method (Object)\u0000html/M_AsterNET_Logger_Warning.htm\u0000146","Logger.Warning Method (String)\u0000html/M_AsterNET_Logger_Warning_1.htm\u0000146","Logger.Warning Method (String, Exception)\u0000html/M_AsterNET_Logger_Warning_2.htm\u0000202","Logger.Warning Method (String, Object[])\u0000html/M_AsterNET_Logger_Warning_3.htm\u0000229","Logger Constructor\u0000html/M_AsterNET_Logger__ctor.htm\u000088","AbsoluteTimeoutAction Constructor\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000086","AbsoluteTimeoutAction Constructor (String, Int32)\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor_1.htm\u0000159","AgentCallbackLoginAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000086","AgentCallbackLoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_1.htm\u0000173","AgentCallbackLoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_2.htm\u0000214","AgentLogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000086","AgentLogoffAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_1.htm\u0000126","AgentLogoffAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_2.htm\u0000164","AgentsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_AgentsAction_ActionCompleteEventClass.htm\u0000136","AgentsAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentsAction__ctor.htm\u000086","AgiAction Constructor\u0000html/M_AsterNET_Manager_Action_AgiAction__ctor.htm\u0000188","AOCMessageAction Constructor\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000090","AOCMessageAction Constructor (String, String, String, String, Int32, Int32, String, String, String, String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor_1.htm\u00001191","AtxferAction Constructor\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000083","AtxferAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor_1.htm\u0000212","BridgeAction Constructor\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000088","BridgeAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor_1.htm\u0000191","ChallengeAction Constructor\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000088","ChallengeAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor_1.htm\u0000131","ChangeMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000086","ChangeMonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor_1.htm\u0000182","CommandAction Constructor\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor.htm\u000085","CommandAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor_1.htm\u0000122","ConfbridgeKickAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000089","ConfbridgeKickAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor_1.htm\u0000198","ConfbridgeListAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction__ctor.htm\u0000150","ConfbridgeListRoomsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListRoomsAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction__ctor.htm\u000086","ConfbridgeLockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000085","ConfbridgeLockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor_1.htm\u0000137","ConfbridgeMuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000089","ConfbridgeMuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor_1.htm\u0000198","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000086","ConfbridgeSetSingleVideoSrcAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor_1.htm\u0000195","ConfbridgeStartRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000141","ConfbridgeStartRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor_1.htm\u0000193","ConfbridgeStopRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000086","ConfbridgeStopRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor_1.htm\u0000138","ConfbridgeUnlockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000085","ConfbridgeUnlockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor_1.htm\u0000137","ConfbridgeUnmuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000089","ConfbridgeUnmuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor_1.htm\u0000198","CoreSettingsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreSettingsAction__ctor.htm\u000086","CoreShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreShowChannelsAction__ctor.htm\u000086","CoreStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreStatusAction__ctor.htm\u000086","CreateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u0000113","CreateConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor_1.htm\u0000165","DBDelAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000086","DBDelAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor_1.htm\u0000168","DBDelTreeAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000086","DBDelTreeAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor_1.htm\u0000165","DBGetAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_DBGetAction_ActionCompleteEventClass.htm\u0000136","DBGetAction Constructor\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000086","DBGetAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor_1.htm\u0000168","DBPutAction Constructor\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000086","DBPutAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor_1.htm\u0000200","EventsAction Constructor\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor.htm\u000086","EventsAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor_1.htm\u0000181","ExtensionStateAction Constructor\u0000html/M_AsterNET_Manager_Action_ExtensionStateAction__ctor.htm\u000086","GetConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_GetConfigAction_ActionCompleteResponseClass.htm\u0000136","GetConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000085","GetConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor_1.htm\u0000118","GetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000086","GetVarAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_1.htm\u0000128","GetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_2.htm\u0000170","HangupAction Constructor\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor.htm\u000086","HangupAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor_1.htm\u0000126","LoginAction Constructor\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor.htm\u000086","LoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_1.htm\u0000186","LoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_2.htm\u0000209","LoginAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_3.htm\u0000295","LogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_LogoffAction__ctor.htm\u000086","MailboxCountAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000086","MailboxCountAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor_1.htm\u0000162","MailboxStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000086","MailboxStatusAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor_1.htm\u0000158","ManagerActionEvent.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent_ActionCompleteEventClass.htm\u0000132","ManagerActionEvent Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent__ctor.htm\u000086","ManagerActionResponse.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse_ActionCompleteResponseClass.htm\u0000130","ManagerActionResponse Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse__ctor.htm\u000086","ManagerAction.ToString Method\u0000html/M_AsterNET_Manager_Action_ManagerAction_ToString.htm\u0000136","ManagerAction Constructor\u0000html/M_AsterNET_Manager_Action_ManagerAction__ctor.htm\u000086","MonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor.htm\u000086","MonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_1.htm\u0000180","MonitorAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_2.htm\u0000217","MonitorAction Constructor (String, String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_3.htm\u0000258","OriginateAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_ActionCompleteEventClass.htm\u0000136","OriginateAction.GetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariable.htm\u0000175","OriginateAction.GetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariables.htm\u0000175","OriginateAction.SetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariable.htm\u0000202","OriginateAction.SetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariables.htm\u0000210","OriginateAction Constructor\u0000html/M_AsterNET_Manager_Action_OriginateAction__ctor.htm\u000086","ParkAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor.htm\u0000255","ParkAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor_1.htm\u0000237","ParkedCallsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction_ActionCompleteEventClass.htm\u0000136","ParkedCallsAction Constructor\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction__ctor.htm\u000086","PingAction Constructor\u0000html/M_AsterNET_Manager_Action_PingAction__ctor.htm\u000086","ProxyAction Constructor\u0000html/M_AsterNET_Manager_Action_ProxyAction__ctor.htm\u000086","QueueAddAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u000086","QueueAddAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_1.htm\u0000190","QueueAddAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_2.htm\u0000229","QueueAddAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_3.htm\u0000290","QueueLogAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000086","QueueLogAction Constructor (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor_1.htm\u0000390","QueuePauseAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u000086","QueuePauseAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_1.htm\u0000132","QueuePauseAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_2.htm\u0000173","QueuePauseAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_3.htm\u0000169","QueuePauseAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_4.htm\u0000208","QueuePenaltyAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000088","QueuePenaltyAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor_1.htm\u0000258","QueueReloadAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000096","QueueReloadAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor_1.htm\u0000331","QueueRemoveAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000086","QueueRemoveAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor_1.htm\u0000170","QueueResetAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000084","QueueResetAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor_1.htm\u0000136","QueueRuleAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000088","QueueRuleAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor_1.htm\u0000140","QueueStatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_QueueStatusAction_ActionCompleteEventClass.htm\u0000136","QueueStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueStatusAction__ctor.htm\u000086","RedirectAction Constructor\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000086","RedirectAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_1.htm\u0000224","RedirectAction Constructor (String, String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_2.htm\u0000261","SetCDRUserFieldAction Constructor\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000086","SetCDRUserFieldAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_1.htm\u0000169","SetCDRUserFieldAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_2.htm\u0000209","SetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000086","SetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_1.htm\u0000161","SetVarAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_2.htm\u0000201","SIPPeersAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPPeersAction_ActionCompleteEventClass.htm\u0000136","SIPPeersAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPPeersAction__ctor.htm\u000086","SIPShowPeerAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction_ActionCompleteEventClass.htm\u0000136","SIPShowPeerAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000086","SIPShowPeerAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor_1.htm\u0000146","StatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_StatusAction_ActionCompleteEventClass.htm\u0000136","StatusAction Constructor\u0000html/M_AsterNET_Manager_Action_StatusAction__ctor.htm\u000086","StopMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000086","StopMonitorAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor_1.htm\u0000144","UpdateConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_ActionCompleteResponseClass.htm\u0000136","UpdateConfigAction.AddCommand Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000100","UpdateConfigAction.AddCommand Method (String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_1.htm\u0000154","UpdateConfigAction.AddCommand Method (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_2.htm\u0000212","UpdateConfigAction.AddCommand Method (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_3.htm\u0000274","UpdateConfigAction.AddCommand Method (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_4.htm\u0000340","UpdateConfigAction.AddCommand Method (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_5.htm\u0000313","UpdateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000085","UpdateConfigAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_1.htm\u0000194","UpdateConfigAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_2.htm\u0000253","UpdateConfigAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_3.htm\u0000255","ZapDialOffhookAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000086","ZapDialOffhookAction Constructor (Int32, String)\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor_1.htm\u0000202","ZapDNDOffAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000086","ZapDNDOffAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor_1.htm\u0000148","ZapDNDOnAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000086","ZapDNDOnAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor_1.htm\u0000148","ZapHangupAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000086","ZapHangupAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor_1.htm\u0000153","ZapShowChannelsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction_ActionCompleteEventClass.htm\u0000136","ZapShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction__ctor.htm\u000086","ZapTransferAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapTransferAction__ctor.htm\u000086","AuthenticationFailedException Constructor (String)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u0000119","AuthenticationFailedException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor_1.htm\u0000155","EventTimeoutException Constructor\u0000html/M_AsterNET_Manager_EventTimeoutException__ctor.htm\u0000162","AbstractAgentEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentEvent__ctor.htm\u0000137","AbstractAgentVariables.GetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariable.htm\u0000175","AbstractAgentVariables.GetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariables.htm\u0000175","AbstractAgentVariables.SetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariable.htm\u0000202","AbstractAgentVariables.SetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariables.htm\u0000210","AbstractAgentVariables Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables__ctor.htm\u0000137","AbstractChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractChannelEvent__ctor.htm\u0000137","AbstractConfbridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000088","AbstractConfbridgeEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor_1.htm\u0000142","AbstractMeetmeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractMeetmeEvent__ctor.htm\u0000137","AbstractParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractParkedCallEvent__ctor.htm\u0000137","AbstractQueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm\u0000137","AgentCallbackLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLoginEvent__ctor.htm\u0000137","AgentCallbackLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLogoffEvent__ctor.htm\u0000137","AgentCalledEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCalledEvent__ctor.htm\u0000137","AgentCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCompleteEvent__ctor.htm\u0000137","AgentConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentConnectEvent__ctor.htm\u0000137","AgentDumpEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentDumpEvent__ctor.htm\u0000137","AgentLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLoginEvent__ctor.htm\u0000137","AgentLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLogoffEvent__ctor.htm\u0000137","AgentsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsCompleteEvent__ctor.htm\u0000137","AgentsEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsEvent__ctor.htm\u0000137","AGIExecEvent Constructor\u0000html/M_AsterNET_Manager_Event_AGIExecEvent__ctor.htm\u0000134","AlarmClearEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmClearEvent__ctor.htm\u0000137","AlarmEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmEvent__ctor.htm\u0000137","AsyncAGIEvent Constructor\u0000html/M_AsterNET_Manager_Event_AsyncAGIEvent__ctor.htm\u0000137","AttendedTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_AttendedTransferEvent__ctor.htm\u0000137","BlindTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_BlindTransferEvent__ctor.htm\u0000137","BridgeActivityEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeActivityEvent__ctor.htm\u0000137","BridgeCreateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeCreateEvent__ctor.htm\u0000137","BridgeDestroyEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeDestroyEvent__ctor.htm\u0000137","BridgeEnterEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEnterEvent__ctor.htm\u0000137","BridgeEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_BridgeEvent_ParseSpecial.htm\u0000231","BridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEvent__ctor.htm\u0000137","BridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeLeaveEvent__ctor.htm\u0000137","BridgeStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeStateEvent__ctor.htm\u0000137","CdrEvent Constructor\u0000html/M_AsterNET_Manager_Event_CdrEvent__ctor.htm\u0000137","ChannelReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelReloadEvent__ctor.htm\u0000137","ChannelUpdateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelUpdateEvent__ctor.htm\u0000134","ConfbridgeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeEndEvent__ctor.htm\u0000137","ConfbridgeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeJoinEvent__ctor.htm\u0000137","ConfbridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeLeaveEvent__ctor.htm\u0000137","ConfbridgeListCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListCompleteEvent__ctor.htm\u0000137","ConfbridgeListEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListEvent__ctor.htm\u0000137","ConfbridgeListRoomsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent__ctor.htm\u0000137","ConfbridgeListRoomsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsEvent__ctor.htm\u0000137","ConfbridgeStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeStartEvent__ctor.htm\u0000137","ConfbridgeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeTalkingEvent__ctor.htm\u0000137","ConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectEvent__ctor.htm\u0000137","ConnectionStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectionStateEvent__ctor.htm\u0000137","DBGetResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_DBGetResponseEvent__ctor.htm\u0000137","DialBeginEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialBeginEvent__ctor.htm\u0000134","DialEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEndEvent__ctor.htm\u0000134","DialEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEvent__ctor.htm\u0000134","DisconnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_DisconnectEvent__ctor.htm\u0000137","DNDStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_DNDStateEvent__ctor.htm\u0000134","DTMFEvent Constructor\u0000html/M_AsterNET_Manager_Event_DTMFEvent__ctor.htm\u0000134","ExtensionStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_ExtensionStatusEvent__ctor.htm\u0000137","FailedACLEvent Constructor\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000088","FailedACLEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor_1.htm\u0000142","FaxReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_FaxReceivedEvent__ctor.htm\u0000137","HangupEvent Constructor\u0000html/M_AsterNET_Manager_Event_HangupEvent__ctor.htm\u0000137","HoldedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldedCallEvent__ctor.htm\u0000137","HoldEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldEvent__ctor.htm\u0000137","JabberEvent Constructor\u0000html/M_AsterNET_Manager_Event_JabberEvent__ctor.htm\u0000137","JitterBufStatsEvent Constructor\u0000html/M_AsterNET_Manager_Event_JitterBufStatsEvent__ctor.htm\u0000137","JoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_JoinEvent__ctor.htm\u0000137","LeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_LeaveEvent__ctor.htm\u0000137","LinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_LinkEvent__ctor.htm\u0000137","LogChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_LogChannelEvent__ctor.htm\u0000137","ManagerEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_Parse.htm\u0000179","ManagerEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ParseSpecial.htm\u0000231","ManagerEvent.ToString Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ToString.htm\u0000117","ManagerEvent Constructor\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000089","ManagerEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor_1.htm\u0000119","MeetmeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeEndEvent__ctor.htm\u0000137","MeetmeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeJoinEvent__ctor.htm\u0000137","MeetmeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeLeaveEvent__ctor.htm\u0000137","MeetmeMuteEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeMuteEvent__ctor.htm\u0000137","MeetmeStopTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeStopTalkingEvent__ctor.htm\u0000137","MeetmeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkingEvent__ctor.htm\u0000137","MeetmeTalkRequestEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkRequestEvent__ctor.htm\u0000137","MessageWaitingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MessageWaitingEvent__ctor.htm\u0000137","MobileStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_MobileStatusEvent__ctor.htm\u0000137","ModuleLoadReportEvent Constructor\u0000html/M_AsterNET_Manager_Event_ModuleLoadReportEvent__ctor.htm\u0000137","MonitorStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStartEvent__ctor.htm\u0000137","MonitorStopEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStopEvent__ctor.htm\u0000137","NewAccountCodeEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewAccountCodeEvent__ctor.htm\u0000137","NewCallerIdEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewCallerIdEvent__ctor.htm\u0000137","NewChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewChannelEvent__ctor.htm\u0000137","NewExtenEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewExtenEvent__ctor.htm\u0000137","NewStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewStateEvent__ctor.htm\u0000137","OriginateResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_OriginateResponseEvent__ctor.htm\u0000137","ParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallEvent__ctor.htm\u0000137","ParkedCallGiveUpEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallGiveUpEvent__ctor.htm\u0000137","ParkedCallsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallsCompleteEvent__ctor.htm\u0000137","ParkedCallTimeOutEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallTimeOutEvent__ctor.htm\u0000137","PeerEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerEntryEvent__ctor.htm\u0000134","PeerlistCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerlistCompleteEvent__ctor.htm\u0000137","PeerStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerStatusEvent__ctor.htm\u0000137","PRIEvent Constructor\u0000html/M_AsterNET_Manager_Event_PRIEvent__ctor.htm\u0000134","QueueCallerAbandonEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerAbandonEvent__ctor.htm\u0000134","QueueCallerJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerJoinEvent__ctor.htm\u0000137","QueueCallerLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerLeaveEvent__ctor.htm\u0000137","QueueEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEntryEvent__ctor.htm\u0000137","QueueEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEvent__ctor.htm\u0000137","QueueMemberAddedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm\u0000137","QueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberEvent__ctor.htm\u0000137","QueueMemberPausedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm\u0000137","QueueMemberPauseEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm\u0000137","QueueMemberPenaltyEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm\u0000137","QueueMemberRemovedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm\u0000137","QueueMemberStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm\u0000137","QueueParamsEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueParamsEvent__ctor.htm\u0000137","QueueStatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueStatusCompleteEvent__ctor.htm\u0000137","RegistryEvent Constructor\u0000html/M_AsterNET_Manager_Event_RegistryEvent__ctor.htm\u0000137","ReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ReloadEvent__ctor.htm\u0000137","RenameEvent Constructor\u0000html/M_AsterNET_Manager_Event_RenameEvent__ctor.htm\u0000137","ResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_ResponseEvent__ctor.htm\u0000137","RTCPReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPReceivedEvent__ctor.htm\u0000137","RTCPSentEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPSentEvent__ctor.htm\u0000137","RTPReceiverStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPReceiverStatEvent__ctor.htm\u0000137","RTPSenderStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPSenderStatEvent__ctor.htm\u0000137","ShowDialPlanCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShowDialPlanCompleteEvent__ctor.htm\u0000137","ShutdownEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShutdownEvent__ctor.htm\u0000137","StatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusCompleteEvent__ctor.htm\u0000137","StatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusEvent__ctor.htm\u0000137","TransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_TransferEvent__ctor.htm\u0000137","UnholdEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnholdEvent__ctor.htm\u0000134","UnknownEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnknownEvent__ctor.htm\u0000134","UnlinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnlinkEvent__ctor.htm\u0000137","UnparkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnparkedCallEvent__ctor.htm\u0000137","UserEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_UserEvent_Parse.htm\u0000255","UserEvent Constructor\u0000html/M_AsterNET_Manager_Event_UserEvent__ctor.htm\u0000137","VarSetEvent Constructor\u0000html/M_AsterNET_Manager_Event_VarSetEvent__ctor.htm\u0000137","ZapShowChannelsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent__ctor.htm\u0000137","ZapShowChannelsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsEvent__ctor.htm\u0000137","IResponseHandler.Free Method\u0000html/M_AsterNET_Manager_IResponseHandler_Free.htm\u000090","IResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_IResponseHandler_HandleResponse.htm\u0000114","ManagerConnection.BuildAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction.htm\u0000185","ManagerConnection.BuildAction Method (ManagerAction, String)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction_1.htm\u0000246","ManagerConnection.connect Method\u0000html/M_AsterNET_Manager_ManagerConnection_connect.htm\u0000117","ManagerConnection.determineVersion Method\u0000html/M_AsterNET_Manager_ManagerConnection_determineVersion.htm\u0000117","ManagerConnection.GetProtocolIdentifier Method\u0000html/M_AsterNET_Manager_ManagerConnection_GetProtocolIdentifier.htm\u0000119","ManagerConnection.IsConnected Method\u0000html/M_AsterNET_Manager_ManagerConnection_IsConnected.htm\u0000118","ManagerConnection.Login Method\u0000html/M_AsterNET_Manager_ManagerConnection_Login.htm\u0000119","ManagerConnection.Login Method (Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_Login_1.htm\u0000142","ManagerConnection.Logoff Method\u0000html/M_AsterNET_Manager_ManagerConnection_Logoff.htm\u000089","ManagerConnection.RegisterUserEventClass Method\u0000html/M_AsterNET_Manager_ManagerConnection_RegisterUserEventClass.htm\u0000131","ManagerConnection.SendAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction.htm\u0000171","ManagerConnection.SendAction Method (ManagerAction, ResponseHandler)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_1.htm\u0000249","ManagerConnection.SendAction Method (ManagerAction, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_2.htm\u0000206","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u0000185","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction_1.htm\u0000221","ManagerConnection Constructor\u0000html/M_AsterNET_Manager_ManagerConnection__ctor.htm\u000083","ManagerConnection Constructor (String, Int32, String, String)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_1.htm\u0000233","ManagerConnection Constructor (String, Int32, String, String, Encoding)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_2.htm\u0000295","ManagerException Constructor (String)\u0000html/M_AsterNET_Manager_ManagerException__ctor.htm\u0000119","ManagerException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_ManagerException__ctor_1.htm\u0000155","ManagerReader Constructor\u0000html/M_AsterNET_Manager_ManagerReader__ctor.htm\u0000131","Originate.GetVariable Method\u0000html/M_AsterNET_Manager_Originate_GetVariable.htm\u0000171","Originate.GetVariables Method\u0000html/M_AsterNET_Manager_Originate_GetVariables.htm\u0000153","Originate.SetVariable Method\u0000html/M_AsterNET_Manager_Originate_SetVariable.htm\u0000198","Originate.SetVariables Method\u0000html/M_AsterNET_Manager_Originate_SetVariables.htm\u0000185","Originate Constructor\u0000html/M_AsterNET_Manager_Originate__ctor.htm\u000084","ResponseEventHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_Free.htm\u0000109","ResponseEventHandler.HandleEvent Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleEvent.htm\u0000151","ResponseEventHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleResponse.htm\u0000170","ResponseEventHandler Constructor\u0000html/M_AsterNET_Manager_ResponseEventHandler__ctor.htm\u0000257","ResponseEvents.AddEvent Method\u0000html/M_AsterNET_Manager_ResponseEvents_AddEvent.htm\u0000121","ResponseEvents Constructor\u0000html/M_AsterNET_Manager_ResponseEvents__ctor.htm\u000081","ResponseHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseHandler_Free.htm\u0000109","ResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseHandler_HandleResponse.htm\u0000171","ResponseHandler Constructor\u0000html/M_AsterNET_Manager_ResponseHandler__ctor.htm\u0000192","ChallengeResponse Constructor\u0000html/M_AsterNET_Manager_Response_ChallengeResponse__ctor.htm\u000086","CommandResponse Constructor\u0000html/M_AsterNET_Manager_Response_CommandResponse__ctor.htm\u000086","ExtensionStateResponse Constructor\u0000html/M_AsterNET_Manager_Response_ExtensionStateResponse__ctor.htm\u000086","GetConfigResponse.Lines Method\u0000html/M_AsterNET_Manager_Response_GetConfigResponse_Lines.htm\u0000207","GetConfigResponse Constructor\u0000html/M_AsterNET_Manager_Response_GetConfigResponse__ctor.htm\u000086","MailboxCountResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxCountResponse__ctor.htm\u000086","MailboxStatusResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxStatusResponse__ctor.htm\u000086","ManagerError Constructor\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor.htm\u000085","ManagerError Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor_1.htm\u0000191","ManagerResponse.GetAttribute Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_GetAttribute.htm\u0000268","ManagerResponse.IsSuccess Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_IsSuccess.htm\u0000111","ManagerResponse.Parse Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_Parse.htm\u0000179","ManagerResponse.ParseSpecial Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ParseSpecial.htm\u0000230","ManagerResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ToString.htm\u0000136","ManagerResponse Constructor\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000088","ManagerResponse Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor_1.htm\u0000191","OriginateResponse.CalcDuration Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_CalcDuration.htm\u0000130","OriginateResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_ToString.htm\u0000136","OriginateResponse Constructor\u0000html/M_AsterNET_Manager_Response_OriginateResponse__ctor.htm\u000086","TimeoutException Constructor\u0000html/M_AsterNET_Manager_TimeoutException__ctor.htm\u0000116","MD5Support.GetInstance Method\u0000html/M_AsterNET_Util_MD5Support_GetInstance.htm\u0000115","MD5Support.GetInstance Method (String)\u0000html/M_AsterNET_Util_MD5Support_GetInstance_1.htm\u0000148","MD5Support.Update Method\u0000html/M_AsterNET_Util_MD5Support_Update.htm\u0000148","MD5Support Constructor\u0000html/M_AsterNET_Util_MD5Support__ctor.htm\u0000120","ThreadClass.Interrupt Method\u0000html/M_AsterNET_Util_ThreadClass_Interrupt.htm\u000090","ThreadClass.Run Method\u0000html/M_AsterNET_Util_ThreadClass_Run.htm\u0000102","ThreadClass.Start Method\u0000html/M_AsterNET_Util_ThreadClass_Start.htm\u000096","ThreadClass Constructor\u0000html/M_AsterNET_Util_ThreadClass__ctor.htm\u000086","ThreadClass Constructor (String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_1.htm\u0000119","ThreadClass Constructor (ThreadStart)\u0000html/M_AsterNET_Util_ThreadClass__ctor_2.htm\u0000130","ThreadClass Constructor (ThreadStart, String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_3.htm\u0000163","ThreadPool.AddJob Method\u0000html/M_AsterNET_Util_ThreadPool_AddJob.htm\u0000149","ThreadPool.Shutdown Method\u0000html/M_AsterNET_Util_ThreadPool_Shutdown.htm\u0000109","ThreadPool Constructor\u0000html/M_AsterNET_Util_ThreadPool__ctor.htm\u0000165","AsterNET Namespace\u0000html/N_AsterNET.htm\u000032","AsterNET.FastAGI Namespace\u0000html/N_AsterNET_FastAGI.htm\u0000270","AsterNET.FastAGI.Command Namespace\u0000html/N_AsterNET_FastAGI_Command.htm\u00001586","AsterNET.FastAGI.MappingStrategies Namespace\u0000html/N_AsterNET_FastAGI_MappingStrategies.htm\u0000121","AsterNET.IO Namespace\u0000html/N_AsterNET_IO.htm\u000025","AsterNET.Manager Namespace\u0000html/N_AsterNET_Manager.htm\u0000276","AsterNET.Manager.Action Namespace\u0000html/N_AsterNET_Manager_Action.htm\u00001633","AsterNET.Manager.Event Namespace\u0000html/N_AsterNET_Manager_Event.htm\u00002259","AsterNET.Manager.Response Namespace\u0000html/N_AsterNET_Manager_Response.htm\u0000303","AsterNET.Util Namespace\u0000html/N_AsterNET_Util.htm\u000046","AGIChannel Constructor\u0000html/Overload_AsterNET_FastAGI_AGIChannel__ctor.htm\u000056","AGIException Constructor\u0000html/Overload_AsterNET_FastAGI_AGIException__ctor.htm\u000061","AGIReply Constructor\u0000html/Overload_AsterNET_FastAGI_AGIReply__ctor.htm\u000046","AGIScript.ControlStreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000441","AGIScript.DatabaseDelTree Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u000066","AGIScript.Exec Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_Exec.htm\u000043","AGIScript.GetData Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetData.htm\u0000156","AGIScript.GetFullVariable Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u000077","AGIScript.GetOption Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000132","AGIScript.PlayMusicOnHold Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000041","AGIScript.RecordFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000245","AGIScript.SayAlpha Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u000060","AGIScript.SayDateTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000133","AGIScript.SayDigits Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDigits.htm\u000059","AGIScript.SayNumber Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayNumber.htm\u000058","AGIScript.SayPhonetic Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u000064","AGIScript.SayTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayTime.htm\u000058","AGIScript.SetPriority Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SetPriority.htm\u000051","AGIScript.StreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_StreamFile.htm\u000056","AsteriskFastAGI Constructor\u0000html/Overload_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u0000104","ChannelStatusCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000047","ControlStreamFileCommand.ControlDigits Method\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u000060","ControlStreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000191","DatabaseDelCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u000051","DatabaseDelTreeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u000043","ExecCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u000043","GetDataCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u000078","GetFullVariableCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u000043","GetOptionCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u000058","HangupCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000051","ReceiveCharCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000050","ReceiveTextCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000053","RecordFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u000059","SayAlphaCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u000043","SayDateTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000152","SayDigitsCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u000043","SayNumberCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u000043","SayPhoneticCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u000043","SayTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u000043","SetMusicOnCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000057","SetPriorityCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u000041","StreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u000071","WaitForDigitCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000051","GeneralMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000058","ResourceMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000045","MappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000044","Logger.Debug Method\u0000html/Overload_AsterNET_Logger_Debug.htm\u000041","Logger.Error Method\u0000html/Overload_AsterNET_Logger_Error.htm\u000041","Logger.Info Method\u0000html/Overload_AsterNET_Logger_Info.htm\u000041","Logger.Visible Method\u0000html/Overload_AsterNET_Logger_Visible.htm\u000054","Logger.Warning Method\u0000html/Overload_AsterNET_Logger_Warning.htm\u000041","AbsoluteTimeoutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000048","AgentCallbackLoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000082","AgentLogoffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000060","AOCMessageAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000075","AtxferAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000041","BridgeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000049","ChallengeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000055","ChangeMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000059","CommandAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CommandAction__ctor.htm\u000043","ConfbridgeKickAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000049","ConfbridgeLockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000039","ConfbridgeMuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000049","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000043","ConfbridgeStartRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000151","ConfbridgeStopRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000041","ConfbridgeUnlockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000039","ConfbridgeUnmuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000049","CreateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u000095","DBDelAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000058","DBDelTreeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000055","DBGetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000058","DBPutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000060","EventsAction Constructor\u0000html/Overload_AsterNET_Manager_Action_EventsAction__ctor.htm\u000051","GetConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000041","GetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000065","HangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_HangupAction__ctor.htm\u000046","LoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_LoginAction__ctor.htm\u0000107","MailboxCountAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000053","MailboxStatusAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000049","MonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MonitorAction__ctor.htm\u0000116","ParkAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ParkAction__ctor.htm\u000051","QueueAddAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u0000111","QueueLogAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000049","QueuePauseAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u0000124","QueuePenaltyAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000049","QueueReloadAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000067","QueueRemoveAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000054","QueueResetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000037","QueueRuleAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000045","RedirectAction Constructor\u0000html/Overload_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000090","SetCDRUserFieldAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000090","SetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000078","SIPShowPeerAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000049","StopMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000047","UpdateConfigAction.AddCommand Method\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000123","UpdateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000065","ZapDialOffhookAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000052","ZapDNDOffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000053","ZapDNDOnAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000053","ZapHangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000058","AuthenticationFailedException Constructor\u0000html/Overload_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u000052","AbstractConfbridgeEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000045","FailedACLEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000045","ManagerEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000042","ManagerConnection.BuildAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_BuildAction.htm\u000033","ManagerConnection.Login Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_Login.htm\u000087","ManagerConnection.SendAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendAction.htm\u000052","ManagerConnection.SendEventGeneratingAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u000033","ManagerConnection Constructor\u0000html/Overload_AsterNET_Manager_ManagerConnection__ctor.htm\u000070","ManagerException Constructor\u0000html/Overload_AsterNET_Manager_ManagerException__ctor.htm\u000052","ManagerError Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerError__ctor.htm\u000046","ManagerResponse Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000049","MD5Support.GetInstance Method\u0000html/Overload_AsterNET_Util_MD5Support_GetInstance.htm\u000053","ThreadClass Constructor\u0000html/Overload_AsterNET_Util_ThreadClass__ctor.htm\u000071","AGIChannel Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIChannel.htm\u000037","AGIException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIException.htm\u0000200","AGIHangupException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIHangupException.htm\u0000200","AGINetworkException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGINetworkException.htm\u0000200","AGIReply Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIReply.htm\u0000104","AGIRequest Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIRequest.htm\u0000212","AGIScript Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIScript.htm\u000032","AsteriskFastAGI Properties\u0000html/Properties_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000105","ChannelStatusCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u000033","ControlStreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u000096","DatabaseDelCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u000056","DatabaseDelTreeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u000052","DatabaseGetCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u000044","DatabasePutCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u000060","ExecCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ExecCommand.htm\u000054","GetDataCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000108","GetFullVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u000052","GetOptionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u000075","GetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u000033","HangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_HangupCommand.htm\u000042","ReceiveCharCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u000047","ReceiveTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u000047","RecordFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000117","SayAlphaCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u000055","SayDateTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u000097","SayDigitsCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u000055","SayNumberCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u000054","SayPhoneticCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u000054","SayTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u000065","SendImageCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u000040","SendTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u000040","SetAutoHangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u000047","SetCallerIdCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u000039","SetContextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u000044","SetExtensionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u000044","SetMusicOnCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u000045","SetPriorityCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u000058","SetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u000051","StreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u000081","TDDModeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u000072","VerboseCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u000048","WaitForDigitCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u000048","InvalidCommandSyntaxException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000228","InvalidOrUnknownCommandException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000200","ResourceMappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u000033","ScriptMapping Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u000081","MappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategy.htm\u000032","SocketConnection Properties\u0000html/Properties_T_AsterNET_IO_SocketConnection.htm\u000048","AbsoluteTimeoutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000159","AgentCallbackLoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000280","AgentLogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000175","AgentsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentsAction.htm\u0000138","AgiAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgiAction.htm\u0000140","AOCMessageAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000138","AtxferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AtxferAction.htm\u0000146","BridgeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_BridgeAction.htm\u0000127","ChallengeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000155","ChangeMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000174","CommandAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CommandAction.htm\u0000151","ConfbridgeKickAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000126","ConfbridgeListAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000125","ConfbridgeListRoomsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000124","ConfbridgeLockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000125","ConfbridgeMuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000126","ConfbridgeSetSingleVideoSrcAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000126","ConfbridgeStartRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000125","ConfbridgeStopRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000125","ConfbridgeUnlockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000125","ConfbridgeUnmuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000126","CoreSettingsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000124","CoreShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000124","CoreStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000124","CreateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000125","DBDelAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelAction.htm\u0000148","DBDelTreeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000148","DBGetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBGetAction.htm\u0000144","DBPutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBPutAction.htm\u0000152","EventsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_EventsAction.htm\u0000199","ExtensionStateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000161","GetConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000138","GetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetVarAction.htm\u0000176","HangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_HangupAction.htm\u0000149","LoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LoginAction.htm\u0000288","LogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LogoffAction.htm\u0000138","MailboxCountAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000183","MailboxStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000222","ManagerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerAction.htm\u0000110","ManagerActionEvent Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000138","ManagerActionResponse Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000138","MonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MonitorAction.htm\u0000243","OriginateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_OriginateAction.htm\u0000479","ParkAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkAction.htm\u0000183","ParkedCallsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000138","PingAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_PingAction.htm\u0000138","ProxyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ProxyAction.htm\u0000138","QueueAddAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000266","QueueLogAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000129","QueuePauseAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000199","QueuePenaltyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000127","QueueReloadAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000128","QueueRemoveAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000166","QueueResetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000125","QueueRuleAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000125","QueueStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000152","RedirectAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_RedirectAction.htm\u0000172","SetCDRUserFieldAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000210","SetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetVarAction.htm\u0000166","SIPPeersAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000124","SIPShowPeerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000140","StatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StatusAction.htm\u0000138","StopMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000155","UpdateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000235","ZapDialOffhookAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000166","ZapDNDOffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000158","ZapDNDOnAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000158","ZapHangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000155","ZapShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000138","ZapTransferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000155","AuthenticationFailedException Properties\u0000html/Properties_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000200","EventTimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_EventTimeoutException.htm\u0000257","AbstractAgentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000396","AbstractAgentVariables Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000360","AbstractChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000395","AbstractConfbridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000334","AbstractMeetmeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000341","AbstractParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000382","AbstractQueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000360","AgentCallbackLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000346","AgentCallbackLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000392","AgentCalledEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000400","AgentCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000457","AgentConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000449","AgentDumpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000417","AgentLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000346","AgentLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000346","AgentsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000376","AgentsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000528","AGIExecEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000338","AlarmClearEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000333","AlarmEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000358","AsyncAGIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000337","AttendedTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000399","BlindTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000368","BridgeActivityEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000350","BridgeCreateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000381","BridgeDestroyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000381","BridgeEnterEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000469","BridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000359","BridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000469","BridgeStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000339","CdrEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_CdrEvent.htm\u0000349","ChannelReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000355","ChannelUpdateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000356","ConfbridgeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000341","ConfbridgeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000343","ConfbridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000343","ConfbridgeListCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000376","ConfbridgeListEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000345","ConfbridgeListRoomsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000376","ConfbridgeListRoomsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000344","ConfbridgeStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000341","ConfbridgeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000342","ConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000355","ConnectionStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000339","DBGetResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000415","DialBeginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000470","DialEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000471","DialEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEvent.htm\u0000400","DisconnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000346","DNDStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000387","DTMFEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000337","ExtensionStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000364","FailedACLEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000336","FaxReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000516","HangupEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HangupEvent.htm\u0000478","HoldedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000397","HoldEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldEvent.htm\u0000334","JabberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JabberEvent.htm\u0000335","JitterBufStatsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000349","JoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JoinEvent.htm\u0000457","LeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000382","LinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LinkEvent.htm\u0000429","LogChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000365","ManagerEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000277","MeetmeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000355","MeetmeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000357","MeetmeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000358","MeetmeMuteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000356","MeetmeStopTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000355","MeetmeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000356","MeetmeTalkRequestEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000356","MessageWaitingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000400","MobileStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000335","ModuleLoadReportEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000336","MonitorStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000333","MonitorStopEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000333","NewAccountCodeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000335","NewCallerIdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000377","NewChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000458","NewExtenEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000396","NewStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000458","OriginateResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000383","ParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000459","ParkedCallGiveUpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000410","ParkedCallsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000376","ParkedCallTimeOutEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000410","PeerEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000461","PeerlistCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000388","PeerStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000520","PRIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PRIEvent.htm\u0000337","QueueCallerAbandonEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000337","QueueCallerJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000383","QueueCallerLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000383","QueueEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000439","QueueEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEvent.htm\u0000368","QueueMemberAddedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000574","QueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000607","QueueMemberPausedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000421","QueueMemberPauseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000458","QueueMemberPenaltyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000384","QueueMemberRemovedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000393","QueueMemberStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000677","QueueParamsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000549","QueueStatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000376","RegistryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000514","ReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000392","RenameEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RenameEvent.htm\u0000353","ResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000362","RTCPReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000345","RTCPSentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000345","RTPReceiverStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000339","RTPSenderStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000339","ShowDialPlanCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000338","ShutdownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000407","StatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000377","StatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusEvent.htm\u0000440","TransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_TransferEvent.htm\u0000346","UnholdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000333","UnknownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000333","UnlinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000429","UnparkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000423","UserEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UserEvent.htm\u0000334","VarSetEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000352","ZapShowChannelsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000376","ZapShowChannelsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000420","IResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_IResponseHandler.htm\u000033","ManagerConnection Properties\u0000html/Properties_T_AsterNET_Manager_ManagerConnection.htm\u0000383","ManagerException Properties\u0000html/Properties_T_AsterNET_Manager_ManagerException.htm\u0000200","Originate Properties\u0000html/Properties_T_AsterNET_Manager_Originate.htm\u0000255","ResponseEventHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEventHandler.htm\u000034","ResponseEvents Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEvents.htm\u000042","ResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseHandler.htm\u000034","ChallengeResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000368","CommandResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_CommandResponse.htm\u0000369","ExtensionStateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000357","GetConfigResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000364","MailboxCountResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000385","MailboxStatusResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000388","ManagerError Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerError.htm\u0000353","ManagerResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000297","OriginateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_OriginateResponse.htm\u000040","TimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_TimeoutException.htm\u0000200","MD5Support Properties\u0000html/Properties_T_AsterNET_Util_MD5Support.htm\u000042","ThreadClass Properties\u0000html/Properties_T_AsterNET_Util_ThreadClass.htm\u000069","AGIChannel.LastReply Property\u0000html/P_AsterNET_FastAGI_AGIChannel_LastReply.htm\u0000108","AGIReply.Extra Property\u0000html/P_AsterNET_FastAGI_AGIReply_Extra.htm\u0000164","AGIReply.FirstLine Property\u0000html/P_AsterNET_FastAGI_AGIReply_FirstLine.htm\u0000118","AGIReply.Lines Property\u0000html/P_AsterNET_FastAGI_AGIReply_Lines.htm\u0000118","AGIReply.ResultCode Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCode.htm\u0000124","AGIReply.ResultCodeAsChar Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCodeAsChar.htm\u0000112","AGIRequest.AccountCode Property\u0000html/P_AsterNET_FastAGI_AGIRequest_AccountCode.htm\u0000112","AGIRequest.CallerId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerId.htm\u0000118","AGIRequest.CallerIdName Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerIdName.htm\u0000118","AGIRequest.CallingAni2 Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingAni2.htm\u0000114","AGIRequest.CallingPres Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingPres.htm\u0000114","AGIRequest.CallingTns Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTns.htm\u0000114","AGIRequest.CallingTon Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTon.htm\u0000114","AGIRequest.Channel Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Channel.htm\u0000116","AGIRequest.Context Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Context.htm\u0000118","AGIRequest.Dnid Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Dnid.htm\u0000118","AGIRequest.Enhanced Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Enhanced.htm\u0000134","AGIRequest.Extension Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Extension.htm\u0000118","AGIRequest.Language Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Language.htm\u0000113","AGIRequest.LocalAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalAddress.htm\u0000135","AGIRequest.LocalPort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalPort.htm\u0000129","AGIRequest.Priority Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Priority.htm\u0000118","AGIRequest.Rdnis Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Rdnis.htm\u0000118","AGIRequest.RemoteAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemoteAddress.htm\u0000135","AGIRequest.RemotePort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemotePort.htm\u0000129","AGIRequest.Request Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Request.htm\u0000118","AGIRequest.RequestURL Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RequestURL.htm\u0000124","AGIRequest.Script Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Script.htm\u0000112","AGIRequest.Type Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Type.htm\u0000128","AGIRequest.UniqueId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_UniqueId.htm\u0000118","AGIScript.Channel Property\u0000html/P_AsterNET_FastAGI_AGIScript_Channel.htm\u0000118","AsteriskFastAGI.BindPort Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_BindPort.htm\u0000120","AsteriskFastAGI.MappingStrategy Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_MappingStrategy.htm\u0000129","AsteriskFastAGI.PoolSize Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_PoolSize.htm\u0000133","AsteriskFastAGI.SocketEncoding Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_SocketEncoding.htm\u0000135","ChannelStatusCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_ChannelStatusCommand_Channel.htm\u0000138","ControlStreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_EscapeDigits.htm\u0000139","ControlStreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_File.htm\u0000132","ControlStreamFileCommand.ForwardDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_ForwardDigit.htm\u0000112","ControlStreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_Offset.htm\u0000126","ControlStreamFileCommand.PauseDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_PauseDigit.htm\u0000113","ControlStreamFileCommand.RewindDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_RewindDigit.htm\u0000111","DatabaseDelCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_Family.htm\u0000136","DatabaseDelCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_KeyTree.htm\u0000130","DatabaseDelTreeCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_Family.htm\u0000132","DatabaseDelTreeCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_KeyTree.htm\u0000130","DatabaseGetCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Family.htm\u0000124","DatabaseGetCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Key.htm\u0000130","DatabasePutCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Family.htm\u0000132","DatabasePutCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Key.htm\u0000130","DatabasePutCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Value.htm\u0000129","ExecCommand.Application Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Application.htm\u0000132","ExecCommand.Options Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Options.htm\u0000132","GetDataCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_File.htm\u0000137","GetDataCommand.MaxDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_MaxDigits.htm\u0000143","GetDataCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_Timeout.htm\u0000150","GetFullVariableCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Channel.htm\u0000130","GetFullVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Variable.htm\u0000132","GetOptionCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_EscapeDigits.htm\u0000134","GetOptionCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_File.htm\u0000132","GetOptionCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_Timeout.htm\u0000134","GetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm\u0000138","HangupCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_HangupCommand_Channel.htm\u0000154","ReceiveCharCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveCharCommand_Timeout.htm\u0000130","ReceiveTextCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveTextCommand_Timeout.htm\u0000130","RecordFileCommand.Beep Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Beep.htm\u0000132","RecordFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_EscapeDigits.htm\u0000134","RecordFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_File.htm\u0000132","RecordFileCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Format.htm\u0000139","RecordFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Offset.htm\u0000124","RecordFileCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Timeout.htm\u0000132","SayAlphaCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_EscapeDigits.htm\u0000135","SayAlphaCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_Text.htm\u0000130","SayDateTimeCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Format.htm\u0000133","SayDateTimeCommand.getEscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_getEscapeDigits.htm\u0000135","SayDateTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Time.htm\u0000145","SayDateTimeCommand.Timezone Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Timezone.htm\u0000133","SayDigitsCommand.Digits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_Digits.htm\u0000130","SayDigitsCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_EscapeDigits.htm\u0000135","SayNumberCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_EscapeDigits.htm\u0000135","SayNumberCommand.Number Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_Number.htm\u0000129","SayPhoneticCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_EscapeDigits.htm\u0000135","SayPhoneticCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_Text.htm\u0000129","SayTimeCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_EscapeDigits.htm\u0000135","SayTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_Time.htm\u0000137","SendImageCommand.Image Property\u0000html/P_AsterNET_FastAGI_Command_SendImageCommand_Image.htm\u0000134","SendTextCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SendTextCommand_Text.htm\u0000134","SetAutoHangupCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SetAutoHangupCommand_Time.htm\u0000142","SetCallerIdCommand.CallerId Property\u0000html/P_AsterNET_FastAGI_Command_SetCallerIdCommand_CallerId.htm\u0000128","SetContextCommand.Context Property\u0000html/P_AsterNET_FastAGI_Command_SetContextCommand_Context.htm\u0000133","SetExtensionCommand.Extension Property\u0000html/P_AsterNET_FastAGI_Command_SetExtensionCommand_Extension.htm\u0000142","SetMusicOnCommand.MusicOnHoldClass Property\u0000html/P_AsterNET_FastAGI_Command_SetMusicOnCommand_MusicOnHoldClass.htm\u0000150","SetPriorityCommand.Label Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Label.htm\u0000133","SetPriorityCommand.Priority Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Priority.htm\u0000129","SetVariableCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Value.htm\u0000129","SetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Variable.htm\u0000132","StreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_EscapeDigits.htm\u0000135","StreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_File.htm\u0000145","StreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_Offset.htm\u0000126","TDDModeCommand.Mode Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Mode.htm\u0000111","TDDModeCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Timeout.htm\u0000140","VerboseCommand.Level Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Level.htm\u0000123","VerboseCommand.Message Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Message.htm\u0000129","WaitForDigitCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_WaitForDigitCommand_Timeout.htm\u0000134","InvalidCommandSyntaxException.Synopsis Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Synopsis.htm\u0000128","InvalidCommandSyntaxException.Usage Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Usage.htm\u0000128","ResourceMappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_ResourceBundleName.htm\u0000124","ScriptMapping.PreLoadedAssembly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_PreLoadedAssembly.htm\u0000138","ScriptMapping.ScriptAssmebly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptAssmebly.htm\u0000150","ScriptMapping.ScriptClass Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptClass.htm\u0000130","ScriptMapping.ScriptName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptName.htm\u0000131","MappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategy_ResourceBundleName.htm\u0000121","SocketConnection.Encoding Property\u0000html/P_AsterNET_IO_SocketConnection_Encoding.htm\u0000118","SocketConnection.Initial Property\u0000html/P_AsterNET_IO_SocketConnection_Initial.htm\u0000129","SocketConnection.IsConnected Property\u0000html/P_AsterNET_IO_SocketConnection_IsConnected.htm\u0000107","SocketConnection.LocalAddress Property\u0000html/P_AsterNET_IO_SocketConnection_LocalAddress.htm\u0000118","SocketConnection.LocalPort Property\u0000html/P_AsterNET_IO_SocketConnection_LocalPort.htm\u0000114","SocketConnection.NetworkStream Property\u0000html/P_AsterNET_IO_SocketConnection_NetworkStream.htm\u0000118","SocketConnection.RemoteAddress Property\u0000html/P_AsterNET_IO_SocketConnection_RemoteAddress.htm\u0000118","SocketConnection.RemotePort Property\u0000html/P_AsterNET_IO_SocketConnection_RemotePort.htm\u0000114","SocketConnection.TcpClient Property\u0000html/P_AsterNET_IO_SocketConnection_TcpClient.htm\u0000118","AbsoluteTimeoutAction.Action Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Action.htm\u0000131","AbsoluteTimeoutAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Channel.htm\u0000130","AbsoluteTimeoutAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Timeout.htm\u0000127","AgentCallbackLoginAction.AckCall Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_AckCall.htm\u0000165","AgentCallbackLoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Action.htm\u0000131","AgentCallbackLoginAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Agent.htm\u0000145","AgentCallbackLoginAction.Context Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Context.htm\u0000134","AgentCallbackLoginAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Exten.htm\u0000137","AgentCallbackLoginAction.WrapupTime Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_WrapupTime.htm\u0000157","AgentLogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Action.htm\u0000136","AgentLogoffAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Agent.htm\u0000168","AgentLogoffAction.Soft Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Soft.htm\u0000155","AgentsAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentsAction_Action.htm\u0000131","AgiAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Action.htm\u0000131","AgiAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Channel.htm\u0000138","AgiAction.Command Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Command.htm\u0000138","AOCMessageAction.Action Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Action.htm\u0000133","AOCMessageAction.AocBillingId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_AocBillingId.htm\u0000138","AOCMessageAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Channel.htm\u0000138","AOCMessageAction.ChannelPrefix Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChannelPrefix.htm\u0000138","AOCMessageAction.ChargeType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargeType.htm\u0000138","AOCMessageAction.ChargingAssociationId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationId.htm\u0000138","AOCMessageAction.ChargingAssociationNumber Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationNumber.htm\u0000138","AOCMessageAction.ChargingrAssociationPlan Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingrAssociationPlan.htm\u0000138","AOCMessageAction.CurrencyAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyAmount.htm\u0000138","AOCMessageAction.CurrencyMultiplier Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyMultiplier.htm\u0000138","AOCMessageAction.CurrencyName Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyName.htm\u0000138","AOCMessageAction.MsgType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_MsgType.htm\u0000138","AOCMessageAction.TotalType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_TotalType.htm\u0000138","AOCMessageAction.UnitAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitAmount.htm\u0000132","AOCMessageAction.UnitType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitType.htm\u0000132","AtxferAction.Action Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Action.htm\u0000133","AtxferAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Channel.htm\u0000125","AtxferAction.Context Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Context.htm\u0000127","AtxferAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Exten.htm\u0000127","AtxferAction.Priority Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Priority.htm\u0000127","BridgeAction.Action Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Action.htm\u0000133","BridgeAction.Channel1 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel1.htm\u0000138","BridgeAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel2.htm\u0000138","BridgeAction.Tone Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Tone.htm\u0000138","ChallengeAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_Action.htm\u0000131","ChallengeAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_AuthType.htm\u0000138","ChangeMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Action.htm\u0000131","ChangeMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Channel.htm\u0000136","ChangeMonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_File.htm\u0000142","CommandAction.Action Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Action.htm\u0000131","CommandAction.Command Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Command.htm\u0000134","ConfbridgeKickAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Action.htm\u0000133","ConfbridgeKickAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Channel.htm\u0000138","ConfbridgeKickAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Conference.htm\u0000138","ConfbridgeListAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Action.htm\u0000133","ConfbridgeListAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Conference.htm\u0000138","ConfbridgeListRoomsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListRoomsAction_Action.htm\u0000133","ConfbridgeLockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Action.htm\u0000133","ConfbridgeLockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Conference.htm\u0000138","ConfbridgeMuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Action.htm\u0000133","ConfbridgeMuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Channel.htm\u0000138","ConfbridgeMuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Conference.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Action.htm\u0000133","ConfbridgeSetSingleVideoSrcAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Channel.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Conference.htm\u0000138","ConfbridgeStartRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Action.htm\u0000133","ConfbridgeStartRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Conference.htm\u0000138","ConfbridgeStopRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Action.htm\u0000133","ConfbridgeStopRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Conference.htm\u0000138","ConfbridgeUnlockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Action.htm\u0000133","ConfbridgeUnlockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Conference.htm\u0000138","ConfbridgeUnmuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Action.htm\u0000133","ConfbridgeUnmuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Channel.htm\u0000138","ConfbridgeUnmuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Conference.htm\u0000138","CoreSettingsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreSettingsAction_Action.htm\u0000133","CoreShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreShowChannelsAction_Action.htm\u0000133","CoreStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreStatusAction_Action.htm\u0000133","CreateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Action.htm\u0000133","CreateConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Filename.htm\u0000138","DBDelAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Action.htm\u0000133","DBDelAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Family.htm\u0000133","DBDelAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Key.htm\u0000133","DBDelTreeAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Action.htm\u0000133","DBDelTreeAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Family.htm\u0000133","DBDelTreeAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Key.htm\u0000133","DBGetAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Action.htm\u0000133","DBGetAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Family.htm\u0000135","DBGetAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Key.htm\u0000133","DBPutAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Action.htm\u0000133","DBPutAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Family.htm\u0000132","DBPutAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Key.htm\u0000130","DBPutAction.Val Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Val.htm\u0000129","EventsAction.Action Property\u0000html/P_AsterNET_Manager_Action_EventsAction_Action.htm\u0000131","EventsAction.EventMask Property\u0000html/P_AsterNET_Manager_Action_EventsAction_EventMask.htm\u0000182","ExtensionStateAction.Action Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Action.htm\u0000131","ExtensionStateAction.Context Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Context.htm\u0000136","ExtensionStateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Exten.htm\u0000129","GetConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Action.htm\u0000124","GetConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Filename.htm\u0000128","GetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Action.htm\u0000131","GetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Channel.htm\u0000148","GetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Variable.htm\u0000132","HangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Action.htm\u0000131","HangupAction.Channel Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Channel.htm\u0000132","LoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Action.htm\u0000131","LoginAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_LoginAction_AuthType.htm\u0000158","LoginAction.Events Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Events.htm\u0000182","LoginAction.Key Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Key.htm\u0000127","LoginAction.Secret Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Secret.htm\u0000155","LoginAction.Username Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Username.htm\u0000133","LogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_LogoffAction_Action.htm\u0000131","MailboxCountAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Action.htm\u0000131","MailboxCountAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Mailbox.htm\u0000166","MailboxStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Action.htm\u0000131","MailboxStatusAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Mailbox.htm\u0000205","ManagerAction.Action Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Action.htm\u0000124","ManagerAction.ActionId Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ActionId.htm\u0000138","ManagerAction.ProxyKey Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ProxyKey.htm\u0000151","ManagerAction.Server Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Server.htm\u0000182","MonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Action.htm\u0000131","MonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Channel.htm\u0000137","MonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_File.htm\u0000166","MonitorAction.Format Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Format.htm\u0000147","MonitorAction.Mix Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Mix.htm\u0000133","OriginateAction.Account Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Account.htm\u0000155","OriginateAction.Action Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Action.htm\u0000131","OriginateAction.Application Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Application.htm\u0000135","OriginateAction.Async Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Async.htm\u0000153","OriginateAction.CallerId Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_CallerId.htm\u0000134","OriginateAction.Channel Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Channel.htm\u0000148","OriginateAction.Context Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Context.htm\u0000152","OriginateAction.Data Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Data.htm\u0000147","OriginateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Exten.htm\u0000146","OriginateAction.Priority Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Priority.htm\u0000150","OriginateAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Timeout.htm\u0000164","OriginateAction.Variable Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Variable.htm\u0000289","ParkAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Action.htm\u0000131","ParkAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel.htm\u0000129","ParkAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel2.htm\u0000137","ParkAction.Parkinglot Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Parkinglot.htm\u0000127","ParkAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Timeout.htm\u0000136","ParkedCallsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkedCallsAction_Action.htm\u0000131","PingAction.Action Property\u0000html/P_AsterNET_Manager_Action_PingAction_Action.htm\u0000131","QueueAddAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Action.htm\u0000131","QueueAddAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Interface.htm\u0000153","QueueAddAction.MemberName Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_MemberName.htm\u0000129","QueueAddAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Paused.htm\u0000139","QueueAddAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Penalty.htm\u0000158","QueueAddAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Queue.htm\u0000142","QueueLogAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Action.htm\u0000133","QueueLogAction.Event Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Event.htm\u0000138","QueueLogAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Interface.htm\u0000138","QueueLogAction.Message Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Message.htm\u0000138","QueueLogAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Queue.htm\u0000138","QueueLogAction.Uniqueid Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Uniqueid.htm\u0000138","QueuePauseAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Action.htm\u0000131","QueuePauseAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Interface.htm\u0000140","QueuePauseAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Paused.htm\u0000139","QueuePauseAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Queue.htm\u0000139","QueuePenaltyAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Action.htm\u0000133","QueuePenaltyAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Interface.htm\u0000138","QueuePenaltyAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Penalty.htm\u0000138","QueuePenaltyAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Queue.htm\u0000138","QueueReloadAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Action.htm\u0000133","QueueReloadAction.Members Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Members.htm\u0000138","QueueReloadAction.Parameters Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Parameters.htm\u0000138","QueueReloadAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Queue.htm\u0000138","QueueReloadAction.Rules Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Rules.htm\u0000138","QueueRemoveAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Action.htm\u0000131","QueueRemoveAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Interface.htm\u0000134","QueueRemoveAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Queue.htm\u0000136","QueueResetAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Action.htm\u0000133","QueueResetAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Queue.htm\u0000138","QueueRuleAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Action.htm\u0000133","QueueRuleAction.Rule Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Rule.htm\u0000138","QueueStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Action.htm\u0000131","QueueStatusAction.Member Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Member.htm\u0000128","QueueStatusAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Queue.htm\u0000128","RedirectAction.Action Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Action.htm\u0000131","RedirectAction.Channel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Channel.htm\u0000138","RedirectAction.Context Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Context.htm\u0000128","RedirectAction.Exten Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Exten.htm\u0000128","RedirectAction.ExtraChannel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_ExtraChannel.htm\u0000133","RedirectAction.Priority Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Priority.htm\u0000122","SetCDRUserFieldAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Action.htm\u0000131","SetCDRUserFieldAction.Append Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Append.htm\u0000146","SetCDRUserFieldAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Channel.htm\u0000142","SetCDRUserFieldAction.UserField Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_UserField.htm\u0000141","SetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Action.htm\u0000131","SetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Channel.htm\u0000130","SetVarAction.Value Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Value.htm\u0000129","SetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Variable.htm\u0000132","SIPPeersAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPPeersAction_Action.htm\u0000133","SIPShowPeerAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Action.htm\u0000133","SIPShowPeerAction.Peer Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Peer.htm\u0000137","StatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_StatusAction_Action.htm\u0000131","StopMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Action.htm\u0000131","StopMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Channel.htm\u0000138","UpdateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Action.htm\u0000124","UpdateConfigAction.Actions Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Actions.htm\u0000207","UpdateConfigAction.DstFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_DstFileName.htm\u0000128","UpdateConfigAction.Reload Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Reload.htm\u0000155","UpdateConfigAction.SrcFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_SrcFileName.htm\u0000128","ZapDialOffhookAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Action.htm\u0000131","ZapDialOffhookAction.Number Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Number.htm\u0000134","ZapDialOffhookAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_ZapChannel.htm\u0000130","ZapDNDOffAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_Action.htm\u0000131","ZapDNDOffAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_ZapChannel.htm\u0000135","ZapDNDOnAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_Action.htm\u0000131","ZapDNDOnAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_ZapChannel.htm\u0000135","ZapHangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_Action.htm\u0000131","ZapHangupAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_ZapChannel.htm\u0000132","ZapShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapShowChannelsAction_Action.htm\u0000131","ZapTransferAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_Action.htm\u0000131","ZapTransferAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_ZapChannel.htm\u0000132","EventTimeoutException.PartialResult Property\u0000html/P_AsterNET_Manager_EventTimeoutException_PartialResult.htm\u0000190","AbstractAgentEvent.Member Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Member.htm\u0000131","AbstractAgentEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_MemberName.htm\u0000131","AbstractAgentEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Queue.htm\u0000130","AbstractAgentVariables.Variable Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentVariables_Variable.htm\u0000252","AbstractChannelEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_AccountCode.htm\u0000126","AbstractChannelEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerId.htm\u0000142","AbstractChannelEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdName.htm\u0000138","AbstractChannelEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdNum.htm\u0000142","AbstractChannelEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelState.htm\u0000126","AbstractChannelEvent.ChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelStateDesc.htm\u0000127","AbstractChannelEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ConnectedLineName.htm\u0000138","AbstractChannelEvent.Connectedlinenum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_Connectedlinenum.htm\u0000138","AbstractChannelEvent.State Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_State.htm\u0000138","AbstractConfbridgeEvent.Conference Property\u0000html/P_AsterNET_Manager_Event_AbstractConfbridgeEvent_Conference.htm\u0000138","AbstractMeetmeEvent.Meetme Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Meetme.htm\u0000128","AbstractMeetmeEvent.Usernum Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Usernum.htm\u0000132","AbstractParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerId.htm\u0000133","AbstractParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdName.htm\u0000133","AbstractParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdNum.htm\u0000133","AbstractParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_Exten.htm\u0000134","AbstractQueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm\u0000140","AbstractQueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Queue.htm\u0000129","AgentCallbackLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_Agent.htm\u0000133","AgentCallbackLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Agent.htm\u0000142","AgentCallbackLogoffEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginTime.htm\u0000138","AgentCallbackLogoffEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Reason.htm\u0000174","AgentCalledEvent.AgentCalled Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentCalled.htm\u0000138","AgentCalledEvent.AgentName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentName.htm\u0000138","AgentCalledEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerId.htm\u0000138","AgentCalledEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdName.htm\u0000133","AgentCalledEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdNum.htm\u0000133","AgentCalledEvent.ChannelCalling Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_ChannelCalling.htm\u0000138","AgentCalledEvent.Context Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Context.htm\u0000138","AgentCalledEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_DestinationChannel.htm\u0000138","AgentCalledEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Extension.htm\u0000138","AgentCalledEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Priority.htm\u0000138","AgentCalledEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Queue.htm\u0000138","AgentCompleteEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_HoldTime.htm\u0000131","AgentCompleteEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_Reason.htm\u0000134","AgentCompleteEvent.TalkTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_TalkTime.htm\u0000132","AgentConnectEvent.BridgedChannel Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_BridgedChannel.htm\u0000127","AgentConnectEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_HoldTime.htm\u0000131","AgentConnectEvent.RingTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_RingTime.htm\u0000131","AgentLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_Agent.htm\u0000133","AgentLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_LoginChan.htm\u0000138","AgentLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_Agent.htm\u0000133","AgentLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_LoginTime.htm\u0000138","AgentsEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Agent.htm\u0000127","AgentsEvent.LoggedInChan Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInChan.htm\u0000146","AgentsEvent.LoggedInTime Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInTime.htm\u0000145","AgentsEvent.Name Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Name.htm\u0000130","AgentsEvent.Status Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Status.htm\u0000179","AgentsEvent.TalkingTo Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_TalkingTo.htm\u0000148","AGIExecEvent.Command Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Command.htm\u0000138","AGIExecEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_CommandId.htm\u0000135","AGIExecEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Result.htm\u0000138","AGIExecEvent.ResultCode Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_ResultCode.htm\u0000132","AGIExecEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_SubEvent.htm\u0000138","AlarmEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_AlarmEvent_Alarm.htm\u0000146","AsyncAGIEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_CommandId.htm\u0000138","AsyncAGIEvent.Env Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Env.htm\u0000138","AsyncAGIEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Result.htm\u0000138","AsyncAGIEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_SubEvent.htm\u0000138","AttendedTransferEvent.DestBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestBridgeUniqueId.htm\u0000138","AttendedTransferEvent.DestType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestType.htm\u0000138","AttendedTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_IsExternal.htm\u0000132","AttendedTransferEvent.OrigBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeCreator.htm\u0000138","AttendedTransferEvent.OrigBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeName.htm\u0000138","AttendedTransferEvent.OrigBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeNumChannels.htm\u0000138","AttendedTransferEvent.OrigBridgetechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgetechnology.htm\u0000138","AttendedTransferEvent.OrigBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeType.htm\u0000138","AttendedTransferEvent.OrigBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeUniqueId.htm\u0000138","AttendedTransferEvent.OrigTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererAccountCode.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridName.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.OrigTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannel.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelState.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.OrigTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererContext.htm\u0000138","AttendedTransferEvent.OrigTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererLanguage.htm\u0000138","AttendedTransferEvent.OrigTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererPriority.htm\u0000138","AttendedTransferEvent.OrigTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererUniqueId.htm\u0000138","AttendedTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_Result.htm\u0000132","AttendedTransferEvent.SecondBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeCreator.htm\u0000138","AttendedTransferEvent.SecondBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeName.htm\u0000138","AttendedTransferEvent.SecondBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeNumChannels.htm\u0000138","AttendedTransferEvent.SecondBridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeTechnology.htm\u0000138","AttendedTransferEvent.SecondBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeType.htm\u0000138","AttendedTransferEvent.SecondBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeUniqueId.htm\u0000138","AttendedTransferEvent.SecondTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererAccountCode.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridName.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.SecondTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannel.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelState.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.SecondTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererContext.htm\u0000138","AttendedTransferEvent.SecondTransfererExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererExten.htm\u0000138","AttendedTransferEvent.SecondTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererLanguage.htm\u0000138","AttendedTransferEvent.SecondTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererPriority.htm\u0000138","AttendedTransferEvent.SecondTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererUniqueId.htm\u0000138","AttendedTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeAccountCode.htm\u0000138","AttendedTransferEvent.TransfereeCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridName.htm\u0000138","AttendedTransferEvent.TransfereeCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridNum.htm\u0000138","AttendedTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannel.htm\u0000138","AttendedTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelState.htm\u0000138","AttendedTransferEvent.TransfereeChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineName.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeContext.htm\u0000138","AttendedTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeExten.htm\u0000138","AttendedTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeLanguage.htm\u0000138","AttendedTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereePriority.htm\u0000138","AttendedTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeUniqueId.htm\u0000138","AttendedTransferEvent.TransferTargetAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetAccountCode.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridName.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridNum.htm\u0000138","AttendedTransferEvent.TransferTargetChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannel.htm\u0000138","AttendedTransferEvent.TransferTargetChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelState.htm\u0000138","AttendedTransferEvent.TransferTargetChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineName.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransferTargetContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetContext.htm\u0000138","AttendedTransferEvent.TransferTargetLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetLanguage.htm\u0000138","AttendedTransferEvent.TransferTargetPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetPriority.htm\u0000138","AttendedTransferEvent.TransferTargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetUniqueId.htm\u0000138","BlindTransferEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeCreator.htm\u0000138","BlindTransferEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeName.htm\u0000138","BlindTransferEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeNumChannels.htm\u0000138","BlindTransferEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeTechnology.htm\u0000138","BlindTransferEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeType.htm\u0000138","BlindTransferEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeUniqueId.htm\u0000138","BlindTransferEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Context.htm\u0000138","BlindTransferEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Extension.htm\u0000138","BlindTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_IsExternal.htm\u0000138","BlindTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Result.htm\u0000132","BlindTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeAccountCode.htm\u0000138","BlindTransferEvent.TransfereeCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdName.htm\u0000138","BlindTransferEvent.TransfereeCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdNum.htm\u0000138","BlindTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannel.htm\u0000138","BlindTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelState.htm\u0000138","BlindTransferEvent.TransfereeChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelStateDesc.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineName.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeContext.htm\u0000138","BlindTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeExten.htm\u0000138","BlindTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeLanguage.htm\u0000138","BlindTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereePriority.htm\u0000138","BlindTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeUniqueId.htm\u0000138","BlindTransferEvent.TransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererAccountCode.htm\u0000138","BlindTransferEvent.TransfererCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdName.htm\u0000138","BlindTransferEvent.TransfererCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdNum.htm\u0000138","BlindTransferEvent.TransfererChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannel.htm\u0000138","BlindTransferEvent.TransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelState.htm\u0000138","BlindTransferEvent.TransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelStatedesc.htm\u0000138","BlindTransferEvent.TransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineName.htm\u0000138","BlindTransferEvent.TransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfererContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererContext.htm\u0000138","BlindTransferEvent.TransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererLanguage.htm\u0000138","BlindTransferEvent.TransfererPriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererPriority.htm\u0000138","BlindTransferEvent.TransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererUniqueId.htm\u0000138","BridgeActivityEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_AccountCode.htm\u0000138","BridgeActivityEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeCreator.htm\u0000138","BridgeActivityEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeName.htm\u0000138","BridgeActivityEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeNumChannels.htm\u0000138","BridgeActivityEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeTechnology.htm\u0000138","BridgeActivityEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeType.htm\u0000138","BridgeActivityEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeUniqueId.htm\u0000138","BridgeActivityEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdName.htm\u0000138","BridgeActivityEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdNum.htm\u0000138","BridgeActivityEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelState.htm\u0000138","BridgeActivityEvent.ChannelStatedDesc Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelStatedDesc.htm\u0000138","BridgeActivityEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineName.htm\u0000138","BridgeActivityEvent.ConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineNum.htm\u0000138","BridgeActivityEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Context.htm\u0000138","BridgeActivityEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Exten.htm\u0000138","BridgeActivityEvent.Language Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Language.htm\u0000138","BridgeActivityEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Priority.htm\u0000138","BridgeEvent.BridgeState Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeState.htm\u0000139","BridgeEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeType.htm\u0000139","BridgeEvent.CallerId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId1.htm\u0000138","BridgeEvent.CallerId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId2.htm\u0000138","BridgeEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel1.htm\u0000138","BridgeEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel2.htm\u0000138","BridgeEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Reason.htm\u0000138","BridgeEvent.Response Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Response.htm\u0000138","BridgeEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId1.htm\u0000138","BridgeEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId2.htm\u0000138","BridgeStateEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeCreator.htm\u0000138","BridgeStateEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeName.htm\u0000138","BridgeStateEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeNumChannels.htm\u0000132","BridgeStateEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeTechnology.htm\u0000138","BridgeStateEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeType.htm\u0000138","BridgeStateEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeUniqueId.htm\u0000138","CdrEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AccountCode.htm\u0000138","CdrEvent.AmaFlags Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AmaFlags.htm\u0000138","CdrEvent.AnswerTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AnswerTime.htm\u0000138","CdrEvent.BillableSeconds Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_BillableSeconds.htm\u0000135","CdrEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_CallerId.htm\u0000138","CdrEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Destination.htm\u0000138","CdrEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationChannel.htm\u0000138","CdrEvent.DestinationContext Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationContext.htm\u0000138","CdrEvent.Disposition Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Disposition.htm\u0000138","CdrEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Duration.htm\u0000135","CdrEvent.EndTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_EndTime.htm\u0000138","CdrEvent.LastApplication Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastApplication.htm\u0000138","CdrEvent.LastData Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastData.htm\u0000138","CdrEvent.Src Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Src.htm\u0000138","CdrEvent.StartTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_StartTime.htm\u0000138","CdrEvent.UserField Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_UserField.htm\u0000138","ChannelReloadEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ChannelType.htm\u0000131","ChannelReloadEvent.PeerCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_PeerCount.htm\u0000132","ChannelReloadEvent.RegistryCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_RegistryCount.htm\u0000132","ChannelReloadEvent.ReloadReason Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ReloadReason.htm\u0000130","ChannelReloadEvent.UserCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_UserCount.htm\u0000132","ChannelUpdateEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_ChannelType.htm\u0000137","ChannelUpdateEvent.GTalkSID Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_GTalkSID.htm\u0000138","ChannelUpdateEvent.IAX2CallnoLocal Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoLocal.htm\u0000138","ChannelUpdateEvent.IAX2CallnoRemote Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoRemote.htm\u0000138","ChannelUpdateEvent.IAX2Peer Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2Peer.htm\u0000138","ChannelUpdateEvent.PeerName Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_PeerName.htm\u0000138","ChannelUpdateEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipCallId.htm\u0000138","ChannelUpdateEvent.SipFullContact Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipFullContact.htm\u0000138","ConfbridgeJoinEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDname.htm\u0000138","ConfbridgeJoinEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDnum.htm\u0000138","ConfbridgeLeaveEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDname.htm\u0000138","ConfbridgeLeaveEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDnum.htm\u0000138","ConfbridgeListEvent.Admin Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_Admin.htm\u0000138","ConfbridgeListEvent.CallerIDName Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDName.htm\u0000138","ConfbridgeListEvent.CallerIDNum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDNum.htm\u0000138","ConfbridgeListEvent.MarkedUser Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_MarkedUser.htm\u0000138","ConfbridgeListRoomsEvent.Locked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Locked.htm\u0000138","ConfbridgeListRoomsEvent.Marked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Marked.htm\u0000132","ConfbridgeListRoomsEvent.Parties Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Parties.htm\u0000132","ConfbridgeTalkingEvent.TalkingStatus Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeTalkingEvent_TalkingStatus.htm\u0000138","ConnectEvent.ProtocolIdentifier Property\u0000html/P_AsterNET_Manager_Event_ConnectEvent_ProtocolIdentifier.htm\u0000130","ConnectionStateEvent.Reconnect Property\u0000html/P_AsterNET_Manager_Event_ConnectionStateEvent_Reconnect.htm\u0000121","DBGetResponseEvent.Family Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Family.htm\u0000134","DBGetResponseEvent.Key Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Key.htm\u0000134","DBGetResponseEvent.Val Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Val.htm\u0000134","DialEndEvent.Forward Property\u0000html/P_AsterNET_Manager_Event_DialEndEvent_Forward.htm\u0000138","DialEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerId.htm\u0000128","DialEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdName.htm\u0000129","DialEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdNum.htm\u0000129","DialEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Destination.htm\u0000131","DialEvent.DestUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DestUniqueId.htm\u0000132","DialEvent.DialStatus Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialStatus.htm\u0000138","DialEvent.DialString Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialString.htm\u0000138","DialEvent.Src Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Src.htm\u0000130","DialEvent.SrcUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SrcUniqueId.htm\u0000132","DialEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SubEvent.htm\u0000138","DNDStateEvent.State Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_State.htm\u0000148","DNDStateEvent.Status Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_Status.htm\u0000148","DTMFEvent.Begin Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Begin.htm\u0000132","DTMFEvent.Digit Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Digit.htm\u0000138","DTMFEvent.Direction Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Direction.htm\u0000138","DTMFEvent.End Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_End.htm\u0000132","ExtensionStatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Context.htm\u0000130","ExtensionStatusEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Exten.htm\u0000127","ExtensionStatusEvent.Hint Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Hint.htm\u0000128","ExtensionStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Status.htm\u0000124","FailedACLEvent.ACLName Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_ACLName.htm\u0000138","FailedACLEvent.LocalAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_LocalAddress.htm\u0000138","FailedACLEvent.RemoteAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_RemoteAddress.htm\u0000138","FaxReceivedEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_CallerId.htm\u0000138","FaxReceivedEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Exten.htm\u0000133","FaxReceivedEvent.Filename Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Filename.htm\u0000139","FaxReceivedEvent.LocalStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_LocalStationId.htm\u0000132","FaxReceivedEvent.PagesTransferred Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_PagesTransferred.htm\u0000124","FaxReceivedEvent.RemoteStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_RemoteStationId.htm\u0000132","FaxReceivedEvent.Resolution Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Resolution.htm\u0000126","FaxReceivedEvent.TransferRate Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_TransferRate.htm\u0000125","HangupEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_Cause.htm\u0000124","HangupEvent.CauseTxt Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_CauseTxt.htm\u0000132","HoldedCallEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel1.htm\u0000137","HoldedCallEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel2.htm\u0000136","HoldedCallEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId1.htm\u0000138","HoldedCallEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId2.htm\u0000137","HoldEvent.Status Property\u0000html/P_AsterNET_Manager_Event_HoldEvent_Status.htm\u0000138","JabberEvent.Account Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Account.htm\u0000138","JabberEvent.Packet Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Packet.htm\u0000138","JitterBufStatsEvent.LocalDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalDropped.htm\u0000132","JitterBufStatsEvent.LocalJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJBDelay.htm\u0000132","JitterBufStatsEvent.LocalJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJitter.htm\u0000132","JitterBufStatsEvent.LocalLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalLossPercent.htm\u0000132","JitterBufStatsEvent.Localooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Localooo.htm\u0000132","JitterBufStatsEvent.LocalReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalReceived.htm\u0000132","JitterBufStatsEvent.LocalTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalTotalLost.htm\u0000132","JitterBufStatsEvent.Owner Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Owner.htm\u0000138","JitterBufStatsEvent.Ping Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Ping.htm\u0000132","JitterBufStatsEvent.RemoteDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteDropped.htm\u0000132","JitterBufStatsEvent.RemoteJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJBDelay.htm\u0000132","JitterBufStatsEvent.RemoteJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJitter.htm\u0000132","JitterBufStatsEvent.RemoteLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteLossPercent.htm\u0000132","JitterBufStatsEvent.Remoteooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Remoteooo.htm\u0000132","JitterBufStatsEvent.RemoteReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteReceived.htm\u0000132","JitterBufStatsEvent.RemoteTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteTotalLost.htm\u0000132","JoinEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerId.htm\u0000152","JoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerIdName.htm\u0000152","JoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_Position.htm\u0000128","LogChannelEvent.Enabled Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Enabled.htm\u0000126","LogChannelEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Reason.htm\u0000133","LogChannelEvent.ReasonCode Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_ReasonCode.htm\u0000109","ManagerEvent.Attributes Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Attributes.htm\u0000223","ManagerEvent.Channel Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Channel.htm\u0000130","ManagerEvent.DateReceived Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_DateReceived.htm\u0000153","ManagerEvent.Privilege Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Privilege.htm\u0000172","ManagerEvent.Server Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Server.htm\u0000182","ManagerEvent.Source Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Source.htm\u0000130","ManagerEvent.Timestamp Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Timestamp.htm\u0000159","ManagerEvent.UniqueId Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_UniqueId.htm\u0000131","MeetmeJoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdName.htm\u0000138","MeetmeJoinEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdName.htm\u0000138","MeetmeLeaveEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_Duration.htm\u0000135","MeetmeMuteEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeMuteEvent_Status.htm\u0000132","MeetmeTalkingEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkingEvent_Status.htm\u0000132","MeetmeTalkRequestEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkRequestEvent_Status.htm\u0000132","MessageWaitingEvent.Mailbox Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Mailbox.htm\u0000152","MessageWaitingEvent.New Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_New.htm\u0000127","MessageWaitingEvent.Old Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Old.htm\u0000127","MessageWaitingEvent.Waiting Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Waiting.htm\u0000127","MobileStatusEvent.Device Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Device.htm\u0000138","MobileStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Status.htm\u0000138","ModuleLoadReportEvent.ModuleCount Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleCount.htm\u0000132","ModuleLoadReportEvent.ModuleLoadStatus Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleLoadStatus.htm\u0000138","ModuleLoadReportEvent.ModuleSelection Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleSelection.htm\u0000138","NewAccountCodeEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_AccountCode.htm\u0000138","NewAccountCodeEvent.OldAccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_OldAccountCode.htm\u0000138","NewCallerIdEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerId.htm\u0000129","NewCallerIdEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdName.htm\u0000138","NewCallerIdEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdNum.htm\u0000130","NewCallerIdEvent.CidCallingPres Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPres.htm\u0000140","NewCallerIdEvent.CidCallingPresNumeric Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPresNumeric.htm\u0000107","NewExtenEvent.AppData Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppData.htm\u0000146","NewExtenEvent.AppdEvent Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppdEvent.htm\u0000138","NewExtenEvent.Application Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Application.htm\u0000133","NewExtenEvent.Context Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Context.htm\u0000134","NewExtenEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Extension.htm\u0000127","NewExtenEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Priority.htm\u0000121","OriginateResponseEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerId.htm\u0000138","OriginateResponseEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdName.htm\u0000138","OriginateResponseEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdNum.htm\u0000138","OriginateResponseEvent.Context Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Context.htm\u0000138","OriginateResponseEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Exten.htm\u0000138","OriginateResponseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Reason.htm\u0000132","OriginateResponseEvent.Response Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Response.htm\u0000138","ParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerId.htm\u0000133","ParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdName.htm\u0000133","ParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdNum.htm\u0000133","ParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Exten.htm\u0000132","ParkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_From.htm\u0000134","ParkedCallEvent.Timeout Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Timeout.htm\u0000141","PeerEntryEvent.Acl Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Acl.htm\u0000132","PeerEntryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChannelType.htm\u0000131","PeerEntryEvent.ChanObjectType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChanObjectType.htm\u0000136","PeerEntryEvent.Dynamic Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Dynamic.htm\u0000132","PeerEntryEvent.IpAddress Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpAddress.htm\u0000131","PeerEntryEvent.IpPort Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpPort.htm\u0000132","PeerEntryEvent.NatSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_NatSupport.htm\u0000132","PeerEntryEvent.ObjectName Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ObjectName.htm\u0000138","PeerEntryEvent.RealtimeDevice Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_RealtimeDevice.htm\u0000132","PeerEntryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Status.htm\u0000163","PeerEntryEvent.TextSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_TextSupport.htm\u0000132","PeerEntryEvent.VideoSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_VideoSupport.htm\u0000132","PeerlistCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_PeerlistCompleteEvent_ListItems.htm\u0000127","PeerStatusEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Cause.htm\u0000190","PeerStatusEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_ChannelType.htm\u0000130","PeerStatusEvent.Peer Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Peer.htm\u0000179","PeerStatusEvent.PeerStatus Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_PeerStatus.htm\u0000147","PeerStatusEvent.Time Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Time.htm\u0000163","PRIEvent.DChannel Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_DChannel.htm\u0000138","PRIEvent.PriEvent Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEvent.htm\u0000138","PRIEvent.PriEventCode Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEventCode.htm\u0000138","PRIEvent.Span Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_Span.htm\u0000138","QueueCallerAbandonEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_HoldTime.htm\u0000132","QueueCallerAbandonEvent.OriginalPosition Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_OriginalPosition.htm\u0000132","QueueCallerAbandonEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Position.htm\u0000132","QueueCallerAbandonEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Queue.htm\u0000138","QueueCallerJoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerJoinEvent_Position.htm\u0000138","QueueCallerLeaveEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerLeaveEvent_Position.htm\u0000138","QueueEntryEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerId.htm\u0000133","QueueEntryEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerIdName.htm\u0000132","QueueEntryEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Position.htm\u0000127","QueueEntryEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Queue.htm\u0000134","QueueEntryEvent.Wait Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Wait.htm\u0000133","QueueEvent.Count Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Count.htm\u0000141","QueueEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Queue.htm\u0000130","QueueMemberAddedEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_CallsTaken.htm\u0000127","QueueMemberAddedEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_LastCall.htm\u0000143","QueueMemberAddedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_MemberName.htm\u0000140","QueueMemberAddedEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Membership.htm\u0000162","QueueMemberAddedEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Paused.htm\u0000143","QueueMemberAddedEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Penalty.htm\u0000137","QueueMemberAddedEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Status.htm\u0000168","QueueMemberEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_CallsTaken.htm\u0000127","QueueMemberEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_LastCall.htm\u0000143","QueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Location.htm\u0000141","QueueMemberEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_MemberName.htm\u0000131","QueueMemberEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Membership.htm\u0000185","QueueMemberEvent.Name Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Name.htm\u0000131","QueueMemberEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Paused.htm\u0000132","QueueMemberEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Penalty.htm\u0000137","QueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Queue.htm\u0000130","QueueMemberEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Status.htm\u0000173","QueueMemberPausedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_MemberName.htm\u0000140","QueueMemberPausedEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_Paused.htm\u0000142","QueueMemberPausedEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_Reason.htm\u0000138","QueueMemberPauseEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_InCall.htm\u0000144","QueueMemberPauseEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_MemberName.htm\u0000129","QueueMemberPauseEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_Paused.htm\u0000142","QueueMemberPauseEvent.PausedReason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_PausedReason.htm\u0000139","QueueMemberPauseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_Reason.htm\u0000129","QueueMemberPenaltyEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPenaltyEvent_Penalty.htm\u0000125","QueueMemberRemovedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberRemovedEvent_MemberName.htm\u0000140","QueueParamsEvent.Abandoned Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Abandoned.htm\u0000130","QueueParamsEvent.Calls Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Calls.htm\u0000138","QueueParamsEvent.Completed Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Completed.htm\u0000130","QueueParamsEvent.Holdtime Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Holdtime.htm\u0000138","QueueParamsEvent.Max Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Max.htm\u0000152","QueueParamsEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Queue.htm\u0000130","QueueParamsEvent.ServiceLevel Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevel.htm\u0000139","QueueParamsEvent.ServiceLevelPerf Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevelPerf.htm\u0000152","QueueParamsEvent.Strategy Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Strategy.htm\u0000127","QueueParamsEvent.Weight Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Weight.htm\u0000165","RegistryEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Cause.htm\u0000149","RegistryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_ChannelType.htm\u0000131","RegistryEvent.Domain Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Domain.htm\u0000153","RegistryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Status.htm\u0000190","RegistryEvent.User Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_User.htm\u0000115","RegistryEvent.Username Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Username.htm\u0000155","ReloadEvent.Message Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Message.htm\u0000148","ReloadEvent.Module Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Module.htm\u0000135","ReloadEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Status.htm\u0000126","RenameEvent.NewName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_NewName.htm\u0000131","RenameEvent.OldName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_OldName.htm\u0000131","ResponseEvent.ActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_ActionId.htm\u0000135","ResponseEvent.InternalActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_InternalActionId.htm\u0000136","RTCPReceivedEvent.DLSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_DLSR.htm\u0000138","RTCPReceivedEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_FractionLost.htm\u0000135","RTCPReceivedEvent.From Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_From.htm\u0000138","RTCPReceivedEvent.HighestSequence Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_HighestSequence.htm\u0000135","RTCPReceivedEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_IAJitter.htm\u0000135","RTCPReceivedEvent.LastSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_LastSR.htm\u0000138","RTCPReceivedEvent.PacketsLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PacketsLost.htm\u0000132","RTCPReceivedEvent.PT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PT.htm\u0000138","RTCPReceivedEvent.ReceptionReports Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_ReceptionReports.htm\u0000132","RTCPReceivedEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_RTT.htm\u0000138","RTCPReceivedEvent.SenderSSRC Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SenderSSRC.htm\u0000135","RTCPReceivedEvent.SequenceNumberCycles Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SequenceNumberCycles.htm\u0000132","RTCPSentEvent.CumulativeLoss Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_CumulativeLoss.htm\u0000135","RTCPSentEvent.DlSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_DlSr.htm\u0000138","RTCPSentEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_FractionLost.htm\u0000135","RTCPSentEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_IAJitter.htm\u0000132","RTCPSentEvent.OursSrc Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_OursSrc.htm\u0000135","RTCPSentEvent.ReportBlock Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_ReportBlock.htm\u0000135","RTCPSentEvent.SentNtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentNtp.htm\u0000138","RTCPSentEvent.SentOctets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentOctets.htm\u0000135","RTCPSentEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentPackets.htm\u0000135","RTCPSentEvent.SentRtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentRtp.htm\u0000135","RTCPSentEvent.TheirLastSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_TheirLastSr.htm\u0000135","RTCPSentEvent.To Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_To.htm\u0000138","RTPReceiverStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Jitter.htm\u0000132","RTPReceiverStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_LostPackets.htm\u0000135","RTPReceiverStatEvent.ReceivedPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_ReceivedPackets.htm\u0000135","RTPReceiverStatEvent.RRCount Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_RRCount.htm\u0000135","RTPReceiverStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_SSRC.htm\u0000135","RTPReceiverStatEvent.Transit Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Transit.htm\u0000132","RTPSenderStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_Jitter.htm\u0000135","RTPSenderStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_LostPackets.htm\u0000135","RTPSenderStatEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_RTT.htm\u0000132","RTPSenderStatEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SentPackets.htm\u0000135","RTPSenderStatEvent.SRCount Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SRCount.htm\u0000135","RTPSenderStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SSRC.htm\u0000135","ShowDialPlanCompleteEvent.EventList Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_EventList.htm\u0000138","ShowDialPlanCompleteEvent.ListContexts Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListContexts.htm\u0000132","ShowDialPlanCompleteEvent.ListExtensions Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListExtensions.htm\u0000132","ShowDialPlanCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListItems.htm\u0000132","ShowDialPlanCompleteEvent.ListPriorities Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListPriorities.htm\u0000132","ShutdownEvent.File Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_File.htm\u0000138","ShutdownEvent.Func Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Func.htm\u0000138","ShutdownEvent.Line Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Line.htm\u0000132","ShutdownEvent.Restart Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Restart.htm\u0000133","ShutdownEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_SequenceNumber.htm\u0000132","ShutdownEvent.Shutdown Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Shutdown.htm\u0000160","StatusCompleteEvent.Items Property\u0000html/P_AsterNET_Manager_Event_StatusCompleteEvent_Items.htm\u0000132","StatusEvent.Account Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Account.htm\u0000138","StatusEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerId.htm\u0000138","StatusEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdName.htm\u0000140","StatusEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdNum.htm\u0000140","StatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Context.htm\u0000138","StatusEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Extension.htm\u0000138","StatusEvent.Link Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Link.htm\u0000143","StatusEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Priority.htm\u0000132","StatusEvent.Seconds Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Seconds.htm\u0000130","StatusEvent.State Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_State.htm\u0000138","TransferEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_SipCallId.htm\u0000138","TransferEvent.TargetChannel Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetChannel.htm\u0000138","TransferEvent.TargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetUniqueId.htm\u0000138","TransferEvent.Transfer2Parking Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_Transfer2Parking.htm\u0000132","TransferEvent.TransferContext Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferContext.htm\u0000138","TransferEvent.TransferExten Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferExten.htm\u0000138","TransferEvent.TransferMethod Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferMethod.htm\u0000124","TransferEvent.TransferType Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferType.htm\u0000125","UnparkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_UnparkedCallEvent_From.htm\u0000134","UserEvent.UserEventName Property\u0000html/P_AsterNET_Manager_Event_UserEvent_UserEventName.htm\u0000138","VarSetEvent.File Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_File.htm\u0000138","VarSetEvent.Func Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Func.htm\u0000138","VarSetEvent.Line Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Line.htm\u0000132","VarSetEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_SequenceNumber.htm\u0000132","VarSetEvent.Value Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Value.htm\u0000128","VarSetEvent.Variable Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Variable.htm\u0000129","ZapShowChannelsEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Alarm.htm\u0000149","ZapShowChannelsEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Context.htm\u0000136","ZapShowChannelsEvent.Signalling Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Signalling.htm\u0000138","IResponseHandler.Action Property\u0000html/P_AsterNET_Manager_IResponseHandler_Action.htm\u0000113","IResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_IResponseHandler_Hash.htm\u0000124","ManagerConnection.AsteriskVersion Property\u0000html/P_AsterNET_Manager_ManagerConnection_AsteriskVersion.htm\u0000114","ManagerConnection.DefaultEventTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultEventTimeout.htm\u0000141","ManagerConnection.DefaultResponseTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultResponseTimeout.htm\u0000136","ManagerConnection.FireAllEvents Property\u0000html/P_AsterNET_Manager_ManagerConnection_FireAllEvents.htm\u0000147","ManagerConnection.Hostname Property\u0000html/P_AsterNET_Manager_ManagerConnection_Hostname.htm\u0000135","ManagerConnection.KeepAlive Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAlive.htm\u0000148","ManagerConnection.KeepAliveAfterAuthenticationFailure Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAliveAfterAuthenticationFailure.htm\u0000137","ManagerConnection.Password Property\u0000html/P_AsterNET_Manager_ManagerConnection_Password.htm\u0000143","ManagerConnection.PingInterval Property\u0000html/P_AsterNET_Manager_ManagerConnection_PingInterval.htm\u0000134","ManagerConnection.Port Property\u0000html/P_AsterNET_Manager_ManagerConnection_Port.htm\u0000141","ManagerConnection.ReconnectIntervalFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalFast.htm\u0000121","ManagerConnection.ReconnectIntervalMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalMax.htm\u0000121","ManagerConnection.ReconnectRetryFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryFast.htm\u0000120","ManagerConnection.ReconnectRetryMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryMax.htm\u0000120","ManagerConnection.SleepTime Property\u0000html/P_AsterNET_Manager_ManagerConnection_SleepTime.htm\u0000169","ManagerConnection.SocketEncoding Property\u0000html/P_AsterNET_Manager_ManagerConnection_SocketEncoding.htm\u0000126","ManagerConnection.Username Property\u0000html/P_AsterNET_Manager_ManagerConnection_Username.htm\u0000143","ManagerConnection.Version Property\u0000html/P_AsterNET_Manager_ManagerConnection_Version.htm\u0000118","Originate.Account Property\u0000html/P_AsterNET_Manager_Originate_Account.htm\u0000153","Originate.Application Property\u0000html/P_AsterNET_Manager_Originate_Application.htm\u0000131","Originate.CallerId Property\u0000html/P_AsterNET_Manager_Originate_CallerId.htm\u0000132","Originate.Channel Property\u0000html/P_AsterNET_Manager_Originate_Channel.htm\u0000139","Originate.Context Property\u0000html/P_AsterNET_Manager_Originate_Context.htm\u0000150","Originate.Data Property\u0000html/P_AsterNET_Manager_Originate_Data.htm\u0000130","Originate.Exten Property\u0000html/P_AsterNET_Manager_Originate_Exten.htm\u0000144","Originate.Priority Property\u0000html/P_AsterNET_Manager_Originate_Priority.htm\u0000141","Originate.Timeout Property\u0000html/P_AsterNET_Manager_Originate_Timeout.htm\u0000166","ResponseEventHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Action.htm\u0000131","ResponseEventHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Hash.htm\u0000147","ResponseEventHandler.ResponseEvents Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_ResponseEvents.htm\u0000118","ResponseEvents.Complete Property\u0000html/P_AsterNET_Manager_ResponseEvents_Complete.htm\u0000122","ResponseEvents.Events Property\u0000html/P_AsterNET_Manager_ResponseEvents_Events.htm\u0000145","ResponseEvents.Response Property\u0000html/P_AsterNET_Manager_ResponseEvents_Response.htm\u0000135","ResponseHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseHandler_Action.htm\u0000131","ResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseHandler_Hash.htm\u0000147","ResponseHandler.Response Property\u0000html/P_AsterNET_Manager_ResponseHandler_Response.htm\u0000118","ChallengeResponse.Challenge Property\u0000html/P_AsterNET_Manager_Response_ChallengeResponse_Challenge.htm\u0000144","CommandResponse.Result Property\u0000html/P_AsterNET_Manager_Response_CommandResponse_Result.htm\u0000169","ExtensionStateResponse.Context Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Context.htm\u0000138","ExtensionStateResponse.Exten Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Exten.htm\u0000138","ExtensionStateResponse.Hint Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Hint.htm\u0000138","ExtensionStateResponse.Status Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Status.htm\u0000132","GetConfigResponse.Categories Property\u0000html/P_AsterNET_Manager_Response_GetConfigResponse_Categories.htm\u0000160","MailboxCountResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_Mailbox.htm\u0000130","MailboxCountResponse.NewMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_NewMessages.htm\u0000127","MailboxCountResponse.OldMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_OldMessages.htm\u0000126","MailboxStatusResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Mailbox.htm\u0000137","MailboxStatusResponse.Waiting Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Waiting.htm\u0000134","ManagerResponse.ActionId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_ActionId.htm\u0000139","ManagerResponse.Attributes Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Attributes.htm\u0000200","ManagerResponse.DateReceived Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_DateReceived.htm\u0000131","ManagerResponse.Message Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Message.htm\u0000142","ManagerResponse.Privilege Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Privilege.htm\u0000172","ManagerResponse.Response Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Response.htm\u0000156","ManagerResponse.Server Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Server.htm\u0000182","ManagerResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_UniqueId.htm\u0000153","OriginateResponse.Channel Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Channel.htm\u0000138","OriginateResponse.ChannelName Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_ChannelName.htm\u0000138","OriginateResponse.EndTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_EndTime.htm\u0000132","OriginateResponse.IsSuccess Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_IsSuccess.htm\u0000117","OriginateResponse.Reason Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Reason.htm\u0000132","OriginateResponse.Response Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Response.htm\u0000138","OriginateResponse.StartTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_StartTime.htm\u0000132","OriginateResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_UniqueId.htm\u0000138","MD5Support.DigestData Property\u0000html/P_AsterNET_Util_MD5Support_DigestData.htm\u0000142","ThreadClass.IsAlive Property\u0000html/P_AsterNET_Util_ThreadClass_IsAlive.htm\u0000110","ThreadClass.IsBackground Property\u0000html/P_AsterNET_Util_ThreadClass_IsBackground.htm\u0000130","ThreadClass.Name Property\u0000html/P_AsterNET_Util_ThreadClass_Name.htm\u0000128","Common Class\u0000html/T_AsterNET_Common.htm\u0000180","AGIChannel Class\u0000html/T_AsterNET_FastAGI_AGIChannel.htm\u0000259","AGIConnectionHandler Class\u0000html/T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000269","AGIException Class\u0000html/T_AsterNET_FastAGI_AGIException.htm\u0000542","AGIHangupException Class\u0000html/T_AsterNET_FastAGI_AGIHangupException.htm\u0000512","AGINetworkException Class\u0000html/T_AsterNET_FastAGI_AGINetworkException.htm\u0000513","AGIReader Class\u0000html/T_AsterNET_FastAGI_AGIReader.htm\u0000234","AGIReply Class\u0000html/T_AsterNET_FastAGI_AGIReply.htm\u0000441","AGIReplyStatuses Enumeration\u0000html/T_AsterNET_FastAGI_AGIReplyStatuses.htm\u0000197","AGIRequest Class\u0000html/T_AsterNET_FastAGI_AGIRequest.htm\u0000401","AGIScript Class\u0000html/T_AsterNET_FastAGI_AGIScript.htm\u00001763","AGIWriter Class\u0000html/T_AsterNET_FastAGI_AGIWriter.htm\u0000226","AsteriskFastAGI Class\u0000html/T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000458","AGICommand Class\u0000html/T_AsterNET_FastAGI_Command_AGICommand.htm\u0000399","AnswerCommand Class\u0000html/T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000258","ChannelStatusCommand Class\u0000html/T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000276","ControlStreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000599","DatabaseDelCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000310","DatabaseDelTreeCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000298","DatabaseGetCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000301","DatabasePutCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000299","ExecCommand Class\u0000html/T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000302","GetDataCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000423","GetFullVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000360","GetOptionCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000418","GetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000311","HangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000293","NoopCommand Class\u0000html/T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000243","ReceiveCharCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000347","ReceiveTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000341","RecordFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000455","SayAlphaCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000330","SayDateTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000483","SayDigitsCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000330","SayNumberCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000328","SayPhoneticCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000331","SayTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000363","SendImageCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000302","SendTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000295","SetAutoHangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000301","SetCallerIdCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000259","SetContextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000266","SetExtensionCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000266","SetMusicOffCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000254","SetMusicOnCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000297","SetPriorityCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000299","SetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000273","StreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000416","TDDModeCommand Class\u0000html/T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000333","VerboseCommand Class\u0000html/T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000276","WaitForDigitCommand Class\u0000html/T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000343","IMappingStrategy Interface\u0000html/T_AsterNET_FastAGI_IMappingStrategy.htm\u000095","InvalidCommandSyntaxException Class\u0000html/T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000542","InvalidOrUnknownCommandException Class\u0000html/T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000508","GeneralMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000296","ResourceMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000308","ScriptMapping Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000291","MappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategy.htm\u0000399","ServerSocket Class\u0000html/T_AsterNET_IO_ServerSocket.htm\u0000226","SocketConnection Class\u0000html/T_AsterNET_IO_SocketConnection.htm\u0000335","Logger Class\u0000html/T_AsterNET_Logger.htm\u0000315","Logger.MessageLevel Enumeration\u0000html/T_AsterNET_Logger_MessageLevel.htm\u000089","AbsoluteTimeoutAction Class\u0000html/T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000474","AgentCallbackLoginAction Class\u0000html/T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000590","AgentLogoffAction Class\u0000html/T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000411","AgentsAction Class\u0000html/T_AsterNET_Manager_Action_AgentsAction.htm\u0000393","AgiAction Class\u0000html/T_AsterNET_Manager_Action_AgiAction.htm\u0000357","AOCMessageAction Class\u0000html/T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000393","AtxferAction Class\u0000html/T_AsterNET_Manager_Action_AtxferAction.htm\u0000367","BridgeAction Class\u0000html/T_AsterNET_Manager_Action_BridgeAction.htm\u0000356","ChallengeAction Class\u0000html/T_AsterNET_Manager_Action_ChallengeAction.htm\u0000417","ChangeMonitorAction Class\u0000html/T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000426","CommandAction Class\u0000html/T_AsterNET_Manager_Action_CommandAction.htm\u0000393","ConfbridgeKickAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000355","ConfbridgeListAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000374","ConfbridgeListRoomsAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000357","ConfbridgeLockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000344","ConfbridgeMuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000355","ConfbridgeSetSingleVideoSrcAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000349","ConfbridgeStartRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000456","ConfbridgeStopRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000346","ConfbridgeUnlockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000344","ConfbridgeUnmuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000355","CoreSettingsAction Class\u0000html/T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000338","CoreShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000338","CoreStatusAction Class\u0000html/T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000338","CreateConfigAction Class\u0000html/T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000400","DBDelAction Class\u0000html/T_AsterNET_Manager_Action_DBDelAction.htm\u0000386","DBDelTreeAction Class\u0000html/T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000383","DBGetAction Class\u0000html/T_AsterNET_Manager_Action_DBGetAction.htm\u0000421","DBPutAction Class\u0000html/T_AsterNET_Manager_Action_DBPutAction.htm\u0000401","EventsAction Class\u0000html/T_AsterNET_Manager_Action_EventsAction.htm\u0000433","ExtensionStateAction Class\u0000html/T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000373","GetConfigAction Class\u0000html/T_AsterNET_Manager_Action_GetConfigAction.htm\u0000367","GetVarAction Class\u0000html/T_AsterNET_Manager_Action_GetVarAction.htm\u0000414","HangupAction Class\u0000html/T_AsterNET_Manager_Action_HangupAction.htm\u0000372","LoginAction Class\u0000html/T_AsterNET_Manager_Action_LoginAction.htm\u0000619","LogoffAction Class\u0000html/T_AsterNET_Manager_Action_LogoffAction.htm\u0000347","MailboxCountAction Class\u0000html/T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000425","MailboxStatusAction Class\u0000html/T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000456","ManagerAction Class\u0000html/T_AsterNET_Manager_Action_ManagerAction.htm\u0000558","ManagerActionEvent Class\u0000html/T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000467","ManagerActionResponse Class\u0000html/T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000406","MonitorAction Class\u0000html/T_AsterNET_Manager_Action_MonitorAction.htm\u0000541","OriginateAction Class\u0000html/T_AsterNET_Manager_Action_OriginateAction.htm\u0000940","ParkAction Class\u0000html/T_AsterNET_Manager_Action_ParkAction.htm\u0000421","ParkedCallsAction Class\u0000html/T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000389","PingAction Class\u0000html/T_AsterNET_Manager_Action_PingAction.htm\u0000361","ProxyAction Class\u0000html/T_AsterNET_Manager_Action_ProxyAction.htm\u0000362","QueueAddAction Class\u0000html/T_AsterNET_Manager_Action_QueueAddAction.htm\u0000559","QueueLogAction Class\u0000html/T_AsterNET_Manager_Action_QueueLogAction.htm\u0000358","QueuePauseAction Class\u0000html/T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000515","QueuePenaltyAction Class\u0000html/T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000356","QueueReloadAction Class\u0000html/T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000375","QueueRemoveAction Class\u0000html/T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000401","QueueResetAction Class\u0000html/T_AsterNET_Manager_Action_QueueResetAction.htm\u0000342","QueueRuleAction Class\u0000html/T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000350","QueueStatusAction Class\u0000html/T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000464","RedirectAction Class\u0000html/T_AsterNET_Manager_Action_RedirectAction.htm\u0000443","SetCDRUserFieldAction Class\u0000html/T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000507","SetVarAction Class\u0000html/T_AsterNET_Manager_Action_SetVarAction.htm\u0000453","SIPPeersAction Class\u0000html/T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000390","SIPShowPeerAction Class\u0000html/T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000413","StatusAction Class\u0000html/T_AsterNET_Manager_Action_StatusAction.htm\u0000396","StopMonitorAction Class\u0000html/T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000384","UpdateConfigAction Class\u0000html/T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000779","ZapDialOffhookAction Class\u0000html/T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000395","ZapDNDOffAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000390","ZapDNDOnAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000390","ZapHangupAction Class\u0000html/T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000386","ZapShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000394","ZapTransferAction Class\u0000html/T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000361","AgentCallbackLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLoginEventHandler.htm\u0000146","AgentCallbackLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLogoffEventHandler.htm\u0000146","AgentCalledEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCalledEventHandler.htm\u0000146","AgentCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCompleteEventHandler.htm\u0000146","AgentConnectEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentConnectEventHandler.htm\u0000146","AgentDumpEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentDumpEventHandler.htm\u0000146","AgentLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLoginEventHandler.htm\u0000146","AgentLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLogoffEventHandler.htm\u0000146","AgentsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsCompleteEventHandler.htm\u0000146","AgentsEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsEventHandler.htm\u0000146","AGIExecHandler Delegate\u0000html/T_AsterNET_Manager_AGIExecHandler.htm\u0000146","AlarmClearEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmClearEventHandler.htm\u0000146","AlarmEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmEventHandler.htm\u0000146","AsteriskVersion Enumeration\u0000html/T_AsterNET_Manager_AsteriskVersion.htm\u0000100","AttendedTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_AttendedTransferEventHandler.htm\u0000146","AuthenticationFailedException Class\u0000html/T_AsterNET_Manager_AuthenticationFailedException.htm\u0000529","BlindTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_BlindTransferEventHandler.htm\u0000146","BridgeCreateEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeCreateEventHandler.htm\u0000146","BridgeDestroyEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeDestroyEventHandler.htm\u0000146","BridgeEnterEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEnterEventHandler.htm\u0000146","BridgeEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEventHandler.htm\u0000146","BridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeLeaveEventHandler.htm\u0000146","CdrEventHandler Delegate\u0000html/T_AsterNET_Manager_CdrEventHandler.htm\u0000146","ConfbridgeEndEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeEndEventHandler.htm\u0000146","ConfbridgeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeJoinEventHandler.htm\u0000146","ConfbridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeLeaveEventHandler.htm\u0000146","ConfbridgeStartEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeStartEventHandler.htm\u0000146","ConfbridgeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeTalkingEventHandler.htm\u0000146","ConnectionStateEventHandler Delegate\u0000html/T_AsterNET_Manager_ConnectionStateEventHandler.htm\u0000146","DBGetResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_DBGetResponseEventHandler.htm\u0000146","DialBeginEventHandler Delegate\u0000html/T_AsterNET_Manager_DialBeginEventHandler.htm\u0000146","DialEndEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEndEventHandler.htm\u0000146","DialEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEventHandler.htm\u0000146","DNDStateEventHandler Delegate\u0000html/T_AsterNET_Manager_DNDStateEventHandler.htm\u0000146","DTMFEventHandler Delegate\u0000html/T_AsterNET_Manager_DTMFEventHandler.htm\u0000146","EventTimeoutException Class\u0000html/T_AsterNET_Manager_EventTimeoutException.htm\u0000601","AbstractAgentEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000753","AbstractAgentVariables Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000693","AbstractChannelEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000659","AbstractConfbridgeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000635","AbstractMeetmeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000642","AbstractParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000643","AbstractQueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000629","AgentCallbackLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000603","AgentCallbackLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000652","AgentCalledEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000755","AgentCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000803","AgentConnectEvent Class\u0000html/T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000788","AgentDumpEvent Class\u0000html/T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000760","AgentLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000603","AgentLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000606","AgentsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000637","AgentsEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsEvent.htm\u0000783","AGIExecEvent Class\u0000html/T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000600","AlarmClearEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000581","AlarmEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmEvent.htm\u0000608","AsyncAGIEvent Class\u0000html/T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000581","AttendedTransferEvent Class\u0000html/T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000643","BlindTransferEvent Class\u0000html/T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000612","BridgeActivityEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000612","BridgeCreateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000629","BridgeDestroyEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000629","BridgeEnterEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000717","BridgeEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEvent.htm\u0000686","BridgeEvent.BridgeStates Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeStates.htm\u000093","BridgeEvent.BridgeTypes Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeTypes.htm\u0000125","BridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000717","BridgeStateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000601","CdrEvent Class\u0000html/T_AsterNET_Manager_Event_CdrEvent.htm\u0000625","ChannelReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000599","ChannelUpdateEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000597","ConfbridgeEndEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000589","ConfbridgeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000591","ConfbridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000591","ConfbridgeListCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000624","ConfbridgeListEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000593","ConfbridgeListRoomsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000624","ConfbridgeListRoomsEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000592","ConfbridgeStartEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000589","ConfbridgeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000590","ConnectEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectEvent.htm\u0000614","ConnectionStateEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000603","DBGetResponseEvent Class\u0000html/T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000674","DialBeginEvent Class\u0000html/T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000714","DialEndEvent Class\u0000html/T_AsterNET_Manager_Event_DialEndEvent.htm\u0000715","DialEvent Class\u0000html/T_AsterNET_Manager_Event_DialEvent.htm\u0000662","DisconnectEvent Class\u0000html/T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000607","DNDStateEvent Class\u0000html/T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000649","DTMFEvent Class\u0000html/T_AsterNET_Manager_Event_DTMFEvent.htm\u0000578","ExtensionStatusEvent Class\u0000html/T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000611","FailedACLEvent Class\u0000html/T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000591","FaxReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000888","HangupEvent Class\u0000html/T_AsterNET_Manager_Event_HangupEvent.htm\u0000728","HoldedCallEvent Class\u0000html/T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000645","HoldEvent Class\u0000html/T_AsterNET_Manager_Event_HoldEvent.htm\u0000600","JabberEvent Class\u0000html/T_AsterNET_Manager_Event_JabberEvent.htm\u0000579","JitterBufStatsEvent Class\u0000html/T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000593","JoinEvent Class\u0000html/T_AsterNET_Manager_Event_JoinEvent.htm\u0000708","LeaveEvent Class\u0000html/T_AsterNET_Manager_Event_LeaveEvent.htm\u0000633","LinkEvent Class\u0000html/T_AsterNET_Manager_Event_LinkEvent.htm\u0000721","LogChannelEvent Class\u0000html/T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000612","ManagerEvent Class\u0000html/T_AsterNET_Manager_Event_ManagerEvent.htm\u0000830","MeetmeEndEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000603","MeetmeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000610","MeetmeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000611","MeetmeMuteEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000604","MeetmeStopTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000610","MeetmeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000604","MeetmeTalkRequestEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000604","MessageWaitingEvent Class\u0000html/T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000645","MobileStatusEvent Class\u0000html/T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000579","ModuleLoadReportEvent Class\u0000html/T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000580","MonitorStartEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000577","MonitorStopEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000577","NewAccountCodeEvent Class\u0000html/T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000579","NewCallerIdEvent Class\u0000html/T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000625","NewChannelEvent Class\u0000html/T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000708","NewExtenEvent Class\u0000html/T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000645","NewStateEvent Class\u0000html/T_AsterNET_Manager_Event_NewStateEvent.htm\u0000710","OriginateResponseEvent Class\u0000html/T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000631","ParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000729","ParkedCallGiveUpEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000670","ParkedCallsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000637","ParkedCallTimeOutEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000669","PeerEntryEvent Class\u0000html/T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000716","PeerlistCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000662","PeerStatusEvent Class\u0000html/T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000779","PRIEvent Class\u0000html/T_AsterNET_Manager_Event_PRIEvent.htm\u0000578","QueueCallerAbandonEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000578","QueueCallerJoinEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000627","QueueCallerLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000627","QueueEntryEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000702","QueueEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEvent.htm\u0000634","QueueMemberAddedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000834","QueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000874","QueueMemberPausedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000693","QueueMemberPauseEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000706","QueueMemberPenaltyEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000631","QueueMemberRemovedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000653","QueueMemberStatusEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000922","QueueParamsEvent Class\u0000html/T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000810","QueueStatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000636","RegistryEvent Class\u0000html/T_AsterNET_Manager_Event_RegistryEvent.htm\u0000776","ReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ReloadEvent.htm\u0000649","RenameEvent Class\u0000html/T_AsterNET_Manager_Event_RenameEvent.htm\u0000607","ResponseEvent Class\u0000html/T_AsterNET_Manager_Event_ResponseEvent.htm\u0000722","RTCPReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000589","RTCPSentEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000589","RTPReceiverStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000583","RTPSenderStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000583","ShowDialPlanCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000582","ShutdownEvent Class\u0000html/T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000660","StatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000640","StatusEvent Class\u0000html/T_AsterNET_Manager_Event_StatusEvent.htm\u0000691","TransferEvent Class\u0000html/T_AsterNET_Manager_Event_TransferEvent.htm\u0000590","UnholdEvent Class\u0000html/T_AsterNET_Manager_Event_UnholdEvent.htm\u0000598","UnknownEvent Class\u0000html/T_AsterNET_Manager_Event_UnknownEvent.htm\u0000570","UnlinkEvent Class\u0000html/T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000683","UnparkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000682","UserEvent Class\u0000html/T_AsterNET_Manager_Event_UserEvent.htm\u0000809","VarSetEvent Class\u0000html/T_AsterNET_Manager_Event_VarSetEvent.htm\u0000596","ZapShowChannelsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000640","ZapShowChannelsEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000675","ExtensionStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_ExtensionStatusEventHandler.htm\u0000146","FailedACLEventHandler Delegate\u0000html/T_AsterNET_Manager_FailedACLEventHandler.htm\u0000146","HangupEventHandler Delegate\u0000html/T_AsterNET_Manager_HangupEventHandler.htm\u0000146","HoldedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldedCallEventHandler.htm\u0000146","HoldEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldEventHandler.htm\u0000146","IResponseHandler Interface\u0000html/T_AsterNET_Manager_IResponseHandler.htm\u0000112","JoinEventHandler Delegate\u0000html/T_AsterNET_Manager_JoinEventHandler.htm\u0000146","LeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_LeaveEventHandler.htm\u0000146","LinkEventHandler Delegate\u0000html/T_AsterNET_Manager_LinkEventHandler.htm\u0000146","LogChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_LogChannelEventHandler.htm\u0000146","ManagerConnection Class\u0000html/T_AsterNET_Manager_ManagerConnection.htm\u00002002","ManagerEventHandler Delegate\u0000html/T_AsterNET_Manager_ManagerEventHandler.htm\u0000146","ManagerException Class\u0000html/T_AsterNET_Manager_ManagerException.htm\u0000522","ManagerReader Class\u0000html/T_AsterNET_Manager_ManagerReader.htm\u0000222","MeetMeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeJoinEventHandler.htm\u0000146","MeetMeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeLeaveEventHandler.htm\u0000146","MeetMeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeTalkingEventHandler.htm\u0000146","MessageWaitingEventHandler Delegate\u0000html/T_AsterNET_Manager_MessageWaitingEventHandler.htm\u0000146","NewCallerIdEventHandler Delegate\u0000html/T_AsterNET_Manager_NewCallerIdEventHandler.htm\u0000146","NewChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_NewChannelEventHandler.htm\u0000146","NewExtenEventHandler Delegate\u0000html/T_AsterNET_Manager_NewExtenEventHandler.htm\u0000146","NewStateEventHandler Delegate\u0000html/T_AsterNET_Manager_NewStateEventHandler.htm\u0000146","Originate Class\u0000html/T_AsterNET_Manager_Originate.htm\u0000521","OriginateResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_OriginateResponseEventHandler.htm\u0000146","ParkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallEventHandler.htm\u0000146","ParkedCallGiveUpEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallGiveUpEventHandler.htm\u0000146","ParkedCallsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallsCompleteEventHandler.htm\u0000146","ParkedCallTimeOutEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallTimeOutEventHandler.htm\u0000146","PeerEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerEntryEventHandler.htm\u0000146","PeerlistCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerlistCompleteEventHandler.htm\u0000146","PeerStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerStatusEventHandler.htm\u0000146","QueueCallerAbandonEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerAbandonEventHandler.htm\u0000146","QueueCallerJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerJoinEventHandler.htm\u0000146","QueueCallerLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerLeaveEventHandler.htm\u0000146","QueueEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueEntryEventHandler.htm\u0000146","QueueMemberAddedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberAddedEventHandler.htm\u0000146","QueueMemberEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberEventHandler.htm\u0000146","QueueMemberPausedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberPausedEventHandler.htm\u0000146","QueueMemberRemovedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberRemovedEventHandler.htm\u0000146","QueueMemberStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberStatusEventHandler.htm\u0000146","QueueParamsEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueParamsEventHandler.htm\u0000146","QueueStatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueStatusCompleteEventHandler.htm\u0000146","RegistryEventHandler Delegate\u0000html/T_AsterNET_Manager_RegistryEventHandler.htm\u0000146","RenameEventHandler Delegate\u0000html/T_AsterNET_Manager_RenameEventHandler.htm\u0000146","ResponseEventHandler Class\u0000html/T_AsterNET_Manager_ResponseEventHandler.htm\u0000253","ResponseEvents Class\u0000html/T_AsterNET_Manager_ResponseEvents.htm\u0000249","ResponseHandler Class\u0000html/T_AsterNET_Manager_ResponseHandler.htm\u0000250","ChallengeResponse Class\u0000html/T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000777","CommandResponse Class\u0000html/T_AsterNET_Manager_Response_CommandResponse.htm\u0000831","ExtensionStateResponse Class\u0000html/T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000757","GetConfigResponse Class\u0000html/T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000838","MailboxCountResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000796","MailboxStatusResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000797","ManagerError Class\u0000html/T_AsterNET_Manager_Response_ManagerError.htm\u0000776","ManagerResponse Class\u0000html/T_AsterNET_Manager_Response_ManagerResponse.htm\u0000742","OriginateResponse Class\u0000html/T_AsterNET_Manager_Response_OriginateResponse.htm\u0000264","StatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusCompleteEventHandler.htm\u0000146","StatusEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusEventHandler.htm\u0000146","TimeoutException Class\u0000html/T_AsterNET_Manager_TimeoutException.htm\u0000513","TransferEventHandler Delegate\u0000html/T_AsterNET_Manager_TransferEventHandler.htm\u0000146","UnholdEventHandler Delegate\u0000html/T_AsterNET_Manager_UnholdEventHandler.htm\u0000146","UnlinkEventHandler Delegate\u0000html/T_AsterNET_Manager_UnlinkEventHandler.htm\u0000146","UnparkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_UnparkedCallEventHandler.htm\u0000146","UserEventHandler Delegate\u0000html/T_AsterNET_Manager_UserEventHandler.htm\u0000146","VarSetEventHandler Delegate\u0000html/T_AsterNET_Manager_VarSetEventHandler.htm\u0000146","ZapShowChannelsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsCompleteEventHandler.htm\u0000146","ZapShowChannelsEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsEventHandler.htm\u0000146","MD5Support Class\u0000html/T_AsterNET_Util_MD5Support.htm\u0000303","ThreadClass Class\u0000html/T_AsterNET_Util_ThreadClass.htm\u0000343","ThreadPool Class\u0000html/T_AsterNET_Util_ThreadPool.htm\u0000289"] \ No newline at end of file +["AsterNet Class Library (Sandcastle documentation) - Redirect\u0000index.html\u000018","AsterNet Class Library (Sandcastle documentation) - Search\u0000search.html\u000016","Version History\u0000html/100303f2-3dd8-401b-a594-579aae2a939c.htm\u000067","Welcome to AsterNet Class library\u0000html/79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm\u0000105","Version 1.0.0.0\u0000html/d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm\u000047","AGIException Events\u0000html/Events_T_AsterNET_FastAGI_AGIException.htm\u000059","AGIHangupException Events\u0000html/Events_T_AsterNET_FastAGI_AGIHangupException.htm\u000059","AGINetworkException Events\u0000html/Events_T_AsterNET_FastAGI_AGINetworkException.htm\u000059","InvalidCommandSyntaxException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u000059","InvalidOrUnknownCommandException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u000059","AuthenticationFailedException Events\u0000html/Events_T_AsterNET_Manager_AuthenticationFailedException.htm\u000059","EventTimeoutException Events\u0000html/Events_T_AsterNET_Manager_EventTimeoutException.htm\u000059","ManagerException Events\u0000html/Events_T_AsterNET_Manager_ManagerException.htm\u000059","TimeoutException Events\u0000html/Events_T_AsterNET_Manager_TimeoutException.htm\u000059","Common Fields\u0000html/Fields_T_AsterNET_Common.htm\u000096","AsteriskFastAGI Fields\u0000html/Fields_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000102","CommandAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_CommandAction.htm\u000033","SetVarAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_SetVarAction.htm\u000057","UpdateConfigAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u000038","RenameEvent Fields\u0000html/Fields_T_AsterNET_Manager_Event_RenameEvent.htm\u000034","ManagerConnection Fields\u0000html/Fields_T_AsterNET_Manager_ManagerConnection.htm\u000075","ChallengeResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ChallengeResponse.htm\u000040","CommandResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_CommandResponse.htm\u000041","ExtensionStateResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u000040","GetConfigResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_GetConfigResponse.htm\u000040","MailboxCountResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u000040","MailboxStatusResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u000040","ManagerError Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerError.htm\u000040","ManagerResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerResponse.htm\u000033","Common.AGI_ADDITIONAL_ATTRIBUTES_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTES_PATTERN.htm\u000095","Common.AGI_ADDITIONAL_ATTRIBUTE_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTE_PATTERN.htm\u000095","Common.AGI_BIND_ADDRESS Field\u0000html/F_AsterNET_Common_AGI_BIND_ADDRESS.htm\u000087","Common.AGI_BIND_PORT Field\u0000html/F_AsterNET_Common_AGI_BIND_PORT.htm\u000085","Common.AGI_DEFAULT_MAX_DIGITS Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_MAX_DIGITS.htm\u000093","Common.AGI_DEFAULT_RESOURCE_BUNDLE_NAME Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_RESOURCE_BUNDLE_NAME.htm\u000095","Common.AGI_DEFAULT_TIMEOUT Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_TIMEOUT.htm\u000093","Common.AGI_END_OF_PROPER_USAGE Field\u0000html/F_AsterNET_Common_AGI_END_OF_PROPER_USAGE.htm\u000095","Common.AGI_PARAMETER_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARAMETER_PATTERN.htm\u000095","Common.AGI_PARENTHESIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARENTHESIS_PATTERN.htm\u000095","Common.AGI_POOL_SIZE Field\u0000html/F_AsterNET_Common_AGI_POOL_SIZE.htm\u000086","Common.AGI_RESULT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_RESULT_PATTERN.htm\u000095","Common.AGI_SCRIPT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SCRIPT_PATTERN.htm\u000095","Common.AGI_STATUS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_STATUS_PATTERN.htm\u000095","Common.AGI_SYNOPSIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SYNOPSIS_PATTERN.htm\u000095","Common.ASTERISK_VERSION Field\u0000html/F_AsterNET_Common_ASTERISK_VERSION.htm\u000095","Common.CultureInfoEn Field\u0000html/F_AsterNET_Common_CultureInfoEn.htm\u000095","Common.DEFAULT_HOSTNAME Field\u0000html/F_AsterNET_Common_DEFAULT_HOSTNAME.htm\u000090","Common.DEFAULT_PORT Field\u0000html/F_AsterNET_Common_DEFAULT_PORT.htm\u000088","Common.INTERNAL_ACTION_ID_DELIMITER Field\u0000html/F_AsterNET_Common_INTERNAL_ACTION_ID_DELIMITER.htm\u000093","Common.LINE_SEPARATOR Field\u0000html/F_AsterNET_Common_LINE_SEPARATOR.htm\u000083","Common.MINUS_SEPARATOR Field\u0000html/F_AsterNET_Common_MINUS_SEPARATOR.htm\u0000108","Common.RESPONSE_KEY_VALUE_SEPARATOR Field\u0000html/F_AsterNET_Common_RESPONSE_KEY_VALUE_SEPARATOR.htm\u0000108","Common.SHOW_VERSION_FILES_PATTERN Field\u0000html/F_AsterNET_Common_SHOW_VERSION_FILES_PATTERN.htm\u000095","Common.VAR_DELIMITER Field\u0000html/F_AsterNET_Common_VAR_DELIMITER.htm\u0000178","AsteriskFastAGI.SC511_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SC511_CAUSES_EXCEPTION.htm\u0000113","AsteriskFastAGI.SCHANGUP_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SCHANGUP_CAUSES_EXCEPTION.htm\u0000110","CommandAction.command Field\u0000html/F_AsterNET_Manager_Action_CommandAction_command.htm\u000097","SetVarAction.channel Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_channel.htm\u000090","SetVarAction.varName Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varName.htm\u000089","SetVarAction.varValue Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varValue.htm\u000086","UpdateConfigAction.ACTION_APPEND Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_APPEND.htm\u0000101","UpdateConfigAction.ACTION_DELCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELCAT.htm\u0000101","UpdateConfigAction.ACTION_DELETE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELETE.htm\u0000101","UpdateConfigAction.ACTION_NEWCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_NEWCAT.htm\u0000101","UpdateConfigAction.ACTION_RENAMECAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_RENAMECAT.htm\u0000101","UpdateConfigAction.ACTION_UPDATE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_UPDATE.htm\u0000101","RenameEvent.newName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_newName.htm\u000097","RenameEvent.oldName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_oldName.htm\u000097","ManagerConnection.UseASyncEvents Field\u0000html/F_AsterNET_Manager_ManagerConnection_UseASyncEvents.htm\u0000119","ManagerConnection.VAR_DELIMITER Field\u0000html/F_AsterNET_Manager_ManagerConnection_VAR_DELIMITER.htm\u0000107","CommandResponse.result Field\u0000html/F_AsterNET_Manager_Response_CommandResponse_result.htm\u0000119","ManagerResponse.attributes Field\u0000html/F_AsterNET_Manager_Response_ManagerResponse_attributes.htm\u0000135","AGIChannel Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIChannel.htm\u0000151","AGIConnectionHandler Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000151","AGIException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIException.htm\u0000207","AGIHangupException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIHangupException.htm\u0000207","AGINetworkException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGINetworkException.htm\u0000207","AGIReader Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReader.htm\u0000152","AGIReply Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReply.htm\u0000276","AGIRequest Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIRequest.htm\u0000144","AGIScript Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIScript.htm\u00001657","AGIWriter Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIWriter.htm\u0000151","AsteriskFastAGI Methods\u0000html/Methods_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000152","AGICommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AGICommand.htm\u0000144","AnswerCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000158","ChannelStatusCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000158","ControlStreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000192","DatabaseDelCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000158","DatabaseDelTreeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000158","DatabaseGetCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000158","DatabasePutCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000158","ExecCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000158","GetDataCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000158","GetFullVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000158","GetOptionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000158","GetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000158","HangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000158","NoopCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000158","ReceiveCharCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000158","ReceiveTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000158","RecordFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000158","SayAlphaCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000158","SayDateTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000158","SayDigitsCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000158","SayNumberCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000158","SayPhoneticCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000158","SayTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000158","SendImageCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000158","SendTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000158","SetAutoHangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000158","SetCallerIdCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000158","SetContextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000158","SetExtensionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000158","SetMusicOffCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000158","SetMusicOnCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000158","SetPriorityCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000158","SetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000158","StreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000158","TDDModeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000158","VerboseCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000158","WaitForDigitCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000158","IMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_IMappingStrategy.htm\u000033","InvalidCommandSyntaxException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000207","InvalidOrUnknownCommandException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000207","GeneralMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000153","ResourceMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000153","ScriptMapping Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000153","MappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategy.htm\u0000152","ServerSocket Methods\u0000html/Methods_T_AsterNET_IO_ServerSocket.htm\u0000152","SocketConnection Methods\u0000html/Methods_T_AsterNET_IO_SocketConnection.htm\u0000239","Logger Methods\u0000html/Methods_T_AsterNET_Logger.htm\u0000223","AbsoluteTimeoutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000142","AgentCallbackLoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000142","AgentLogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000142","AgentsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentsAction.htm\u0000150","AgiAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgiAction.htm\u0000142","AOCMessageAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000142","AtxferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AtxferAction.htm\u0000142","BridgeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_BridgeAction.htm\u0000142","ChallengeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000142","ChangeMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000142","CommandAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CommandAction.htm\u0000142","ConfbridgeKickAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000142","ConfbridgeListAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000150","ConfbridgeListRoomsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000150","ConfbridgeLockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000142","ConfbridgeMuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000142","ConfbridgeSetSingleVideoSrcAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000142","ConfbridgeStartRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000142","ConfbridgeStopRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000142","ConfbridgeUnlockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000142","ConfbridgeUnmuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000142","CoreSettingsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000142","CoreShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000142","CoreStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000142","CreateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000142","DBDelAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelAction.htm\u0000142","DBDelTreeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000142","DBGetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBGetAction.htm\u0000150","DBPutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBPutAction.htm\u0000142","EventsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_EventsAction.htm\u0000142","ExtensionStateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000142","GetConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000150","GetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetVarAction.htm\u0000142","HangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_HangupAction.htm\u0000142","LoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LoginAction.htm\u0000142","LogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LogoffAction.htm\u0000142","MailboxCountAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000142","MailboxStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000142","ManagerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerAction.htm\u0000142","ManagerActionEvent Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000160","ManagerActionResponse Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000159","MonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MonitorAction.htm\u0000142","OriginateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_OriginateAction.htm\u0000211","ParkAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkAction.htm\u0000142","ParkedCallsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000150","PingAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_PingAction.htm\u0000142","ProxyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ProxyAction.htm\u0000142","QueueAddAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000142","QueueLogAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000142","QueuePauseAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000142","QueuePenaltyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000142","QueueReloadAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000142","QueueRemoveAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000142","QueueResetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000142","QueueRuleAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000142","QueueStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000150","RedirectAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_RedirectAction.htm\u0000142","SetCDRUserFieldAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000142","SetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetVarAction.htm\u0000142","SIPPeersAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000150","SIPShowPeerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000150","StatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StatusAction.htm\u0000150","StopMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000142","UpdateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000247","ZapDialOffhookAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000142","ZapDNDOffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000142","ZapDNDOnAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000142","ZapHangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000142","ZapShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000150","ZapTransferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000142","AuthenticationFailedException Methods\u0000html/Methods_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000207","EventTimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_EventTimeoutException.htm\u0000207","AbstractAgentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000259","AbstractAgentVariables Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000231","AbstractChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000170","AbstractConfbridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000170","AbstractMeetmeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000170","AbstractParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000170","AbstractQueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000170","AgentCallbackLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000170","AgentCallbackLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000170","AgentCalledEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000259","AgentCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000259","AgentConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000259","AgentDumpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000259","AgentLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000170","AgentLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000170","AgentsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000170","AgentsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000170","AGIExecEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000170","AlarmClearEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000170","AlarmEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000170","AsyncAGIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000170","AttendedTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000170","BlindTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000170","BridgeActivityEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000170","BridgeCreateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000170","BridgeDestroyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000170","BridgeEnterEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000170","BridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000175","BridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000170","BridgeStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000170","CdrEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_CdrEvent.htm\u0000170","ChannelReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000170","ChannelUpdateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000170","ConfbridgeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000170","ConfbridgeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000170","ConfbridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000170","ConfbridgeListCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000170","ConfbridgeListEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000170","ConfbridgeListRoomsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000170","ConfbridgeListRoomsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000170","ConfbridgeStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000170","ConfbridgeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000170","ConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000170","ConnectionStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000170","DBGetResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000170","DialBeginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000170","DialEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000170","DialEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEvent.htm\u0000170","DisconnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000170","DNDStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000170","DTMFEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000170","ExtensionStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000170","FailedACLEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000170","FaxReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000259","HangupEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HangupEvent.htm\u0000170","HoldedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000170","HoldEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldEvent.htm\u0000170","JabberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JabberEvent.htm\u0000170","JitterBufStatsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000170","JoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JoinEvent.htm\u0000170","LeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000170","LinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LinkEvent.htm\u0000169","LogChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000170","ManagerEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000156","MeetmeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000170","MeetmeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000170","MeetmeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000170","MeetmeMuteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000170","MeetmeStopTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000170","MeetmeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000170","MeetmeTalkRequestEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000170","MessageWaitingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000170","MobileStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000170","ModuleLoadReportEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000170","MonitorStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000170","MonitorStopEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000170","NewAccountCodeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000170","NewCallerIdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000170","NewChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000170","NewExtenEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000170","NewStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000170","OriginateResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000170","ParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000170","ParkedCallGiveUpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000170","ParkedCallsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000170","ParkedCallTimeOutEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000170","PeerEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000170","PeerlistCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000170","PeerStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000170","PRIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PRIEvent.htm\u0000170","QueueCallerAbandonEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000170","QueueCallerJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000170","QueueCallerLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000170","QueueEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000170","QueueEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEvent.htm\u0000170","QueueMemberAddedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000170","QueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000170","QueueMemberPausedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000170","QueueMemberPauseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000170","QueueMemberPenaltyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000170","QueueMemberRemovedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000170","QueueMemberRinginuseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u0000170","QueueMemberStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000170","QueueParamsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000170","QueueStatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000170","RegistryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000170","ReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000170","RenameEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RenameEvent.htm\u0000170","ResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000170","RTCPReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000170","RTCPSentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000170","RTPReceiverStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000170","RTPSenderStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000170","ShowDialPlanCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000170","ShutdownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000170","StatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000170","StatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusEvent.htm\u0000170","TransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_TransferEvent.htm\u0000170","UnholdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000170","UnknownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000170","UnlinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000169","UnparkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000170","UserEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UserEvent.htm\u0000171","VarSetEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000170","ZapShowChannelsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000170","ZapShowChannelsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000170","IResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_IResponseHandler.htm\u000043","ManagerConnection Methods\u0000html/Methods_T_AsterNET_Manager_ManagerConnection.htm\u0000290","ManagerException Methods\u0000html/Methods_T_AsterNET_Manager_ManagerException.htm\u0000207","ManagerReader Methods\u0000html/Methods_T_AsterNET_Manager_ManagerReader.htm\u0000150","Originate Methods\u0000html/Methods_T_AsterNET_Manager_Originate.htm\u0000211","ResponseEventHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEventHandler.htm\u0000153","ResponseEvents Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEvents.htm\u0000159","ResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseHandler.htm\u0000152","ChallengeResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000316","CommandResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_CommandResponse.htm\u0000316","ExtensionStateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000316","GetConfigResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000331","MailboxCountResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000316","MailboxStatusResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000316","ManagerError Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerError.htm\u0000316","ManagerResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000288","OriginateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_OriginateResponse.htm\u0000167","TimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_TimeoutException.htm\u0000207","MD5Support Methods\u0000html/Methods_T_AsterNET_Util_MD5Support.htm\u0000201","ThreadClass Methods\u0000html/Methods_T_AsterNET_Util_ThreadClass.htm\u0000189","ThreadPool Methods\u0000html/Methods_T_AsterNET_Util_ThreadPool.htm\u0000201","AGIChannel.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIChannel_SendCommand.htm\u0000180","AGIChannel Constructor (AGIWriter, AGIReader, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor.htm\u0000323","AGIChannel Constructor (SocketConnection, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor_1.htm\u0000253","AGIConnectionHandler.Run Method\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler_Run.htm\u000095","AGIConnectionHandler Constructor\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler__ctor.htm\u0000268","AGIException Constructor\u0000html/M_AsterNET_FastAGI_AGIException__ctor.htm\u000086","AGIException Constructor (String)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_1.htm\u0000120","AGIException Constructor (String, Exception)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_2.htm\u0000160","AGIHangupException Constructor\u0000html/M_AsterNET_FastAGI_AGIHangupException__ctor.htm\u000084","AGINetworkException Constructor\u0000html/M_AsterNET_FastAGI_AGINetworkException__ctor.htm\u0000186","AGIReader.ReadReply Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadReply.htm\u0000119","AGIReader.ReadRequest Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadRequest.htm\u0000119","AGIReader Constructor\u0000html/M_AsterNET_FastAGI_AGIReader__ctor.htm\u0000134","AGIReply.GetAttribute Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetAttribute.htm\u0000186","AGIReply.GetResult Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetResult.htm\u0000109","AGIReply.GetStatus Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetStatus.htm\u0000112","AGIReply.GetSynopsis Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetSynopsis.htm\u0000127","AGIReply.GetUsage Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetUsage.htm\u0000127","AGIReply.ToString Method\u0000html/M_AsterNET_FastAGI_AGIReply_ToString.htm\u0000132","AGIReply Constructor\u0000html/M_AsterNET_FastAGI_AGIReply__ctor.htm\u000086","AGIReply Constructor (List(String))\u0000html/M_AsterNET_FastAGI_AGIReply__ctor_1.htm\u0000168","AGIRequest.Parameter Method\u0000html/M_AsterNET_FastAGI_AGIRequest_Parameter.htm\u0000172","AGIRequest.ParameterMap Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterMap.htm\u0000176","AGIRequest.ParameterValues Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterValues.htm\u0000194","AGIRequest.ToString Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ToString.htm\u0000132","AGIRequest Constructor\u0000html/M_AsterNET_FastAGI_AGIRequest__ctor.htm\u0000140","AGIScript.Answer Method\u0000html/M_AsterNET_FastAGI_AGIScript_Answer.htm\u000084","AGIScript.ControlStreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000232","AGIScript.ControlStreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_1.htm\u0000272","AGIScript.ControlStreamFile Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_2.htm\u0000306","AGIScript.ControlStreamFile Method (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_3.htm\u0000408","AGIScript.DatabaseDel Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDel.htm\u0000160","AGIScript.DatabaseDelTree Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u0000125","AGIScript.DatabaseDelTree Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree_1.htm\u0000178","AGIScript.DatabaseGet Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseGet.htm\u0000190","AGIScript.DatabasePut Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabasePut.htm\u0000201","AGIScript.Exec Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec.htm\u0000151","AGIScript.Exec Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec_1.htm\u0000194","AGIScript.GetChannelStatus Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm\u0000117","AGIScript.GetData Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData.htm\u0000166","AGIScript.GetData Method (String, Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_1.htm\u0000227","AGIScript.GetData Method (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_2.htm\u0000273","AGIScript.GetFullVariable Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u0000167","AGIScript.GetFullVariable Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable_1.htm\u0000206","AGIScript.GetOption Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000228","AGIScript.GetOption Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption_1.htm\u0000269","AGIScript.GetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetVariable.htm\u0000142","AGIScript.Hangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_Hangup.htm\u000085","AGIScript.PlayMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000094","AGIScript.PlayMusicOnHold Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm\u0000150","AGIScript.RecordFile Method (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000351","AGIScript.RecordFile Method (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile_1.htm\u0000467","AGIScript.SayAlpha Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u0000120","AGIScript.SayAlpha Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha_1.htm\u0000194","AGIScript.SayDateTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000142","AGIScript.SayDateTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_1.htm\u0000213","AGIScript.SayDateTime Method (Int64, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_2.htm\u0000253","AGIScript.SayDateTime Method (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_3.htm\u0000303","AGIScript.SayDigits Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits.htm\u0000121","AGIScript.SayDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits_1.htm\u0000194","AGIScript.SayNumber Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber.htm\u0000119","AGIScript.SayNumber Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber_1.htm\u0000193","AGIScript.SayPhonetic Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u0000122","AGIScript.SayPhonetic Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic_1.htm\u0000196","AGIScript.SayTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime.htm\u0000129","AGIScript.SayTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime_1.htm\u0000203","AGIScript.Service Method\u0000html/M_AsterNET_FastAGI_AGIScript_Service.htm\u0000212","AGIScript.SetAutoHangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetAutoHangup.htm\u0000147","AGIScript.SetCallerId Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm\u0000145","AGIScript.SetContext Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetContext.htm\u0000137","AGIScript.SetExtension Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetExtension.htm\u0000137","AGIScript.SetPriority Method (Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority.htm\u0000140","AGIScript.SetPriority Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority_1.htm\u0000142","AGIScript.SetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetVariable.htm\u0000157","AGIScript.StopMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_StopMusicOnHold.htm\u000086","AGIScript.StreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile.htm\u0000121","AGIScript.StreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile_1.htm\u0000193","AGIScript.Verbose Method\u0000html/M_AsterNET_FastAGI_AGIScript_Verbose.htm\u0000159","AGIScript.WaitForDigit Method\u0000html/M_AsterNET_FastAGI_AGIScript_WaitForDigit.htm\u0000153","AGIScript Constructor\u0000html/M_AsterNET_FastAGI_AGIScript__ctor.htm\u000084","AGIWriter.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIWriter_SendCommand.htm\u0000151","AGIWriter Constructor\u0000html/M_AsterNET_FastAGI_AGIWriter__ctor.htm\u0000134","AsteriskFastAGI.Start Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Start.htm\u000095","AsteriskFastAGI.Stop Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Stop.htm\u000095","AsteriskFastAGI Constructor\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u000083","AsteriskFastAGI Constructor (IMappingStrategy)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_1.htm\u0000136","AsteriskFastAGI Constructor (IMappingStrategy, String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_2.htm\u0000318","AsteriskFastAGI Constructor (Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_3.htm\u0000163","AsteriskFastAGI Constructor (String)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_4.htm\u0000134","AsteriskFastAGI Constructor (String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_5.htm\u0000197","AsteriskFastAGI Constructor (String, Int32, Int32, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_6.htm\u0000511","AGICommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_BuildCommand.htm\u0000127","AGICommand.EscapeAndQuote Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_EscapeAndQuote.htm\u0000177","AGICommand.ToString Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_ToString.htm\u0000136","AGICommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AGICommand__ctor.htm\u000086","AnswerCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand_BuildCommand.htm\u0000136","AnswerCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand__ctor.htm\u000086","ChannelStatusCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand_BuildCommand.htm\u0000136","ChannelStatusCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000088","ChannelStatusCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor_1.htm\u0000125","ControlStreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_BuildCommand.htm\u0000136","ControlStreamFileCommand.ControlDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u0000160","ControlStreamFileCommand.ControlDigits Method (String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits_1.htm\u0000197","ControlStreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000154","ControlStreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_1.htm\u0000194","ControlStreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_2.htm\u0000240","ControlStreamFileCommand Constructor (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_3.htm\u0000342","DatabaseDelCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand_BuildCommand.htm\u0000136","DatabaseDelCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u0000121","DatabaseDelCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor_1.htm\u0000157","DatabaseDelTreeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_BuildCommand.htm\u0000136","DatabaseDelTreeCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u0000120","DatabaseDelTreeCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor_1.htm\u0000153","DatabaseGetCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand_BuildCommand.htm\u0000136","DatabaseGetCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand__ctor.htm\u0000146","DatabasePutCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand_BuildCommand.htm\u0000136","DatabasePutCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand__ctor.htm\u0000177","ExecCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ExecCommand_BuildCommand.htm\u0000136","ExecCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u0000120","ExecCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor_1.htm\u0000156","GetDataCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand_BuildCommand.htm\u0000136","GetDataCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u0000133","GetDataCommand Constructor (String, Int64)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_1.htm\u0000190","GetDataCommand Constructor (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_2.htm\u0000230","GetFullVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand_BuildCommand.htm\u0000136","GetFullVariableCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u0000120","GetFullVariableCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor_1.htm\u0000154","GetOptionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand_BuildCommand.htm\u0000136","GetOptionCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u0000171","GetOptionCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor_1.htm\u0000212","GetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand_BuildCommand.htm\u0000136","GetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand__ctor.htm\u0000115","HangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_HangupCommand_BuildCommand.htm\u0000136","HangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000091","HangupCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor_1.htm\u0000126","NoopCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_NoopCommand_BuildCommand.htm\u0000136","NoopCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_NoopCommand__ctor.htm\u000083","ReceiveCharCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand_BuildCommand.htm\u0000136","ReceiveCharCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000096","ReceiveCharCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor_1.htm\u0000122","ReceiveTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand_BuildCommand.htm\u0000136","ReceiveTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000096","ReceiveTextCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor_1.htm\u0000138","RecordFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand_BuildCommand.htm\u0000136","RecordFileCommand Constructor (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u0000247","RecordFileCommand Constructor (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor_1.htm\u0000363","SayAlphaCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand_BuildCommand.htm\u0000136","SayAlphaCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u0000117","SayAlphaCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor_1.htm\u0000157","SayDateTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand_BuildCommand.htm\u0000136","SayDateTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000164","SayDateTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_1.htm\u0000192","SayDateTimeCommand Constructor (Int64, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_2.htm\u0000232","SayDateTimeCommand Constructor (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_3.htm\u0000282","SayDigitsCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand_BuildCommand.htm\u0000136","SayDigitsCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u0000117","SayDigitsCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor_1.htm\u0000156","SayNumberCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand_BuildCommand.htm\u0000136","SayNumberCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u0000117","SayNumberCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor_1.htm\u0000157","SayPhoneticCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand_BuildCommand.htm\u0000136","SayPhoneticCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u0000117","SayPhoneticCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor_1.htm\u0000157","SayTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand_BuildCommand.htm\u0000136","SayTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u0000127","SayTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor_1.htm\u0000167","SendImageCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand_BuildCommand.htm\u0000136","SendImageCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand__ctor.htm\u0000117","SendTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand_BuildCommand.htm\u0000136","SendTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand__ctor.htm\u0000112","SetAutoHangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand_BuildCommand.htm\u0000136","SetAutoHangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand__ctor.htm\u0000123","SetCallerIdCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand_BuildCommand.htm\u0000136","SetCallerIdCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand__ctor.htm\u0000111","SetContextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand_BuildCommand.htm\u0000136","SetContextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand__ctor.htm\u0000116","SetExtensionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand_BuildCommand.htm\u0000136","SetExtensionCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand__ctor.htm\u0000116","SetMusicOffCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand_BuildCommand.htm\u0000136","SetMusicOffCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand__ctor.htm\u000083","SetMusicOnCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand_BuildCommand.htm\u0000136","SetMusicOnCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000094","SetMusicOnCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor_1.htm\u0000131","SetPriorityCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand_BuildCommand.htm\u0000136","SetPriorityCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u0000119","SetPriorityCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor_1.htm\u0000121","SetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand_BuildCommand.htm\u0000136","SetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand__ctor.htm\u0000165","StreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand_BuildCommand.htm\u0000136","StreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u0000130","StreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_1.htm\u0000170","StreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_2.htm\u0000216","TDDModeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand_BuildCommand.htm\u0000136","TDDModeCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand__ctor.htm\u0000158","VerboseCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand_BuildCommand.htm\u0000136","VerboseCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand__ctor.htm\u0000150","WaitForDigitCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand_BuildCommand.htm\u0000136","WaitForDigitCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000097","WaitForDigitCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor_1.htm\u0000123","IMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_DetermineScript.htm\u0000171","IMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_Load.htm\u000090","InvalidCommandSyntaxException Constructor\u0000html/M_AsterNET_FastAGI_InvalidCommandSyntaxException__ctor.htm\u0000149","InvalidOrUnknownCommandException Constructor\u0000html/M_AsterNET_FastAGI_InvalidOrUnknownCommandException__ctor.htm\u0000111","GeneralMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_DetermineScript.htm\u0000200","GeneralMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_Load.htm\u0000112","GeneralMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000088","GeneralMappingStrategy Constructor (List(ScriptMapping))\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_1.htm\u0000173","GeneralMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_2.htm\u0000140","ResourceMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_DetermineScript.htm\u0000200","ResourceMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_Load.htm\u0000112","ResourceMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000088","ResourceMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor_1.htm\u0000140","ScriptMapping.LoadMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_LoadMappings.htm\u0000203","ScriptMapping.SaveMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_SaveMappings.htm\u0000254","ScriptMapping Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping__ctor.htm\u000086","MappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_DetermineScript.htm\u0000195","MappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_Load.htm\u0000109","MappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000086","MappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor_1.htm\u0000137","ServerSocket.Accept Method\u0000html/M_AsterNET_IO_ServerSocket_Accept.htm\u0000119","ServerSocket.Close Method\u0000html/M_AsterNET_IO_ServerSocket_Close.htm\u000095","ServerSocket Constructor\u0000html/M_AsterNET_IO_ServerSocket__ctor.htm\u0000250","SocketConnection.Close Method\u0000html/M_AsterNET_IO_SocketConnection_Close.htm\u0000120","SocketConnection.ReadLine Method\u0000html/M_AsterNET_IO_SocketConnection_ReadLine.htm\u0000125","SocketConnection.Write Method\u0000html/M_AsterNET_IO_SocketConnection_Write.htm\u0000124","SocketConnection.WriteEx Method\u0000html/M_AsterNET_IO_SocketConnection_WriteEx.htm\u0000124","SocketConnection Constructor\u0000html/M_AsterNET_IO_SocketConnection__ctor.htm\u0000157","Logger.Debug Method (Object)\u0000html/M_AsterNET_Logger_Debug.htm\u0000146","Logger.Debug Method (String)\u0000html/M_AsterNET_Logger_Debug_1.htm\u0000146","Logger.Debug Method (String, Exception)\u0000html/M_AsterNET_Logger_Debug_2.htm\u0000202","Logger.Debug Method (String, Object[])\u0000html/M_AsterNET_Logger_Debug_3.htm\u0000229","Logger.Error Method (Object)\u0000html/M_AsterNET_Logger_Error.htm\u0000146","Logger.Error Method (String)\u0000html/M_AsterNET_Logger_Error_1.htm\u0000146","Logger.Error Method (String, Exception)\u0000html/M_AsterNET_Logger_Error_2.htm\u0000202","Logger.Error Method (String, Object[])\u0000html/M_AsterNET_Logger_Error_3.htm\u0000229","Logger.Info Method (Object)\u0000html/M_AsterNET_Logger_Info.htm\u0000146","Logger.Info Method (String)\u0000html/M_AsterNET_Logger_Info_1.htm\u0000146","Logger.Info Method (String, Exception)\u0000html/M_AsterNET_Logger_Info_2.htm\u0000202","Logger.Info Method (String, Object[])\u0000html/M_AsterNET_Logger_Info_3.htm\u0000229","Logger.Instance Method\u0000html/M_AsterNET_Logger_Instance.htm\u0000108","Logger.IsVisible Method\u0000html/M_AsterNET_Logger_IsVisible.htm\u0000216","Logger.Visible Method (Boolean, Logger.MessageLevel)\u0000html/M_AsterNET_Logger_Visible.htm\u0000148","Logger.Visible Method (Boolean, Logger.MessageLevel, String)\u0000html/M_AsterNET_Logger_Visible_1.htm\u0000178","Logger.Warning Method (Object)\u0000html/M_AsterNET_Logger_Warning.htm\u0000146","Logger.Warning Method (String)\u0000html/M_AsterNET_Logger_Warning_1.htm\u0000146","Logger.Warning Method (String, Exception)\u0000html/M_AsterNET_Logger_Warning_2.htm\u0000202","Logger.Warning Method (String, Object[])\u0000html/M_AsterNET_Logger_Warning_3.htm\u0000229","Logger Constructor\u0000html/M_AsterNET_Logger__ctor.htm\u000088","AbsoluteTimeoutAction Constructor\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000086","AbsoluteTimeoutAction Constructor (String, Int32)\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor_1.htm\u0000159","AgentCallbackLoginAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000086","AgentCallbackLoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_1.htm\u0000173","AgentCallbackLoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_2.htm\u0000214","AgentLogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000086","AgentLogoffAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_1.htm\u0000126","AgentLogoffAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_2.htm\u0000164","AgentsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_AgentsAction_ActionCompleteEventClass.htm\u0000136","AgentsAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentsAction__ctor.htm\u000086","AgiAction Constructor\u0000html/M_AsterNET_Manager_Action_AgiAction__ctor.htm\u0000188","AOCMessageAction Constructor\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000090","AOCMessageAction Constructor (String, String, String, String, Int32, Int32, String, String, String, String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor_1.htm\u00001191","AtxferAction Constructor\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000083","AtxferAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor_1.htm\u0000212","BridgeAction Constructor\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000088","BridgeAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor_1.htm\u0000191","ChallengeAction Constructor\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000088","ChallengeAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor_1.htm\u0000131","ChangeMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000086","ChangeMonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor_1.htm\u0000182","CommandAction Constructor\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor.htm\u000085","CommandAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor_1.htm\u0000122","ConfbridgeKickAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000089","ConfbridgeKickAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor_1.htm\u0000198","ConfbridgeListAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction__ctor.htm\u0000150","ConfbridgeListRoomsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListRoomsAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction__ctor.htm\u000086","ConfbridgeLockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000085","ConfbridgeLockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor_1.htm\u0000137","ConfbridgeMuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000089","ConfbridgeMuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor_1.htm\u0000198","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000086","ConfbridgeSetSingleVideoSrcAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor_1.htm\u0000195","ConfbridgeStartRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000141","ConfbridgeStartRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor_1.htm\u0000193","ConfbridgeStopRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000086","ConfbridgeStopRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor_1.htm\u0000138","ConfbridgeUnlockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000085","ConfbridgeUnlockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor_1.htm\u0000137","ConfbridgeUnmuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000089","ConfbridgeUnmuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor_1.htm\u0000198","CoreSettingsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreSettingsAction__ctor.htm\u000086","CoreShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreShowChannelsAction__ctor.htm\u000086","CoreStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreStatusAction__ctor.htm\u000086","CreateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u0000113","CreateConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor_1.htm\u0000165","DBDelAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000086","DBDelAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor_1.htm\u0000168","DBDelTreeAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000086","DBDelTreeAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor_1.htm\u0000165","DBGetAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_DBGetAction_ActionCompleteEventClass.htm\u0000136","DBGetAction Constructor\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000086","DBGetAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor_1.htm\u0000168","DBPutAction Constructor\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000086","DBPutAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor_1.htm\u0000200","EventsAction Constructor\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor.htm\u000086","EventsAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor_1.htm\u0000181","ExtensionStateAction Constructor\u0000html/M_AsterNET_Manager_Action_ExtensionStateAction__ctor.htm\u000086","GetConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_GetConfigAction_ActionCompleteResponseClass.htm\u0000136","GetConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000085","GetConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor_1.htm\u0000118","GetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000086","GetVarAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_1.htm\u0000128","GetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_2.htm\u0000170","HangupAction Constructor\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor.htm\u000086","HangupAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor_1.htm\u0000126","LoginAction Constructor\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor.htm\u000086","LoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_1.htm\u0000186","LoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_2.htm\u0000209","LoginAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_3.htm\u0000295","LogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_LogoffAction__ctor.htm\u000086","MailboxCountAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000086","MailboxCountAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor_1.htm\u0000162","MailboxStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000086","MailboxStatusAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor_1.htm\u0000158","ManagerActionEvent.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent_ActionCompleteEventClass.htm\u0000132","ManagerActionEvent Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent__ctor.htm\u000086","ManagerActionResponse.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse_ActionCompleteResponseClass.htm\u0000130","ManagerActionResponse Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse__ctor.htm\u000086","ManagerAction.ToString Method\u0000html/M_AsterNET_Manager_Action_ManagerAction_ToString.htm\u0000136","ManagerAction Constructor\u0000html/M_AsterNET_Manager_Action_ManagerAction__ctor.htm\u000086","MonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor.htm\u000086","MonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_1.htm\u0000180","MonitorAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_2.htm\u0000217","MonitorAction Constructor (String, String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_3.htm\u0000258","OriginateAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_ActionCompleteEventClass.htm\u0000136","OriginateAction.GetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariable.htm\u0000175","OriginateAction.GetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariables.htm\u0000175","OriginateAction.SetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariable.htm\u0000202","OriginateAction.SetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariables.htm\u0000210","OriginateAction Constructor\u0000html/M_AsterNET_Manager_Action_OriginateAction__ctor.htm\u000086","ParkAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor.htm\u0000255","ParkAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor_1.htm\u0000237","ParkedCallsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction_ActionCompleteEventClass.htm\u0000136","ParkedCallsAction Constructor\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction__ctor.htm\u000086","PingAction Constructor\u0000html/M_AsterNET_Manager_Action_PingAction__ctor.htm\u000086","ProxyAction Constructor\u0000html/M_AsterNET_Manager_Action_ProxyAction__ctor.htm\u000086","QueueAddAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u000086","QueueAddAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_1.htm\u0000190","QueueAddAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_2.htm\u0000229","QueueAddAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_3.htm\u0000290","QueueLogAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000086","QueueLogAction Constructor (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor_1.htm\u0000390","QueuePauseAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u000086","QueuePauseAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_1.htm\u0000132","QueuePauseAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_2.htm\u0000173","QueuePauseAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_3.htm\u0000169","QueuePauseAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_4.htm\u0000208","QueuePenaltyAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000088","QueuePenaltyAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor_1.htm\u0000258","QueueReloadAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000096","QueueReloadAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor_1.htm\u0000331","QueueRemoveAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000086","QueueRemoveAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor_1.htm\u0000170","QueueResetAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000084","QueueResetAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor_1.htm\u0000136","QueueRuleAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000088","QueueRuleAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor_1.htm\u0000140","QueueStatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_QueueStatusAction_ActionCompleteEventClass.htm\u0000136","QueueStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueStatusAction__ctor.htm\u000086","RedirectAction Constructor\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000086","RedirectAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_1.htm\u0000224","RedirectAction Constructor (String, String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_2.htm\u0000261","SetCDRUserFieldAction Constructor\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000086","SetCDRUserFieldAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_1.htm\u0000169","SetCDRUserFieldAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_2.htm\u0000209","SetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000086","SetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_1.htm\u0000161","SetVarAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_2.htm\u0000201","SIPPeersAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPPeersAction_ActionCompleteEventClass.htm\u0000136","SIPPeersAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPPeersAction__ctor.htm\u000086","SIPShowPeerAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction_ActionCompleteEventClass.htm\u0000136","SIPShowPeerAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000086","SIPShowPeerAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor_1.htm\u0000146","StatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_StatusAction_ActionCompleteEventClass.htm\u0000136","StatusAction Constructor\u0000html/M_AsterNET_Manager_Action_StatusAction__ctor.htm\u000086","StopMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000086","StopMonitorAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor_1.htm\u0000144","UpdateConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_ActionCompleteResponseClass.htm\u0000136","UpdateConfigAction.AddCommand Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000100","UpdateConfigAction.AddCommand Method (String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_1.htm\u0000154","UpdateConfigAction.AddCommand Method (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_2.htm\u0000212","UpdateConfigAction.AddCommand Method (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_3.htm\u0000274","UpdateConfigAction.AddCommand Method (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_4.htm\u0000340","UpdateConfigAction.AddCommand Method (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_5.htm\u0000313","UpdateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000085","UpdateConfigAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_1.htm\u0000194","UpdateConfigAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_2.htm\u0000253","UpdateConfigAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_3.htm\u0000255","ZapDialOffhookAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000086","ZapDialOffhookAction Constructor (Int32, String)\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor_1.htm\u0000202","ZapDNDOffAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000086","ZapDNDOffAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor_1.htm\u0000148","ZapDNDOnAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000086","ZapDNDOnAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor_1.htm\u0000148","ZapHangupAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000086","ZapHangupAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor_1.htm\u0000153","ZapShowChannelsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction_ActionCompleteEventClass.htm\u0000136","ZapShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction__ctor.htm\u000086","ZapTransferAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapTransferAction__ctor.htm\u000086","AuthenticationFailedException Constructor (String)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u0000119","AuthenticationFailedException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor_1.htm\u0000155","EventTimeoutException Constructor\u0000html/M_AsterNET_Manager_EventTimeoutException__ctor.htm\u0000162","AbstractAgentEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentEvent__ctor.htm\u0000137","AbstractAgentVariables.GetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariable.htm\u0000175","AbstractAgentVariables.GetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariables.htm\u0000175","AbstractAgentVariables.SetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariable.htm\u0000202","AbstractAgentVariables.SetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariables.htm\u0000210","AbstractAgentVariables Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables__ctor.htm\u0000137","AbstractChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractChannelEvent__ctor.htm\u0000137","AbstractConfbridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000088","AbstractConfbridgeEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor_1.htm\u0000142","AbstractMeetmeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractMeetmeEvent__ctor.htm\u0000137","AbstractParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractParkedCallEvent__ctor.htm\u0000137","AbstractQueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm\u0000112","AgentCallbackLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLoginEvent__ctor.htm\u0000137","AgentCallbackLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLogoffEvent__ctor.htm\u0000137","AgentCalledEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCalledEvent__ctor.htm\u0000137","AgentCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCompleteEvent__ctor.htm\u0000137","AgentConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentConnectEvent__ctor.htm\u0000137","AgentDumpEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentDumpEvent__ctor.htm\u0000137","AgentLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLoginEvent__ctor.htm\u0000137","AgentLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLogoffEvent__ctor.htm\u0000137","AgentsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsCompleteEvent__ctor.htm\u0000137","AgentsEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsEvent__ctor.htm\u0000137","AGIExecEvent Constructor\u0000html/M_AsterNET_Manager_Event_AGIExecEvent__ctor.htm\u0000134","AlarmClearEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmClearEvent__ctor.htm\u0000137","AlarmEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmEvent__ctor.htm\u0000137","AsyncAGIEvent Constructor\u0000html/M_AsterNET_Manager_Event_AsyncAGIEvent__ctor.htm\u0000137","AttendedTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_AttendedTransferEvent__ctor.htm\u0000137","BlindTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_BlindTransferEvent__ctor.htm\u0000137","BridgeActivityEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeActivityEvent__ctor.htm\u0000137","BridgeCreateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeCreateEvent__ctor.htm\u0000137","BridgeDestroyEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeDestroyEvent__ctor.htm\u0000137","BridgeEnterEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEnterEvent__ctor.htm\u0000137","BridgeEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_BridgeEvent_ParseSpecial.htm\u0000231","BridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEvent__ctor.htm\u0000137","BridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeLeaveEvent__ctor.htm\u0000137","BridgeStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeStateEvent__ctor.htm\u0000137","CdrEvent Constructor\u0000html/M_AsterNET_Manager_Event_CdrEvent__ctor.htm\u0000137","ChannelReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelReloadEvent__ctor.htm\u0000137","ChannelUpdateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelUpdateEvent__ctor.htm\u0000134","ConfbridgeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeEndEvent__ctor.htm\u0000137","ConfbridgeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeJoinEvent__ctor.htm\u0000137","ConfbridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeLeaveEvent__ctor.htm\u0000137","ConfbridgeListCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListCompleteEvent__ctor.htm\u0000137","ConfbridgeListEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListEvent__ctor.htm\u0000137","ConfbridgeListRoomsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent__ctor.htm\u0000137","ConfbridgeListRoomsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsEvent__ctor.htm\u0000137","ConfbridgeStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeStartEvent__ctor.htm\u0000137","ConfbridgeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeTalkingEvent__ctor.htm\u0000137","ConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectEvent__ctor.htm\u0000137","ConnectionStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectionStateEvent__ctor.htm\u0000137","DBGetResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_DBGetResponseEvent__ctor.htm\u0000137","DialBeginEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialBeginEvent__ctor.htm\u0000134","DialEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEndEvent__ctor.htm\u0000134","DialEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEvent__ctor.htm\u0000134","DisconnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_DisconnectEvent__ctor.htm\u0000137","DNDStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_DNDStateEvent__ctor.htm\u0000134","DTMFEvent Constructor\u0000html/M_AsterNET_Manager_Event_DTMFEvent__ctor.htm\u0000134","ExtensionStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_ExtensionStatusEvent__ctor.htm\u0000137","FailedACLEvent Constructor\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000088","FailedACLEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor_1.htm\u0000142","FaxReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_FaxReceivedEvent__ctor.htm\u0000137","HangupEvent Constructor\u0000html/M_AsterNET_Manager_Event_HangupEvent__ctor.htm\u0000137","HoldedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldedCallEvent__ctor.htm\u0000137","HoldEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldEvent__ctor.htm\u0000137","JabberEvent Constructor\u0000html/M_AsterNET_Manager_Event_JabberEvent__ctor.htm\u0000137","JitterBufStatsEvent Constructor\u0000html/M_AsterNET_Manager_Event_JitterBufStatsEvent__ctor.htm\u0000137","JoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_JoinEvent__ctor.htm\u0000137","LeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_LeaveEvent__ctor.htm\u0000137","LinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_LinkEvent__ctor.htm\u0000137","LogChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_LogChannelEvent__ctor.htm\u0000137","ManagerEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_Parse.htm\u0000179","ManagerEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ParseSpecial.htm\u0000231","ManagerEvent.ToString Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ToString.htm\u0000117","ManagerEvent Constructor\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000089","ManagerEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor_1.htm\u0000119","MeetmeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeEndEvent__ctor.htm\u0000137","MeetmeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeJoinEvent__ctor.htm\u0000137","MeetmeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeLeaveEvent__ctor.htm\u0000137","MeetmeMuteEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeMuteEvent__ctor.htm\u0000137","MeetmeStopTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeStopTalkingEvent__ctor.htm\u0000137","MeetmeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkingEvent__ctor.htm\u0000137","MeetmeTalkRequestEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkRequestEvent__ctor.htm\u0000137","MessageWaitingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MessageWaitingEvent__ctor.htm\u0000137","MobileStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_MobileStatusEvent__ctor.htm\u0000137","ModuleLoadReportEvent Constructor\u0000html/M_AsterNET_Manager_Event_ModuleLoadReportEvent__ctor.htm\u0000137","MonitorStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStartEvent__ctor.htm\u0000137","MonitorStopEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStopEvent__ctor.htm\u0000137","NewAccountCodeEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewAccountCodeEvent__ctor.htm\u0000137","NewCallerIdEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewCallerIdEvent__ctor.htm\u0000137","NewChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewChannelEvent__ctor.htm\u0000137","NewExtenEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewExtenEvent__ctor.htm\u0000137","NewStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewStateEvent__ctor.htm\u0000137","OriginateResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_OriginateResponseEvent__ctor.htm\u0000137","ParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallEvent__ctor.htm\u0000137","ParkedCallGiveUpEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallGiveUpEvent__ctor.htm\u0000137","ParkedCallsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallsCompleteEvent__ctor.htm\u0000137","ParkedCallTimeOutEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallTimeOutEvent__ctor.htm\u0000137","PeerEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerEntryEvent__ctor.htm\u0000134","PeerlistCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerlistCompleteEvent__ctor.htm\u0000137","PeerStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerStatusEvent__ctor.htm\u0000137","PRIEvent Constructor\u0000html/M_AsterNET_Manager_Event_PRIEvent__ctor.htm\u0000134","QueueCallerAbandonEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerAbandonEvent__ctor.htm\u0000134","QueueCallerJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerJoinEvent__ctor.htm\u0000137","QueueCallerLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerLeaveEvent__ctor.htm\u0000137","QueueEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEntryEvent__ctor.htm\u0000137","QueueEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEvent__ctor.htm\u0000137","QueueMemberAddedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm\u0000114","QueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberEvent__ctor.htm\u0000137","QueueMemberPausedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm\u0000114","QueueMemberPauseEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm\u0000114","QueueMemberPenaltyEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm\u0000114","QueueMemberRemovedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm\u0000114","QueueMemberRinginuseEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberRinginuseEvent__ctor.htm\u0000114","QueueMemberStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm\u0000114","QueueParamsEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueParamsEvent__ctor.htm\u0000137","QueueStatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueStatusCompleteEvent__ctor.htm\u0000137","RegistryEvent Constructor\u0000html/M_AsterNET_Manager_Event_RegistryEvent__ctor.htm\u0000137","ReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ReloadEvent__ctor.htm\u0000137","RenameEvent Constructor\u0000html/M_AsterNET_Manager_Event_RenameEvent__ctor.htm\u0000137","ResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_ResponseEvent__ctor.htm\u0000137","RTCPReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPReceivedEvent__ctor.htm\u0000137","RTCPSentEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPSentEvent__ctor.htm\u0000137","RTPReceiverStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPReceiverStatEvent__ctor.htm\u0000137","RTPSenderStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPSenderStatEvent__ctor.htm\u0000137","ShowDialPlanCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShowDialPlanCompleteEvent__ctor.htm\u0000137","ShutdownEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShutdownEvent__ctor.htm\u0000137","StatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusCompleteEvent__ctor.htm\u0000137","StatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusEvent__ctor.htm\u0000137","TransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_TransferEvent__ctor.htm\u0000137","UnholdEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnholdEvent__ctor.htm\u0000134","UnknownEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnknownEvent__ctor.htm\u0000134","UnlinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnlinkEvent__ctor.htm\u0000137","UnparkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnparkedCallEvent__ctor.htm\u0000137","UserEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_UserEvent_Parse.htm\u0000255","UserEvent Constructor\u0000html/M_AsterNET_Manager_Event_UserEvent__ctor.htm\u0000137","VarSetEvent Constructor\u0000html/M_AsterNET_Manager_Event_VarSetEvent__ctor.htm\u0000137","ZapShowChannelsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent__ctor.htm\u0000137","ZapShowChannelsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsEvent__ctor.htm\u0000137","IResponseHandler.Free Method\u0000html/M_AsterNET_Manager_IResponseHandler_Free.htm\u000090","IResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_IResponseHandler_HandleResponse.htm\u0000114","ManagerConnection.BuildAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction.htm\u0000185","ManagerConnection.BuildAction Method (ManagerAction, String)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction_1.htm\u0000246","ManagerConnection.connect Method\u0000html/M_AsterNET_Manager_ManagerConnection_connect.htm\u0000117","ManagerConnection.determineVersion Method\u0000html/M_AsterNET_Manager_ManagerConnection_determineVersion.htm\u0000117","ManagerConnection.GetProtocolIdentifier Method\u0000html/M_AsterNET_Manager_ManagerConnection_GetProtocolIdentifier.htm\u0000119","ManagerConnection.IsConnected Method\u0000html/M_AsterNET_Manager_ManagerConnection_IsConnected.htm\u0000118","ManagerConnection.Login Method\u0000html/M_AsterNET_Manager_ManagerConnection_Login.htm\u0000119","ManagerConnection.Login Method (Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_Login_1.htm\u0000142","ManagerConnection.Logoff Method\u0000html/M_AsterNET_Manager_ManagerConnection_Logoff.htm\u000089","ManagerConnection.RegisterUserEventClass Method\u0000html/M_AsterNET_Manager_ManagerConnection_RegisterUserEventClass.htm\u0000131","ManagerConnection.SendAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction.htm\u0000171","ManagerConnection.SendAction Method (ManagerAction, ResponseHandler)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_1.htm\u0000249","ManagerConnection.SendAction Method (ManagerAction, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_2.htm\u0000206","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u0000185","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction_1.htm\u0000221","ManagerConnection Constructor\u0000html/M_AsterNET_Manager_ManagerConnection__ctor.htm\u000083","ManagerConnection Constructor (String, Int32, String, String)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_1.htm\u0000233","ManagerConnection Constructor (String, Int32, String, String, Encoding)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_2.htm\u0000295","ManagerException Constructor (String)\u0000html/M_AsterNET_Manager_ManagerException__ctor.htm\u0000119","ManagerException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_ManagerException__ctor_1.htm\u0000155","ManagerReader Constructor\u0000html/M_AsterNET_Manager_ManagerReader__ctor.htm\u0000131","Originate.GetVariable Method\u0000html/M_AsterNET_Manager_Originate_GetVariable.htm\u0000171","Originate.GetVariables Method\u0000html/M_AsterNET_Manager_Originate_GetVariables.htm\u0000153","Originate.SetVariable Method\u0000html/M_AsterNET_Manager_Originate_SetVariable.htm\u0000198","Originate.SetVariables Method\u0000html/M_AsterNET_Manager_Originate_SetVariables.htm\u0000185","Originate Constructor\u0000html/M_AsterNET_Manager_Originate__ctor.htm\u000084","ResponseEventHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_Free.htm\u0000109","ResponseEventHandler.HandleEvent Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleEvent.htm\u0000151","ResponseEventHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleResponse.htm\u0000170","ResponseEventHandler Constructor\u0000html/M_AsterNET_Manager_ResponseEventHandler__ctor.htm\u0000257","ResponseEvents.AddEvent Method\u0000html/M_AsterNET_Manager_ResponseEvents_AddEvent.htm\u0000121","ResponseEvents Constructor\u0000html/M_AsterNET_Manager_ResponseEvents__ctor.htm\u000081","ResponseHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseHandler_Free.htm\u0000109","ResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseHandler_HandleResponse.htm\u0000171","ResponseHandler Constructor\u0000html/M_AsterNET_Manager_ResponseHandler__ctor.htm\u0000192","ChallengeResponse Constructor\u0000html/M_AsterNET_Manager_Response_ChallengeResponse__ctor.htm\u000086","CommandResponse Constructor\u0000html/M_AsterNET_Manager_Response_CommandResponse__ctor.htm\u000086","ExtensionStateResponse Constructor\u0000html/M_AsterNET_Manager_Response_ExtensionStateResponse__ctor.htm\u000086","GetConfigResponse.Lines Method\u0000html/M_AsterNET_Manager_Response_GetConfigResponse_Lines.htm\u0000207","GetConfigResponse Constructor\u0000html/M_AsterNET_Manager_Response_GetConfigResponse__ctor.htm\u000086","MailboxCountResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxCountResponse__ctor.htm\u000086","MailboxStatusResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxStatusResponse__ctor.htm\u000086","ManagerError Constructor\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor.htm\u000085","ManagerError Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor_1.htm\u0000191","ManagerResponse.GetAttribute Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_GetAttribute.htm\u0000268","ManagerResponse.IsSuccess Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_IsSuccess.htm\u0000111","ManagerResponse.Parse Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_Parse.htm\u0000179","ManagerResponse.ParseSpecial Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ParseSpecial.htm\u0000230","ManagerResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ToString.htm\u0000136","ManagerResponse Constructor\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000088","ManagerResponse Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor_1.htm\u0000191","OriginateResponse.CalcDuration Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_CalcDuration.htm\u0000130","OriginateResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_ToString.htm\u0000136","OriginateResponse Constructor\u0000html/M_AsterNET_Manager_Response_OriginateResponse__ctor.htm\u000086","TimeoutException Constructor\u0000html/M_AsterNET_Manager_TimeoutException__ctor.htm\u0000116","MD5Support.GetInstance Method\u0000html/M_AsterNET_Util_MD5Support_GetInstance.htm\u0000115","MD5Support.GetInstance Method (String)\u0000html/M_AsterNET_Util_MD5Support_GetInstance_1.htm\u0000148","MD5Support.Update Method\u0000html/M_AsterNET_Util_MD5Support_Update.htm\u0000148","MD5Support Constructor\u0000html/M_AsterNET_Util_MD5Support__ctor.htm\u0000120","ThreadClass.Interrupt Method\u0000html/M_AsterNET_Util_ThreadClass_Interrupt.htm\u000090","ThreadClass.Run Method\u0000html/M_AsterNET_Util_ThreadClass_Run.htm\u0000102","ThreadClass.Start Method\u0000html/M_AsterNET_Util_ThreadClass_Start.htm\u000096","ThreadClass Constructor\u0000html/M_AsterNET_Util_ThreadClass__ctor.htm\u000086","ThreadClass Constructor (String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_1.htm\u0000119","ThreadClass Constructor (ThreadStart)\u0000html/M_AsterNET_Util_ThreadClass__ctor_2.htm\u0000130","ThreadClass Constructor (ThreadStart, String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_3.htm\u0000163","ThreadPool.AddJob Method\u0000html/M_AsterNET_Util_ThreadPool_AddJob.htm\u0000149","ThreadPool.Shutdown Method\u0000html/M_AsterNET_Util_ThreadPool_Shutdown.htm\u0000109","ThreadPool Constructor\u0000html/M_AsterNET_Util_ThreadPool__ctor.htm\u0000165","AsterNET Namespace\u0000html/N_AsterNET.htm\u000032","AsterNET.FastAGI Namespace\u0000html/N_AsterNET_FastAGI.htm\u0000270","AsterNET.FastAGI.Command Namespace\u0000html/N_AsterNET_FastAGI_Command.htm\u00001586","AsterNET.FastAGI.MappingStrategies Namespace\u0000html/N_AsterNET_FastAGI_MappingStrategies.htm\u0000121","AsterNET.IO Namespace\u0000html/N_AsterNET_IO.htm\u000025","AsterNET.Manager Namespace\u0000html/N_AsterNET_Manager.htm\u00001385","AsterNET.Manager.Action Namespace\u0000html/N_AsterNET_Manager_Action.htm\u00001633","AsterNET.Manager.Event Namespace\u0000html/N_AsterNET_Manager_Event.htm\u00002289","AsterNET.Manager.Response Namespace\u0000html/N_AsterNET_Manager_Response.htm\u0000303","AsterNET.Util Namespace\u0000html/N_AsterNET_Util.htm\u000046","AGIChannel Constructor\u0000html/Overload_AsterNET_FastAGI_AGIChannel__ctor.htm\u000056","AGIException Constructor\u0000html/Overload_AsterNET_FastAGI_AGIException__ctor.htm\u000061","AGIReply Constructor\u0000html/Overload_AsterNET_FastAGI_AGIReply__ctor.htm\u000046","AGIScript.ControlStreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000441","AGIScript.DatabaseDelTree Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u000066","AGIScript.Exec Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_Exec.htm\u000043","AGIScript.GetData Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetData.htm\u0000156","AGIScript.GetFullVariable Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u000077","AGIScript.GetOption Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000132","AGIScript.PlayMusicOnHold Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000041","AGIScript.RecordFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000245","AGIScript.SayAlpha Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u000060","AGIScript.SayDateTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000133","AGIScript.SayDigits Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDigits.htm\u000059","AGIScript.SayNumber Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayNumber.htm\u000058","AGIScript.SayPhonetic Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u000064","AGIScript.SayTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayTime.htm\u000058","AGIScript.SetPriority Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SetPriority.htm\u000051","AGIScript.StreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_StreamFile.htm\u000056","AsteriskFastAGI Constructor\u0000html/Overload_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u0000104","ChannelStatusCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000047","ControlStreamFileCommand.ControlDigits Method\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u000060","ControlStreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000191","DatabaseDelCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u000051","DatabaseDelTreeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u000043","ExecCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u000043","GetDataCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u000078","GetFullVariableCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u000043","GetOptionCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u000058","HangupCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000051","ReceiveCharCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000050","ReceiveTextCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000053","RecordFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u000059","SayAlphaCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u000043","SayDateTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000152","SayDigitsCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u000043","SayNumberCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u000043","SayPhoneticCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u000043","SayTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u000043","SetMusicOnCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000057","SetPriorityCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u000041","StreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u000071","WaitForDigitCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000051","GeneralMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000058","ResourceMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000045","MappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000044","Logger.Debug Method\u0000html/Overload_AsterNET_Logger_Debug.htm\u000041","Logger.Error Method\u0000html/Overload_AsterNET_Logger_Error.htm\u000041","Logger.Info Method\u0000html/Overload_AsterNET_Logger_Info.htm\u000041","Logger.Visible Method\u0000html/Overload_AsterNET_Logger_Visible.htm\u000054","Logger.Warning Method\u0000html/Overload_AsterNET_Logger_Warning.htm\u000041","AbsoluteTimeoutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000048","AgentCallbackLoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000082","AgentLogoffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000060","AOCMessageAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000075","AtxferAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000041","BridgeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000049","ChallengeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000055","ChangeMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000059","CommandAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CommandAction__ctor.htm\u000043","ConfbridgeKickAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000049","ConfbridgeLockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000039","ConfbridgeMuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000049","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000043","ConfbridgeStartRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000151","ConfbridgeStopRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000041","ConfbridgeUnlockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000039","ConfbridgeUnmuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000049","CreateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u000095","DBDelAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000058","DBDelTreeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000055","DBGetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000058","DBPutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000060","EventsAction Constructor\u0000html/Overload_AsterNET_Manager_Action_EventsAction__ctor.htm\u000051","GetConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000041","GetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000065","HangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_HangupAction__ctor.htm\u000046","LoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_LoginAction__ctor.htm\u0000107","MailboxCountAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000053","MailboxStatusAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000049","MonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MonitorAction__ctor.htm\u0000116","ParkAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ParkAction__ctor.htm\u000051","QueueAddAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u0000111","QueueLogAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000049","QueuePauseAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u0000124","QueuePenaltyAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000049","QueueReloadAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000067","QueueRemoveAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000054","QueueResetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000037","QueueRuleAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000045","RedirectAction Constructor\u0000html/Overload_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000090","SetCDRUserFieldAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000090","SetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000078","SIPShowPeerAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000049","StopMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000047","UpdateConfigAction.AddCommand Method\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000123","UpdateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000065","ZapDialOffhookAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000052","ZapDNDOffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000053","ZapDNDOnAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000053","ZapHangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000058","AuthenticationFailedException Constructor\u0000html/Overload_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u000052","AbstractConfbridgeEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000045","FailedACLEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000045","ManagerEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000042","ManagerConnection.BuildAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_BuildAction.htm\u000033","ManagerConnection.Login Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_Login.htm\u000087","ManagerConnection.SendAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendAction.htm\u000052","ManagerConnection.SendEventGeneratingAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u000033","ManagerConnection Constructor\u0000html/Overload_AsterNET_Manager_ManagerConnection__ctor.htm\u000070","ManagerException Constructor\u0000html/Overload_AsterNET_Manager_ManagerException__ctor.htm\u000052","ManagerError Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerError__ctor.htm\u000046","ManagerResponse Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000049","MD5Support.GetInstance Method\u0000html/Overload_AsterNET_Util_MD5Support_GetInstance.htm\u000053","ThreadClass Constructor\u0000html/Overload_AsterNET_Util_ThreadClass__ctor.htm\u000071","AGIChannel Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIChannel.htm\u000037","AGIException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIException.htm\u0000200","AGIHangupException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIHangupException.htm\u0000200","AGINetworkException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGINetworkException.htm\u0000200","AGIReply Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIReply.htm\u0000104","AGIRequest Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIRequest.htm\u0000212","AGIScript Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIScript.htm\u000032","AsteriskFastAGI Properties\u0000html/Properties_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000105","ChannelStatusCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u000033","ControlStreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u000096","DatabaseDelCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u000056","DatabaseDelTreeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u000052","DatabaseGetCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u000044","DatabasePutCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u000060","ExecCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ExecCommand.htm\u000054","GetDataCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000108","GetFullVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u000052","GetOptionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u000075","GetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u000033","HangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_HangupCommand.htm\u000042","ReceiveCharCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u000047","ReceiveTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u000047","RecordFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000117","SayAlphaCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u000055","SayDateTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u000097","SayDigitsCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u000055","SayNumberCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u000054","SayPhoneticCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u000054","SayTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u000065","SendImageCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u000040","SendTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u000040","SetAutoHangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u000047","SetCallerIdCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u000039","SetContextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u000044","SetExtensionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u000044","SetMusicOnCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u000045","SetPriorityCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u000058","SetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u000051","StreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u000081","TDDModeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u000072","VerboseCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u000048","WaitForDigitCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u000048","InvalidCommandSyntaxException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000228","InvalidOrUnknownCommandException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000200","ResourceMappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u000033","ScriptMapping Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u000081","MappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategy.htm\u000032","SocketConnection Properties\u0000html/Properties_T_AsterNET_IO_SocketConnection.htm\u000048","AbsoluteTimeoutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000159","AgentCallbackLoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000280","AgentLogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000175","AgentsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentsAction.htm\u0000138","AgiAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgiAction.htm\u0000140","AOCMessageAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000138","AtxferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AtxferAction.htm\u0000146","BridgeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_BridgeAction.htm\u0000127","ChallengeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000155","ChangeMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000174","CommandAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CommandAction.htm\u0000151","ConfbridgeKickAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000126","ConfbridgeListAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000125","ConfbridgeListRoomsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000124","ConfbridgeLockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000125","ConfbridgeMuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000126","ConfbridgeSetSingleVideoSrcAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000126","ConfbridgeStartRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000125","ConfbridgeStopRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000125","ConfbridgeUnlockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000125","ConfbridgeUnmuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000126","CoreSettingsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000124","CoreShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000124","CoreStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000124","CreateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000125","DBDelAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelAction.htm\u0000148","DBDelTreeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000148","DBGetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBGetAction.htm\u0000144","DBPutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBPutAction.htm\u0000152","EventsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_EventsAction.htm\u0000199","ExtensionStateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000161","GetConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000138","GetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetVarAction.htm\u0000176","HangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_HangupAction.htm\u0000149","LoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LoginAction.htm\u0000288","LogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LogoffAction.htm\u0000138","MailboxCountAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000183","MailboxStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000222","ManagerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerAction.htm\u0000110","ManagerActionEvent Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000138","ManagerActionResponse Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000138","MonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MonitorAction.htm\u0000243","OriginateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_OriginateAction.htm\u0000479","ParkAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkAction.htm\u0000183","ParkedCallsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000138","PingAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_PingAction.htm\u0000138","ProxyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ProxyAction.htm\u0000138","QueueAddAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000266","QueueLogAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000129","QueuePauseAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000199","QueuePenaltyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000127","QueueReloadAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000128","QueueRemoveAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000166","QueueResetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000125","QueueRuleAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000125","QueueStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000152","RedirectAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_RedirectAction.htm\u0000172","SetCDRUserFieldAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000210","SetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetVarAction.htm\u0000166","SIPPeersAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000124","SIPShowPeerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000140","StatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StatusAction.htm\u0000138","StopMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000155","UpdateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000235","ZapDialOffhookAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000166","ZapDNDOffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000158","ZapDNDOnAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000158","ZapHangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000155","ZapShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000138","ZapTransferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000155","AuthenticationFailedException Properties\u0000html/Properties_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000200","EventTimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_EventTimeoutException.htm\u0000257","AbstractAgentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000396","AbstractAgentVariables Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000360","AbstractChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000395","AbstractConfbridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000334","AbstractMeetmeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000341","AbstractParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000382","AbstractQueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000682","AgentCallbackLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000346","AgentCallbackLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000392","AgentCalledEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000400","AgentCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000457","AgentConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000449","AgentDumpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000417","AgentLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000346","AgentLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000346","AgentsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000376","AgentsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000528","AGIExecEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000338","AlarmClearEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000333","AlarmEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000358","AsyncAGIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000337","AttendedTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000399","BlindTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000368","BridgeActivityEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000350","BridgeCreateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000381","BridgeDestroyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000381","BridgeEnterEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000469","BridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000359","BridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000469","BridgeStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000339","CdrEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_CdrEvent.htm\u0000349","ChannelReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000355","ChannelUpdateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000356","ConfbridgeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000341","ConfbridgeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000343","ConfbridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000343","ConfbridgeListCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000376","ConfbridgeListEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000345","ConfbridgeListRoomsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000376","ConfbridgeListRoomsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000344","ConfbridgeStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000341","ConfbridgeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000342","ConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000355","ConnectionStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000339","DBGetResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000415","DialBeginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000470","DialEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000471","DialEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEvent.htm\u0000400","DisconnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000346","DNDStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000387","DTMFEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000337","ExtensionStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000364","FailedACLEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000336","FaxReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000516","HangupEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HangupEvent.htm\u0000478","HoldedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000397","HoldEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldEvent.htm\u0000334","JabberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JabberEvent.htm\u0000335","JitterBufStatsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000349","JoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JoinEvent.htm\u0000457","LeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000382","LinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LinkEvent.htm\u0000429","LogChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000365","ManagerEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000277","MeetmeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000355","MeetmeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000357","MeetmeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000358","MeetmeMuteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000356","MeetmeStopTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000355","MeetmeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000356","MeetmeTalkRequestEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000356","MessageWaitingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000400","MobileStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000335","ModuleLoadReportEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000336","MonitorStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000333","MonitorStopEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000333","NewAccountCodeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000335","NewCallerIdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000377","NewChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000458","NewExtenEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000396","NewStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000458","OriginateResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000383","ParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000459","ParkedCallGiveUpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000410","ParkedCallsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000376","ParkedCallTimeOutEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000410","PeerEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000461","PeerlistCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000388","PeerStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000520","PRIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PRIEvent.htm\u0000337","QueueCallerAbandonEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000337","QueueCallerJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000383","QueueCallerLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000383","QueueEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000439","QueueEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEvent.htm\u0000368","QueueMemberAddedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000695","QueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000607","QueueMemberPausedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000747","QueueMemberPauseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000788","QueueMemberPenaltyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000754","QueueMemberRemovedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000776","QueueMemberRinginuseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u0000765","QueueMemberStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000665","QueueParamsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000549","QueueStatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000376","RegistryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000514","ReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000392","RenameEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RenameEvent.htm\u0000353","ResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000362","RTCPReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000345","RTCPSentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000345","RTPReceiverStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000339","RTPSenderStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000339","ShowDialPlanCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000338","ShutdownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000407","StatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000377","StatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusEvent.htm\u0000440","TransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_TransferEvent.htm\u0000346","UnholdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000333","UnknownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000333","UnlinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000429","UnparkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000423","UserEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UserEvent.htm\u0000334","VarSetEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000352","ZapShowChannelsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000376","ZapShowChannelsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000420","IResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_IResponseHandler.htm\u000033","ManagerConnection Properties\u0000html/Properties_T_AsterNET_Manager_ManagerConnection.htm\u0000383","ManagerException Properties\u0000html/Properties_T_AsterNET_Manager_ManagerException.htm\u0000200","Originate Properties\u0000html/Properties_T_AsterNET_Manager_Originate.htm\u0000255","ResponseEventHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEventHandler.htm\u000034","ResponseEvents Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEvents.htm\u000042","ResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseHandler.htm\u000034","ChallengeResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000368","CommandResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_CommandResponse.htm\u0000369","ExtensionStateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000357","GetConfigResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000364","MailboxCountResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000385","MailboxStatusResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000388","ManagerError Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerError.htm\u0000353","ManagerResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000297","OriginateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_OriginateResponse.htm\u000040","TimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_TimeoutException.htm\u0000200","MD5Support Properties\u0000html/Properties_T_AsterNET_Util_MD5Support.htm\u000042","ThreadClass Properties\u0000html/Properties_T_AsterNET_Util_ThreadClass.htm\u000069","AGIChannel.LastReply Property\u0000html/P_AsterNET_FastAGI_AGIChannel_LastReply.htm\u0000108","AGIReply.Extra Property\u0000html/P_AsterNET_FastAGI_AGIReply_Extra.htm\u0000164","AGIReply.FirstLine Property\u0000html/P_AsterNET_FastAGI_AGIReply_FirstLine.htm\u0000118","AGIReply.Lines Property\u0000html/P_AsterNET_FastAGI_AGIReply_Lines.htm\u0000118","AGIReply.ResultCode Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCode.htm\u0000124","AGIReply.ResultCodeAsChar Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCodeAsChar.htm\u0000112","AGIRequest.AccountCode Property\u0000html/P_AsterNET_FastAGI_AGIRequest_AccountCode.htm\u0000112","AGIRequest.CallerId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerId.htm\u0000118","AGIRequest.CallerIdName Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerIdName.htm\u0000118","AGIRequest.CallingAni2 Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingAni2.htm\u0000114","AGIRequest.CallingPres Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingPres.htm\u0000114","AGIRequest.CallingTns Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTns.htm\u0000114","AGIRequest.CallingTon Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTon.htm\u0000114","AGIRequest.Channel Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Channel.htm\u0000116","AGIRequest.Context Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Context.htm\u0000118","AGIRequest.Dnid Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Dnid.htm\u0000118","AGIRequest.Enhanced Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Enhanced.htm\u0000134","AGIRequest.Extension Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Extension.htm\u0000118","AGIRequest.Language Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Language.htm\u0000113","AGIRequest.LocalAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalAddress.htm\u0000135","AGIRequest.LocalPort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalPort.htm\u0000129","AGIRequest.Priority Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Priority.htm\u0000118","AGIRequest.Rdnis Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Rdnis.htm\u0000118","AGIRequest.RemoteAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemoteAddress.htm\u0000135","AGIRequest.RemotePort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemotePort.htm\u0000129","AGIRequest.Request Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Request.htm\u0000118","AGIRequest.RequestURL Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RequestURL.htm\u0000124","AGIRequest.Script Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Script.htm\u0000112","AGIRequest.Type Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Type.htm\u0000128","AGIRequest.UniqueId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_UniqueId.htm\u0000118","AGIScript.Channel Property\u0000html/P_AsterNET_FastAGI_AGIScript_Channel.htm\u0000118","AsteriskFastAGI.BindPort Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_BindPort.htm\u0000120","AsteriskFastAGI.MappingStrategy Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_MappingStrategy.htm\u0000129","AsteriskFastAGI.PoolSize Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_PoolSize.htm\u0000133","AsteriskFastAGI.SocketEncoding Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_SocketEncoding.htm\u0000135","ChannelStatusCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_ChannelStatusCommand_Channel.htm\u0000138","ControlStreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_EscapeDigits.htm\u0000139","ControlStreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_File.htm\u0000132","ControlStreamFileCommand.ForwardDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_ForwardDigit.htm\u0000112","ControlStreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_Offset.htm\u0000126","ControlStreamFileCommand.PauseDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_PauseDigit.htm\u0000113","ControlStreamFileCommand.RewindDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_RewindDigit.htm\u0000111","DatabaseDelCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_Family.htm\u0000136","DatabaseDelCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_KeyTree.htm\u0000130","DatabaseDelTreeCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_Family.htm\u0000132","DatabaseDelTreeCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_KeyTree.htm\u0000130","DatabaseGetCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Family.htm\u0000124","DatabaseGetCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Key.htm\u0000130","DatabasePutCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Family.htm\u0000132","DatabasePutCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Key.htm\u0000130","DatabasePutCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Value.htm\u0000129","ExecCommand.Application Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Application.htm\u0000132","ExecCommand.Options Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Options.htm\u0000132","GetDataCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_File.htm\u0000137","GetDataCommand.MaxDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_MaxDigits.htm\u0000143","GetDataCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_Timeout.htm\u0000150","GetFullVariableCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Channel.htm\u0000130","GetFullVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Variable.htm\u0000132","GetOptionCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_EscapeDigits.htm\u0000134","GetOptionCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_File.htm\u0000132","GetOptionCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_Timeout.htm\u0000134","GetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm\u0000138","HangupCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_HangupCommand_Channel.htm\u0000154","ReceiveCharCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveCharCommand_Timeout.htm\u0000130","ReceiveTextCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveTextCommand_Timeout.htm\u0000130","RecordFileCommand.Beep Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Beep.htm\u0000132","RecordFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_EscapeDigits.htm\u0000134","RecordFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_File.htm\u0000132","RecordFileCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Format.htm\u0000139","RecordFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Offset.htm\u0000124","RecordFileCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Timeout.htm\u0000132","SayAlphaCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_EscapeDigits.htm\u0000135","SayAlphaCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_Text.htm\u0000130","SayDateTimeCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Format.htm\u0000133","SayDateTimeCommand.getEscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_getEscapeDigits.htm\u0000135","SayDateTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Time.htm\u0000145","SayDateTimeCommand.Timezone Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Timezone.htm\u0000133","SayDigitsCommand.Digits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_Digits.htm\u0000130","SayDigitsCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_EscapeDigits.htm\u0000135","SayNumberCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_EscapeDigits.htm\u0000135","SayNumberCommand.Number Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_Number.htm\u0000129","SayPhoneticCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_EscapeDigits.htm\u0000135","SayPhoneticCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_Text.htm\u0000129","SayTimeCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_EscapeDigits.htm\u0000135","SayTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_Time.htm\u0000137","SendImageCommand.Image Property\u0000html/P_AsterNET_FastAGI_Command_SendImageCommand_Image.htm\u0000134","SendTextCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SendTextCommand_Text.htm\u0000134","SetAutoHangupCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SetAutoHangupCommand_Time.htm\u0000142","SetCallerIdCommand.CallerId Property\u0000html/P_AsterNET_FastAGI_Command_SetCallerIdCommand_CallerId.htm\u0000128","SetContextCommand.Context Property\u0000html/P_AsterNET_FastAGI_Command_SetContextCommand_Context.htm\u0000133","SetExtensionCommand.Extension Property\u0000html/P_AsterNET_FastAGI_Command_SetExtensionCommand_Extension.htm\u0000142","SetMusicOnCommand.MusicOnHoldClass Property\u0000html/P_AsterNET_FastAGI_Command_SetMusicOnCommand_MusicOnHoldClass.htm\u0000150","SetPriorityCommand.Label Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Label.htm\u0000133","SetPriorityCommand.Priority Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Priority.htm\u0000129","SetVariableCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Value.htm\u0000129","SetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Variable.htm\u0000132","StreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_EscapeDigits.htm\u0000135","StreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_File.htm\u0000145","StreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_Offset.htm\u0000126","TDDModeCommand.Mode Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Mode.htm\u0000111","TDDModeCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Timeout.htm\u0000140","VerboseCommand.Level Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Level.htm\u0000123","VerboseCommand.Message Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Message.htm\u0000129","WaitForDigitCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_WaitForDigitCommand_Timeout.htm\u0000134","InvalidCommandSyntaxException.Synopsis Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Synopsis.htm\u0000128","InvalidCommandSyntaxException.Usage Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Usage.htm\u0000128","ResourceMappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_ResourceBundleName.htm\u0000124","ScriptMapping.PreLoadedAssembly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_PreLoadedAssembly.htm\u0000138","ScriptMapping.ScriptAssmebly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptAssmebly.htm\u0000150","ScriptMapping.ScriptClass Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptClass.htm\u0000130","ScriptMapping.ScriptName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptName.htm\u0000131","MappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategy_ResourceBundleName.htm\u0000121","SocketConnection.Encoding Property\u0000html/P_AsterNET_IO_SocketConnection_Encoding.htm\u0000118","SocketConnection.Initial Property\u0000html/P_AsterNET_IO_SocketConnection_Initial.htm\u0000129","SocketConnection.IsConnected Property\u0000html/P_AsterNET_IO_SocketConnection_IsConnected.htm\u0000107","SocketConnection.LocalAddress Property\u0000html/P_AsterNET_IO_SocketConnection_LocalAddress.htm\u0000118","SocketConnection.LocalPort Property\u0000html/P_AsterNET_IO_SocketConnection_LocalPort.htm\u0000114","SocketConnection.NetworkStream Property\u0000html/P_AsterNET_IO_SocketConnection_NetworkStream.htm\u0000118","SocketConnection.RemoteAddress Property\u0000html/P_AsterNET_IO_SocketConnection_RemoteAddress.htm\u0000118","SocketConnection.RemotePort Property\u0000html/P_AsterNET_IO_SocketConnection_RemotePort.htm\u0000114","SocketConnection.TcpClient Property\u0000html/P_AsterNET_IO_SocketConnection_TcpClient.htm\u0000118","AbsoluteTimeoutAction.Action Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Action.htm\u0000131","AbsoluteTimeoutAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Channel.htm\u0000130","AbsoluteTimeoutAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Timeout.htm\u0000127","AgentCallbackLoginAction.AckCall Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_AckCall.htm\u0000165","AgentCallbackLoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Action.htm\u0000131","AgentCallbackLoginAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Agent.htm\u0000145","AgentCallbackLoginAction.Context Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Context.htm\u0000134","AgentCallbackLoginAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Exten.htm\u0000137","AgentCallbackLoginAction.WrapupTime Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_WrapupTime.htm\u0000157","AgentLogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Action.htm\u0000136","AgentLogoffAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Agent.htm\u0000168","AgentLogoffAction.Soft Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Soft.htm\u0000155","AgentsAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentsAction_Action.htm\u0000131","AgiAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Action.htm\u0000131","AgiAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Channel.htm\u0000138","AgiAction.Command Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Command.htm\u0000138","AOCMessageAction.Action Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Action.htm\u0000133","AOCMessageAction.AocBillingId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_AocBillingId.htm\u0000138","AOCMessageAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Channel.htm\u0000138","AOCMessageAction.ChannelPrefix Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChannelPrefix.htm\u0000138","AOCMessageAction.ChargeType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargeType.htm\u0000138","AOCMessageAction.ChargingAssociationId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationId.htm\u0000138","AOCMessageAction.ChargingAssociationNumber Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationNumber.htm\u0000138","AOCMessageAction.ChargingrAssociationPlan Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingrAssociationPlan.htm\u0000138","AOCMessageAction.CurrencyAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyAmount.htm\u0000138","AOCMessageAction.CurrencyMultiplier Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyMultiplier.htm\u0000138","AOCMessageAction.CurrencyName Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyName.htm\u0000138","AOCMessageAction.MsgType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_MsgType.htm\u0000138","AOCMessageAction.TotalType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_TotalType.htm\u0000138","AOCMessageAction.UnitAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitAmount.htm\u0000132","AOCMessageAction.UnitType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitType.htm\u0000132","AtxferAction.Action Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Action.htm\u0000133","AtxferAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Channel.htm\u0000125","AtxferAction.Context Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Context.htm\u0000127","AtxferAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Exten.htm\u0000127","AtxferAction.Priority Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Priority.htm\u0000127","BridgeAction.Action Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Action.htm\u0000133","BridgeAction.Channel1 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel1.htm\u0000138","BridgeAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel2.htm\u0000138","BridgeAction.Tone Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Tone.htm\u0000138","ChallengeAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_Action.htm\u0000131","ChallengeAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_AuthType.htm\u0000138","ChangeMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Action.htm\u0000131","ChangeMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Channel.htm\u0000136","ChangeMonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_File.htm\u0000142","CommandAction.Action Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Action.htm\u0000131","CommandAction.Command Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Command.htm\u0000134","ConfbridgeKickAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Action.htm\u0000133","ConfbridgeKickAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Channel.htm\u0000138","ConfbridgeKickAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Conference.htm\u0000138","ConfbridgeListAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Action.htm\u0000133","ConfbridgeListAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Conference.htm\u0000138","ConfbridgeListRoomsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListRoomsAction_Action.htm\u0000133","ConfbridgeLockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Action.htm\u0000133","ConfbridgeLockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Conference.htm\u0000138","ConfbridgeMuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Action.htm\u0000133","ConfbridgeMuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Channel.htm\u0000138","ConfbridgeMuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Conference.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Action.htm\u0000133","ConfbridgeSetSingleVideoSrcAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Channel.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Conference.htm\u0000138","ConfbridgeStartRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Action.htm\u0000133","ConfbridgeStartRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Conference.htm\u0000138","ConfbridgeStopRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Action.htm\u0000133","ConfbridgeStopRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Conference.htm\u0000138","ConfbridgeUnlockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Action.htm\u0000133","ConfbridgeUnlockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Conference.htm\u0000138","ConfbridgeUnmuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Action.htm\u0000133","ConfbridgeUnmuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Channel.htm\u0000138","ConfbridgeUnmuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Conference.htm\u0000138","CoreSettingsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreSettingsAction_Action.htm\u0000133","CoreShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreShowChannelsAction_Action.htm\u0000133","CoreStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreStatusAction_Action.htm\u0000133","CreateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Action.htm\u0000133","CreateConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Filename.htm\u0000138","DBDelAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Action.htm\u0000133","DBDelAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Family.htm\u0000133","DBDelAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Key.htm\u0000133","DBDelTreeAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Action.htm\u0000133","DBDelTreeAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Family.htm\u0000133","DBDelTreeAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Key.htm\u0000133","DBGetAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Action.htm\u0000133","DBGetAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Family.htm\u0000135","DBGetAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Key.htm\u0000133","DBPutAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Action.htm\u0000133","DBPutAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Family.htm\u0000132","DBPutAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Key.htm\u0000130","DBPutAction.Val Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Val.htm\u0000129","EventsAction.Action Property\u0000html/P_AsterNET_Manager_Action_EventsAction_Action.htm\u0000131","EventsAction.EventMask Property\u0000html/P_AsterNET_Manager_Action_EventsAction_EventMask.htm\u0000182","ExtensionStateAction.Action Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Action.htm\u0000131","ExtensionStateAction.Context Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Context.htm\u0000136","ExtensionStateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Exten.htm\u0000129","GetConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Action.htm\u0000124","GetConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Filename.htm\u0000128","GetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Action.htm\u0000131","GetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Channel.htm\u0000148","GetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Variable.htm\u0000132","HangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Action.htm\u0000131","HangupAction.Channel Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Channel.htm\u0000132","LoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Action.htm\u0000131","LoginAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_LoginAction_AuthType.htm\u0000158","LoginAction.Events Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Events.htm\u0000182","LoginAction.Key Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Key.htm\u0000127","LoginAction.Secret Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Secret.htm\u0000155","LoginAction.Username Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Username.htm\u0000133","LogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_LogoffAction_Action.htm\u0000131","MailboxCountAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Action.htm\u0000131","MailboxCountAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Mailbox.htm\u0000166","MailboxStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Action.htm\u0000131","MailboxStatusAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Mailbox.htm\u0000205","ManagerAction.Action Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Action.htm\u0000124","ManagerAction.ActionId Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ActionId.htm\u0000138","ManagerAction.ProxyKey Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ProxyKey.htm\u0000151","ManagerAction.Server Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Server.htm\u0000182","MonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Action.htm\u0000131","MonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Channel.htm\u0000137","MonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_File.htm\u0000166","MonitorAction.Format Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Format.htm\u0000147","MonitorAction.Mix Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Mix.htm\u0000133","OriginateAction.Account Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Account.htm\u0000155","OriginateAction.Action Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Action.htm\u0000131","OriginateAction.Application Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Application.htm\u0000135","OriginateAction.Async Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Async.htm\u0000153","OriginateAction.CallerId Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_CallerId.htm\u0000134","OriginateAction.Channel Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Channel.htm\u0000148","OriginateAction.Context Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Context.htm\u0000152","OriginateAction.Data Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Data.htm\u0000147","OriginateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Exten.htm\u0000146","OriginateAction.Priority Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Priority.htm\u0000150","OriginateAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Timeout.htm\u0000164","OriginateAction.Variable Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Variable.htm\u0000289","ParkAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Action.htm\u0000131","ParkAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel.htm\u0000129","ParkAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel2.htm\u0000137","ParkAction.Parkinglot Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Parkinglot.htm\u0000127","ParkAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Timeout.htm\u0000136","ParkedCallsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkedCallsAction_Action.htm\u0000131","PingAction.Action Property\u0000html/P_AsterNET_Manager_Action_PingAction_Action.htm\u0000131","QueueAddAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Action.htm\u0000131","QueueAddAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Interface.htm\u0000153","QueueAddAction.MemberName Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_MemberName.htm\u0000129","QueueAddAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Paused.htm\u0000139","QueueAddAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Penalty.htm\u0000158","QueueAddAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Queue.htm\u0000142","QueueLogAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Action.htm\u0000133","QueueLogAction.Event Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Event.htm\u0000138","QueueLogAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Interface.htm\u0000138","QueueLogAction.Message Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Message.htm\u0000138","QueueLogAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Queue.htm\u0000138","QueueLogAction.Uniqueid Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Uniqueid.htm\u0000138","QueuePauseAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Action.htm\u0000131","QueuePauseAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Interface.htm\u0000140","QueuePauseAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Paused.htm\u0000139","QueuePauseAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Queue.htm\u0000139","QueuePenaltyAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Action.htm\u0000133","QueuePenaltyAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Interface.htm\u0000138","QueuePenaltyAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Penalty.htm\u0000138","QueuePenaltyAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Queue.htm\u0000138","QueueReloadAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Action.htm\u0000133","QueueReloadAction.Members Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Members.htm\u0000138","QueueReloadAction.Parameters Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Parameters.htm\u0000138","QueueReloadAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Queue.htm\u0000138","QueueReloadAction.Rules Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Rules.htm\u0000138","QueueRemoveAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Action.htm\u0000131","QueueRemoveAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Interface.htm\u0000134","QueueRemoveAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Queue.htm\u0000136","QueueResetAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Action.htm\u0000133","QueueResetAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Queue.htm\u0000138","QueueRuleAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Action.htm\u0000133","QueueRuleAction.Rule Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Rule.htm\u0000138","QueueStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Action.htm\u0000131","QueueStatusAction.Member Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Member.htm\u0000128","QueueStatusAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Queue.htm\u0000128","RedirectAction.Action Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Action.htm\u0000131","RedirectAction.Channel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Channel.htm\u0000138","RedirectAction.Context Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Context.htm\u0000128","RedirectAction.Exten Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Exten.htm\u0000128","RedirectAction.ExtraChannel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_ExtraChannel.htm\u0000133","RedirectAction.Priority Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Priority.htm\u0000122","SetCDRUserFieldAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Action.htm\u0000131","SetCDRUserFieldAction.Append Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Append.htm\u0000146","SetCDRUserFieldAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Channel.htm\u0000142","SetCDRUserFieldAction.UserField Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_UserField.htm\u0000141","SetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Action.htm\u0000131","SetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Channel.htm\u0000130","SetVarAction.Value Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Value.htm\u0000129","SetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Variable.htm\u0000132","SIPPeersAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPPeersAction_Action.htm\u0000133","SIPShowPeerAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Action.htm\u0000133","SIPShowPeerAction.Peer Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Peer.htm\u0000137","StatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_StatusAction_Action.htm\u0000131","StopMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Action.htm\u0000131","StopMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Channel.htm\u0000138","UpdateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Action.htm\u0000124","UpdateConfigAction.Actions Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Actions.htm\u0000207","UpdateConfigAction.DstFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_DstFileName.htm\u0000128","UpdateConfigAction.Reload Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Reload.htm\u0000155","UpdateConfigAction.SrcFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_SrcFileName.htm\u0000128","ZapDialOffhookAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Action.htm\u0000131","ZapDialOffhookAction.Number Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Number.htm\u0000134","ZapDialOffhookAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_ZapChannel.htm\u0000130","ZapDNDOffAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_Action.htm\u0000131","ZapDNDOffAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_ZapChannel.htm\u0000135","ZapDNDOnAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_Action.htm\u0000131","ZapDNDOnAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_ZapChannel.htm\u0000135","ZapHangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_Action.htm\u0000131","ZapHangupAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_ZapChannel.htm\u0000132","ZapShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapShowChannelsAction_Action.htm\u0000131","ZapTransferAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_Action.htm\u0000131","ZapTransferAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_ZapChannel.htm\u0000132","EventTimeoutException.PartialResult Property\u0000html/P_AsterNET_Manager_EventTimeoutException_PartialResult.htm\u0000190","AbstractAgentEvent.Member Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Member.htm\u0000131","AbstractAgentEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_MemberName.htm\u0000131","AbstractAgentEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Queue.htm\u0000130","AbstractAgentVariables.Variable Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentVariables_Variable.htm\u0000252","AbstractChannelEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_AccountCode.htm\u0000126","AbstractChannelEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerId.htm\u0000142","AbstractChannelEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdName.htm\u0000138","AbstractChannelEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdNum.htm\u0000142","AbstractChannelEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelState.htm\u0000126","AbstractChannelEvent.ChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelStateDesc.htm\u0000127","AbstractChannelEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ConnectedLineName.htm\u0000138","AbstractChannelEvent.Connectedlinenum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_Connectedlinenum.htm\u0000138","AbstractChannelEvent.State Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_State.htm\u0000138","AbstractConfbridgeEvent.Conference Property\u0000html/P_AsterNET_Manager_Event_AbstractConfbridgeEvent_Conference.htm\u0000138","AbstractMeetmeEvent.Meetme Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Meetme.htm\u0000128","AbstractMeetmeEvent.Usernum Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Usernum.htm\u0000132","AbstractParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerId.htm\u0000133","AbstractParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdName.htm\u0000133","AbstractParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdNum.htm\u0000133","AbstractParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_Exten.htm\u0000134","AbstractQueueMemberEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_CallsTaken.htm\u0000134","AbstractQueueMemberEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_InCall.htm\u0000137","AbstractQueueMemberEvent.Interface Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Interface.htm\u0000138","AbstractQueueMemberEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_LastCall.htm\u0000149","AbstractQueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm\u0000158","AbstractQueueMemberEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_MemberName.htm\u0000137","AbstractQueueMemberEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Membership.htm\u0000169","AbstractQueueMemberEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Paused.htm\u0000146","AbstractQueueMemberEvent.PausedReason Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_PausedReason.htm\u0000143","AbstractQueueMemberEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Penalty.htm\u0000144","AbstractQueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Queue.htm\u0000128","AbstractQueueMemberEvent.Ringinuse Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Ringinuse.htm\u0000131","AbstractQueueMemberEvent.StateInterface Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_StateInterface.htm\u0000142","AbstractQueueMemberEvent.Status Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Status.htm\u0000148","AgentCallbackLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_Agent.htm\u0000133","AgentCallbackLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Agent.htm\u0000142","AgentCallbackLogoffEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginTime.htm\u0000138","AgentCallbackLogoffEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Reason.htm\u0000174","AgentCalledEvent.AgentCalled Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentCalled.htm\u0000138","AgentCalledEvent.AgentName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentName.htm\u0000138","AgentCalledEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerId.htm\u0000138","AgentCalledEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdName.htm\u0000133","AgentCalledEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdNum.htm\u0000133","AgentCalledEvent.ChannelCalling Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_ChannelCalling.htm\u0000138","AgentCalledEvent.Context Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Context.htm\u0000138","AgentCalledEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_DestinationChannel.htm\u0000138","AgentCalledEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Extension.htm\u0000138","AgentCalledEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Priority.htm\u0000138","AgentCalledEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Queue.htm\u0000138","AgentCompleteEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_HoldTime.htm\u0000131","AgentCompleteEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_Reason.htm\u0000134","AgentCompleteEvent.TalkTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_TalkTime.htm\u0000132","AgentConnectEvent.BridgedChannel Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_BridgedChannel.htm\u0000127","AgentConnectEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_HoldTime.htm\u0000131","AgentConnectEvent.RingTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_RingTime.htm\u0000131","AgentLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_Agent.htm\u0000133","AgentLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_LoginChan.htm\u0000138","AgentLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_Agent.htm\u0000133","AgentLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_LoginTime.htm\u0000138","AgentsEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Agent.htm\u0000127","AgentsEvent.LoggedInChan Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInChan.htm\u0000146","AgentsEvent.LoggedInTime Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInTime.htm\u0000145","AgentsEvent.Name Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Name.htm\u0000130","AgentsEvent.Status Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Status.htm\u0000179","AgentsEvent.TalkingTo Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_TalkingTo.htm\u0000148","AGIExecEvent.Command Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Command.htm\u0000138","AGIExecEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_CommandId.htm\u0000135","AGIExecEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Result.htm\u0000138","AGIExecEvent.ResultCode Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_ResultCode.htm\u0000132","AGIExecEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_SubEvent.htm\u0000138","AlarmEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_AlarmEvent_Alarm.htm\u0000146","AsyncAGIEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_CommandId.htm\u0000138","AsyncAGIEvent.Env Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Env.htm\u0000138","AsyncAGIEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Result.htm\u0000138","AsyncAGIEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_SubEvent.htm\u0000138","AttendedTransferEvent.DestBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestBridgeUniqueId.htm\u0000138","AttendedTransferEvent.DestType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestType.htm\u0000138","AttendedTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_IsExternal.htm\u0000132","AttendedTransferEvent.OrigBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeCreator.htm\u0000138","AttendedTransferEvent.OrigBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeName.htm\u0000138","AttendedTransferEvent.OrigBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeNumChannels.htm\u0000138","AttendedTransferEvent.OrigBridgetechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgetechnology.htm\u0000138","AttendedTransferEvent.OrigBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeType.htm\u0000138","AttendedTransferEvent.OrigBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeUniqueId.htm\u0000138","AttendedTransferEvent.OrigTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererAccountCode.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridName.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.OrigTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannel.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelState.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.OrigTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererContext.htm\u0000138","AttendedTransferEvent.OrigTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererLanguage.htm\u0000138","AttendedTransferEvent.OrigTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererPriority.htm\u0000138","AttendedTransferEvent.OrigTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererUniqueId.htm\u0000138","AttendedTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_Result.htm\u0000132","AttendedTransferEvent.SecondBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeCreator.htm\u0000138","AttendedTransferEvent.SecondBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeName.htm\u0000138","AttendedTransferEvent.SecondBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeNumChannels.htm\u0000138","AttendedTransferEvent.SecondBridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeTechnology.htm\u0000138","AttendedTransferEvent.SecondBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeType.htm\u0000138","AttendedTransferEvent.SecondBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeUniqueId.htm\u0000138","AttendedTransferEvent.SecondTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererAccountCode.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridName.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.SecondTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannel.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelState.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.SecondTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererContext.htm\u0000138","AttendedTransferEvent.SecondTransfererExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererExten.htm\u0000138","AttendedTransferEvent.SecondTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererLanguage.htm\u0000138","AttendedTransferEvent.SecondTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererPriority.htm\u0000138","AttendedTransferEvent.SecondTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererUniqueId.htm\u0000138","AttendedTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeAccountCode.htm\u0000138","AttendedTransferEvent.TransfereeCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridName.htm\u0000138","AttendedTransferEvent.TransfereeCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridNum.htm\u0000138","AttendedTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannel.htm\u0000138","AttendedTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelState.htm\u0000138","AttendedTransferEvent.TransfereeChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineName.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeContext.htm\u0000138","AttendedTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeExten.htm\u0000138","AttendedTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeLanguage.htm\u0000138","AttendedTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereePriority.htm\u0000138","AttendedTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeUniqueId.htm\u0000138","AttendedTransferEvent.TransferTargetAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetAccountCode.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridName.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridNum.htm\u0000138","AttendedTransferEvent.TransferTargetChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannel.htm\u0000138","AttendedTransferEvent.TransferTargetChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelState.htm\u0000138","AttendedTransferEvent.TransferTargetChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineName.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransferTargetContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetContext.htm\u0000138","AttendedTransferEvent.TransferTargetLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetLanguage.htm\u0000138","AttendedTransferEvent.TransferTargetPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetPriority.htm\u0000138","AttendedTransferEvent.TransferTargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetUniqueId.htm\u0000138","BlindTransferEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeCreator.htm\u0000138","BlindTransferEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeName.htm\u0000138","BlindTransferEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeNumChannels.htm\u0000138","BlindTransferEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeTechnology.htm\u0000138","BlindTransferEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeType.htm\u0000138","BlindTransferEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeUniqueId.htm\u0000138","BlindTransferEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Context.htm\u0000138","BlindTransferEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Extension.htm\u0000138","BlindTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_IsExternal.htm\u0000138","BlindTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Result.htm\u0000132","BlindTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeAccountCode.htm\u0000138","BlindTransferEvent.TransfereeCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdName.htm\u0000138","BlindTransferEvent.TransfereeCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdNum.htm\u0000138","BlindTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannel.htm\u0000138","BlindTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelState.htm\u0000138","BlindTransferEvent.TransfereeChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelStateDesc.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineName.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeContext.htm\u0000138","BlindTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeExten.htm\u0000138","BlindTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeLanguage.htm\u0000138","BlindTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereePriority.htm\u0000138","BlindTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeUniqueId.htm\u0000138","BlindTransferEvent.TransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererAccountCode.htm\u0000138","BlindTransferEvent.TransfererCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdName.htm\u0000138","BlindTransferEvent.TransfererCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdNum.htm\u0000138","BlindTransferEvent.TransfererChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannel.htm\u0000138","BlindTransferEvent.TransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelState.htm\u0000138","BlindTransferEvent.TransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelStatedesc.htm\u0000138","BlindTransferEvent.TransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineName.htm\u0000138","BlindTransferEvent.TransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfererContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererContext.htm\u0000138","BlindTransferEvent.TransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererLanguage.htm\u0000138","BlindTransferEvent.TransfererPriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererPriority.htm\u0000138","BlindTransferEvent.TransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererUniqueId.htm\u0000138","BridgeActivityEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_AccountCode.htm\u0000138","BridgeActivityEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeCreator.htm\u0000138","BridgeActivityEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeName.htm\u0000138","BridgeActivityEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeNumChannels.htm\u0000138","BridgeActivityEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeTechnology.htm\u0000138","BridgeActivityEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeType.htm\u0000138","BridgeActivityEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeUniqueId.htm\u0000138","BridgeActivityEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdName.htm\u0000138","BridgeActivityEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdNum.htm\u0000138","BridgeActivityEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelState.htm\u0000138","BridgeActivityEvent.ChannelStatedDesc Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelStatedDesc.htm\u0000138","BridgeActivityEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineName.htm\u0000138","BridgeActivityEvent.ConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineNum.htm\u0000138","BridgeActivityEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Context.htm\u0000138","BridgeActivityEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Exten.htm\u0000138","BridgeActivityEvent.Language Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Language.htm\u0000138","BridgeActivityEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Priority.htm\u0000138","BridgeEvent.BridgeState Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeState.htm\u0000139","BridgeEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeType.htm\u0000139","BridgeEvent.CallerId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId1.htm\u0000138","BridgeEvent.CallerId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId2.htm\u0000138","BridgeEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel1.htm\u0000138","BridgeEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel2.htm\u0000138","BridgeEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Reason.htm\u0000138","BridgeEvent.Response Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Response.htm\u0000138","BridgeEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId1.htm\u0000138","BridgeEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId2.htm\u0000138","BridgeStateEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeCreator.htm\u0000138","BridgeStateEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeName.htm\u0000138","BridgeStateEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeNumChannels.htm\u0000132","BridgeStateEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeTechnology.htm\u0000138","BridgeStateEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeType.htm\u0000138","BridgeStateEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeUniqueId.htm\u0000138","CdrEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AccountCode.htm\u0000138","CdrEvent.AmaFlags Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AmaFlags.htm\u0000138","CdrEvent.AnswerTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AnswerTime.htm\u0000138","CdrEvent.BillableSeconds Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_BillableSeconds.htm\u0000135","CdrEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_CallerId.htm\u0000138","CdrEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Destination.htm\u0000138","CdrEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationChannel.htm\u0000138","CdrEvent.DestinationContext Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationContext.htm\u0000138","CdrEvent.Disposition Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Disposition.htm\u0000138","CdrEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Duration.htm\u0000135","CdrEvent.EndTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_EndTime.htm\u0000138","CdrEvent.LastApplication Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastApplication.htm\u0000138","CdrEvent.LastData Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastData.htm\u0000138","CdrEvent.Src Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Src.htm\u0000138","CdrEvent.StartTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_StartTime.htm\u0000138","CdrEvent.UserField Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_UserField.htm\u0000138","ChannelReloadEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ChannelType.htm\u0000131","ChannelReloadEvent.PeerCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_PeerCount.htm\u0000132","ChannelReloadEvent.RegistryCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_RegistryCount.htm\u0000132","ChannelReloadEvent.ReloadReason Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ReloadReason.htm\u0000130","ChannelReloadEvent.UserCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_UserCount.htm\u0000132","ChannelUpdateEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_ChannelType.htm\u0000137","ChannelUpdateEvent.GTalkSID Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_GTalkSID.htm\u0000138","ChannelUpdateEvent.IAX2CallnoLocal Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoLocal.htm\u0000138","ChannelUpdateEvent.IAX2CallnoRemote Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoRemote.htm\u0000138","ChannelUpdateEvent.IAX2Peer Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2Peer.htm\u0000138","ChannelUpdateEvent.PeerName Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_PeerName.htm\u0000138","ChannelUpdateEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipCallId.htm\u0000138","ChannelUpdateEvent.SipFullContact Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipFullContact.htm\u0000138","ConfbridgeJoinEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDname.htm\u0000138","ConfbridgeJoinEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDnum.htm\u0000138","ConfbridgeLeaveEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDname.htm\u0000138","ConfbridgeLeaveEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDnum.htm\u0000138","ConfbridgeListEvent.Admin Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_Admin.htm\u0000138","ConfbridgeListEvent.CallerIDName Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDName.htm\u0000138","ConfbridgeListEvent.CallerIDNum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDNum.htm\u0000138","ConfbridgeListEvent.MarkedUser Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_MarkedUser.htm\u0000138","ConfbridgeListRoomsEvent.Locked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Locked.htm\u0000138","ConfbridgeListRoomsEvent.Marked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Marked.htm\u0000132","ConfbridgeListRoomsEvent.Parties Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Parties.htm\u0000132","ConfbridgeTalkingEvent.TalkingStatus Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeTalkingEvent_TalkingStatus.htm\u0000138","ConnectEvent.ProtocolIdentifier Property\u0000html/P_AsterNET_Manager_Event_ConnectEvent_ProtocolIdentifier.htm\u0000130","ConnectionStateEvent.Reconnect Property\u0000html/P_AsterNET_Manager_Event_ConnectionStateEvent_Reconnect.htm\u0000121","DBGetResponseEvent.Family Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Family.htm\u0000134","DBGetResponseEvent.Key Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Key.htm\u0000134","DBGetResponseEvent.Val Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Val.htm\u0000134","DialEndEvent.Forward Property\u0000html/P_AsterNET_Manager_Event_DialEndEvent_Forward.htm\u0000138","DialEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerId.htm\u0000128","DialEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdName.htm\u0000129","DialEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdNum.htm\u0000129","DialEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Destination.htm\u0000131","DialEvent.DestUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DestUniqueId.htm\u0000132","DialEvent.DialStatus Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialStatus.htm\u0000138","DialEvent.DialString Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialString.htm\u0000138","DialEvent.Src Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Src.htm\u0000130","DialEvent.SrcUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SrcUniqueId.htm\u0000132","DialEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SubEvent.htm\u0000138","DNDStateEvent.State Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_State.htm\u0000148","DNDStateEvent.Status Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_Status.htm\u0000148","DTMFEvent.Begin Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Begin.htm\u0000132","DTMFEvent.Digit Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Digit.htm\u0000138","DTMFEvent.Direction Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Direction.htm\u0000138","DTMFEvent.End Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_End.htm\u0000132","ExtensionStatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Context.htm\u0000130","ExtensionStatusEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Exten.htm\u0000127","ExtensionStatusEvent.Hint Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Hint.htm\u0000128","ExtensionStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Status.htm\u0000124","FailedACLEvent.ACLName Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_ACLName.htm\u0000138","FailedACLEvent.LocalAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_LocalAddress.htm\u0000138","FailedACLEvent.RemoteAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_RemoteAddress.htm\u0000138","FaxReceivedEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_CallerId.htm\u0000138","FaxReceivedEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Exten.htm\u0000133","FaxReceivedEvent.Filename Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Filename.htm\u0000139","FaxReceivedEvent.LocalStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_LocalStationId.htm\u0000132","FaxReceivedEvent.PagesTransferred Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_PagesTransferred.htm\u0000124","FaxReceivedEvent.RemoteStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_RemoteStationId.htm\u0000132","FaxReceivedEvent.Resolution Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Resolution.htm\u0000126","FaxReceivedEvent.TransferRate Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_TransferRate.htm\u0000125","HangupEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_Cause.htm\u0000124","HangupEvent.CauseTxt Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_CauseTxt.htm\u0000132","HoldedCallEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel1.htm\u0000137","HoldedCallEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel2.htm\u0000136","HoldedCallEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId1.htm\u0000138","HoldedCallEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId2.htm\u0000137","HoldEvent.Status Property\u0000html/P_AsterNET_Manager_Event_HoldEvent_Status.htm\u0000138","JabberEvent.Account Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Account.htm\u0000138","JabberEvent.Packet Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Packet.htm\u0000138","JitterBufStatsEvent.LocalDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalDropped.htm\u0000132","JitterBufStatsEvent.LocalJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJBDelay.htm\u0000132","JitterBufStatsEvent.LocalJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJitter.htm\u0000132","JitterBufStatsEvent.LocalLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalLossPercent.htm\u0000132","JitterBufStatsEvent.Localooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Localooo.htm\u0000132","JitterBufStatsEvent.LocalReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalReceived.htm\u0000132","JitterBufStatsEvent.LocalTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalTotalLost.htm\u0000132","JitterBufStatsEvent.Owner Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Owner.htm\u0000138","JitterBufStatsEvent.Ping Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Ping.htm\u0000132","JitterBufStatsEvent.RemoteDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteDropped.htm\u0000132","JitterBufStatsEvent.RemoteJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJBDelay.htm\u0000132","JitterBufStatsEvent.RemoteJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJitter.htm\u0000132","JitterBufStatsEvent.RemoteLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteLossPercent.htm\u0000132","JitterBufStatsEvent.Remoteooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Remoteooo.htm\u0000132","JitterBufStatsEvent.RemoteReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteReceived.htm\u0000132","JitterBufStatsEvent.RemoteTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteTotalLost.htm\u0000132","JoinEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerId.htm\u0000152","JoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerIdName.htm\u0000152","JoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_Position.htm\u0000128","LogChannelEvent.Enabled Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Enabled.htm\u0000126","LogChannelEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Reason.htm\u0000133","LogChannelEvent.ReasonCode Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_ReasonCode.htm\u0000109","ManagerEvent.Attributes Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Attributes.htm\u0000223","ManagerEvent.Channel Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Channel.htm\u0000130","ManagerEvent.DateReceived Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_DateReceived.htm\u0000153","ManagerEvent.Privilege Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Privilege.htm\u0000172","ManagerEvent.Server Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Server.htm\u0000182","ManagerEvent.Source Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Source.htm\u0000130","ManagerEvent.Timestamp Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Timestamp.htm\u0000159","ManagerEvent.UniqueId Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_UniqueId.htm\u0000131","MeetmeJoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdName.htm\u0000138","MeetmeJoinEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdName.htm\u0000138","MeetmeLeaveEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_Duration.htm\u0000135","MeetmeMuteEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeMuteEvent_Status.htm\u0000132","MeetmeTalkingEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkingEvent_Status.htm\u0000132","MeetmeTalkRequestEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkRequestEvent_Status.htm\u0000132","MessageWaitingEvent.Mailbox Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Mailbox.htm\u0000152","MessageWaitingEvent.New Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_New.htm\u0000127","MessageWaitingEvent.Old Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Old.htm\u0000127","MessageWaitingEvent.Waiting Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Waiting.htm\u0000127","MobileStatusEvent.Device Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Device.htm\u0000138","MobileStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Status.htm\u0000138","ModuleLoadReportEvent.ModuleCount Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleCount.htm\u0000132","ModuleLoadReportEvent.ModuleLoadStatus Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleLoadStatus.htm\u0000138","ModuleLoadReportEvent.ModuleSelection Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleSelection.htm\u0000138","NewAccountCodeEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_AccountCode.htm\u0000138","NewAccountCodeEvent.OldAccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_OldAccountCode.htm\u0000138","NewCallerIdEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerId.htm\u0000129","NewCallerIdEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdName.htm\u0000138","NewCallerIdEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdNum.htm\u0000130","NewCallerIdEvent.CidCallingPres Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPres.htm\u0000140","NewCallerIdEvent.CidCallingPresNumeric Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPresNumeric.htm\u0000107","NewExtenEvent.AppData Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppData.htm\u0000146","NewExtenEvent.AppdEvent Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppdEvent.htm\u0000138","NewExtenEvent.Application Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Application.htm\u0000133","NewExtenEvent.Context Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Context.htm\u0000134","NewExtenEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Extension.htm\u0000127","NewExtenEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Priority.htm\u0000121","OriginateResponseEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerId.htm\u0000138","OriginateResponseEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdName.htm\u0000138","OriginateResponseEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdNum.htm\u0000138","OriginateResponseEvent.Context Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Context.htm\u0000138","OriginateResponseEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Exten.htm\u0000138","OriginateResponseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Reason.htm\u0000132","OriginateResponseEvent.Response Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Response.htm\u0000138","ParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerId.htm\u0000133","ParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdName.htm\u0000133","ParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdNum.htm\u0000133","ParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Exten.htm\u0000132","ParkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_From.htm\u0000134","ParkedCallEvent.Timeout Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Timeout.htm\u0000141","PeerEntryEvent.Acl Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Acl.htm\u0000132","PeerEntryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChannelType.htm\u0000131","PeerEntryEvent.ChanObjectType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChanObjectType.htm\u0000136","PeerEntryEvent.Dynamic Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Dynamic.htm\u0000132","PeerEntryEvent.IpAddress Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpAddress.htm\u0000131","PeerEntryEvent.IpPort Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpPort.htm\u0000132","PeerEntryEvent.NatSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_NatSupport.htm\u0000132","PeerEntryEvent.ObjectName Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ObjectName.htm\u0000138","PeerEntryEvent.RealtimeDevice Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_RealtimeDevice.htm\u0000132","PeerEntryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Status.htm\u0000163","PeerEntryEvent.TextSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_TextSupport.htm\u0000132","PeerEntryEvent.VideoSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_VideoSupport.htm\u0000132","PeerlistCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_PeerlistCompleteEvent_ListItems.htm\u0000127","PeerStatusEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Cause.htm\u0000190","PeerStatusEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_ChannelType.htm\u0000130","PeerStatusEvent.Peer Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Peer.htm\u0000179","PeerStatusEvent.PeerStatus Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_PeerStatus.htm\u0000147","PeerStatusEvent.Time Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Time.htm\u0000163","PRIEvent.DChannel Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_DChannel.htm\u0000138","PRIEvent.PriEvent Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEvent.htm\u0000138","PRIEvent.PriEventCode Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEventCode.htm\u0000138","PRIEvent.Span Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_Span.htm\u0000138","QueueCallerAbandonEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_HoldTime.htm\u0000132","QueueCallerAbandonEvent.OriginalPosition Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_OriginalPosition.htm\u0000132","QueueCallerAbandonEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Position.htm\u0000132","QueueCallerAbandonEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Queue.htm\u0000138","QueueCallerJoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerJoinEvent_Position.htm\u0000138","QueueCallerLeaveEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerLeaveEvent_Position.htm\u0000138","QueueEntryEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerId.htm\u0000133","QueueEntryEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerIdName.htm\u0000132","QueueEntryEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Position.htm\u0000127","QueueEntryEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Queue.htm\u0000134","QueueEntryEvent.Wait Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Wait.htm\u0000133","QueueEvent.Count Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Count.htm\u0000141","QueueEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Queue.htm\u0000130","QueueMemberAddedEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_CallsTaken.htm\u0000127","QueueMemberAddedEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_LastCall.htm\u0000143","QueueMemberAddedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_MemberName.htm\u0000140","QueueMemberAddedEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Membership.htm\u0000162","QueueMemberAddedEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Paused.htm\u0000143","QueueMemberAddedEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Penalty.htm\u0000137","QueueMemberAddedEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Status.htm\u0000139","QueueMemberEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_CallsTaken.htm\u0000127","QueueMemberEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_LastCall.htm\u0000143","QueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Location.htm\u0000141","QueueMemberEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_MemberName.htm\u0000131","QueueMemberEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Membership.htm\u0000185","QueueMemberEvent.Name Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Name.htm\u0000131","QueueMemberEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Paused.htm\u0000132","QueueMemberEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Penalty.htm\u0000137","QueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Queue.htm\u0000130","QueueMemberEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Status.htm\u0000173","QueueMemberPausedEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_InCall.htm\u0000124","QueueMemberPausedEvent.PausedReason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_PausedReason.htm\u0000130","QueueMemberPausedEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_Reason.htm\u0000128","QueueMemberPauseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_Reason.htm\u0000129","QueueMemberPenaltyEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPenaltyEvent_Penalty.htm\u0000125","QueueMemberRemovedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberRemovedEvent_MemberName.htm\u0000140","QueueMemberRinginuseEvent.Ringinuse Property\u0000html/P_AsterNET_Manager_Event_QueueMemberRinginuseEvent_Ringinuse.htm\u0000123","QueueMemberStatusEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_CallsTaken.htm\u0000127","QueueMemberStatusEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_InCall.htm\u0000129","QueueMemberStatusEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_LastCall.htm\u0000143","QueueMemberStatusEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_MemberName.htm\u0000140","QueueMemberStatusEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Membership.htm\u0000162","QueueMemberStatusEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Paused.htm\u0000143","QueueMemberStatusEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Penalty.htm\u0000137","QueueMemberStatusEvent.StateInterface Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_StateInterface.htm\u0000134","QueueMemberStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Status.htm\u0000139","QueueParamsEvent.Abandoned Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Abandoned.htm\u0000130","QueueParamsEvent.Calls Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Calls.htm\u0000138","QueueParamsEvent.Completed Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Completed.htm\u0000130","QueueParamsEvent.Holdtime Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Holdtime.htm\u0000138","QueueParamsEvent.Max Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Max.htm\u0000152","QueueParamsEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Queue.htm\u0000130","QueueParamsEvent.ServiceLevel Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevel.htm\u0000139","QueueParamsEvent.ServiceLevelPerf Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevelPerf.htm\u0000152","QueueParamsEvent.Strategy Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Strategy.htm\u0000127","QueueParamsEvent.Weight Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Weight.htm\u0000165","RegistryEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Cause.htm\u0000149","RegistryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_ChannelType.htm\u0000131","RegistryEvent.Domain Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Domain.htm\u0000153","RegistryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Status.htm\u0000190","RegistryEvent.User Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_User.htm\u0000115","RegistryEvent.Username Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Username.htm\u0000155","ReloadEvent.Message Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Message.htm\u0000148","ReloadEvent.Module Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Module.htm\u0000135","ReloadEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Status.htm\u0000126","RenameEvent.NewName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_NewName.htm\u0000131","RenameEvent.OldName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_OldName.htm\u0000131","ResponseEvent.ActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_ActionId.htm\u0000135","ResponseEvent.InternalActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_InternalActionId.htm\u0000136","RTCPReceivedEvent.DLSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_DLSR.htm\u0000138","RTCPReceivedEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_FractionLost.htm\u0000135","RTCPReceivedEvent.From Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_From.htm\u0000138","RTCPReceivedEvent.HighestSequence Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_HighestSequence.htm\u0000135","RTCPReceivedEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_IAJitter.htm\u0000135","RTCPReceivedEvent.LastSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_LastSR.htm\u0000138","RTCPReceivedEvent.PacketsLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PacketsLost.htm\u0000132","RTCPReceivedEvent.PT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PT.htm\u0000138","RTCPReceivedEvent.ReceptionReports Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_ReceptionReports.htm\u0000132","RTCPReceivedEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_RTT.htm\u0000138","RTCPReceivedEvent.SenderSSRC Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SenderSSRC.htm\u0000135","RTCPReceivedEvent.SequenceNumberCycles Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SequenceNumberCycles.htm\u0000132","RTCPSentEvent.CumulativeLoss Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_CumulativeLoss.htm\u0000135","RTCPSentEvent.DlSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_DlSr.htm\u0000138","RTCPSentEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_FractionLost.htm\u0000135","RTCPSentEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_IAJitter.htm\u0000132","RTCPSentEvent.OursSrc Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_OursSrc.htm\u0000135","RTCPSentEvent.ReportBlock Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_ReportBlock.htm\u0000135","RTCPSentEvent.SentNtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentNtp.htm\u0000138","RTCPSentEvent.SentOctets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentOctets.htm\u0000135","RTCPSentEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentPackets.htm\u0000135","RTCPSentEvent.SentRtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentRtp.htm\u0000135","RTCPSentEvent.TheirLastSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_TheirLastSr.htm\u0000135","RTCPSentEvent.To Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_To.htm\u0000138","RTPReceiverStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Jitter.htm\u0000132","RTPReceiverStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_LostPackets.htm\u0000135","RTPReceiverStatEvent.ReceivedPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_ReceivedPackets.htm\u0000135","RTPReceiverStatEvent.RRCount Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_RRCount.htm\u0000135","RTPReceiverStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_SSRC.htm\u0000135","RTPReceiverStatEvent.Transit Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Transit.htm\u0000132","RTPSenderStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_Jitter.htm\u0000135","RTPSenderStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_LostPackets.htm\u0000135","RTPSenderStatEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_RTT.htm\u0000132","RTPSenderStatEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SentPackets.htm\u0000135","RTPSenderStatEvent.SRCount Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SRCount.htm\u0000135","RTPSenderStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SSRC.htm\u0000135","ShowDialPlanCompleteEvent.EventList Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_EventList.htm\u0000138","ShowDialPlanCompleteEvent.ListContexts Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListContexts.htm\u0000132","ShowDialPlanCompleteEvent.ListExtensions Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListExtensions.htm\u0000132","ShowDialPlanCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListItems.htm\u0000132","ShowDialPlanCompleteEvent.ListPriorities Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListPriorities.htm\u0000132","ShutdownEvent.File Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_File.htm\u0000138","ShutdownEvent.Func Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Func.htm\u0000138","ShutdownEvent.Line Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Line.htm\u0000132","ShutdownEvent.Restart Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Restart.htm\u0000133","ShutdownEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_SequenceNumber.htm\u0000132","ShutdownEvent.Shutdown Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Shutdown.htm\u0000160","StatusCompleteEvent.Items Property\u0000html/P_AsterNET_Manager_Event_StatusCompleteEvent_Items.htm\u0000132","StatusEvent.Account Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Account.htm\u0000138","StatusEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerId.htm\u0000138","StatusEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdName.htm\u0000140","StatusEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdNum.htm\u0000140","StatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Context.htm\u0000138","StatusEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Extension.htm\u0000138","StatusEvent.Link Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Link.htm\u0000143","StatusEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Priority.htm\u0000132","StatusEvent.Seconds Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Seconds.htm\u0000130","StatusEvent.State Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_State.htm\u0000138","TransferEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_SipCallId.htm\u0000138","TransferEvent.TargetChannel Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetChannel.htm\u0000138","TransferEvent.TargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetUniqueId.htm\u0000138","TransferEvent.Transfer2Parking Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_Transfer2Parking.htm\u0000132","TransferEvent.TransferContext Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferContext.htm\u0000138","TransferEvent.TransferExten Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferExten.htm\u0000138","TransferEvent.TransferMethod Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferMethod.htm\u0000124","TransferEvent.TransferType Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferType.htm\u0000125","UnparkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_UnparkedCallEvent_From.htm\u0000134","UserEvent.UserEventName Property\u0000html/P_AsterNET_Manager_Event_UserEvent_UserEventName.htm\u0000138","VarSetEvent.File Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_File.htm\u0000138","VarSetEvent.Func Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Func.htm\u0000138","VarSetEvent.Line Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Line.htm\u0000132","VarSetEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_SequenceNumber.htm\u0000132","VarSetEvent.Value Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Value.htm\u0000128","VarSetEvent.Variable Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Variable.htm\u0000129","ZapShowChannelsEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Alarm.htm\u0000149","ZapShowChannelsEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Context.htm\u0000136","ZapShowChannelsEvent.Signalling Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Signalling.htm\u0000138","IResponseHandler.Action Property\u0000html/P_AsterNET_Manager_IResponseHandler_Action.htm\u0000113","IResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_IResponseHandler_Hash.htm\u0000124","ManagerConnection.AsteriskVersion Property\u0000html/P_AsterNET_Manager_ManagerConnection_AsteriskVersion.htm\u0000114","ManagerConnection.DefaultEventTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultEventTimeout.htm\u0000141","ManagerConnection.DefaultResponseTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultResponseTimeout.htm\u0000136","ManagerConnection.FireAllEvents Property\u0000html/P_AsterNET_Manager_ManagerConnection_FireAllEvents.htm\u0000147","ManagerConnection.Hostname Property\u0000html/P_AsterNET_Manager_ManagerConnection_Hostname.htm\u0000135","ManagerConnection.KeepAlive Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAlive.htm\u0000148","ManagerConnection.KeepAliveAfterAuthenticationFailure Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAliveAfterAuthenticationFailure.htm\u0000137","ManagerConnection.Password Property\u0000html/P_AsterNET_Manager_ManagerConnection_Password.htm\u0000143","ManagerConnection.PingInterval Property\u0000html/P_AsterNET_Manager_ManagerConnection_PingInterval.htm\u0000134","ManagerConnection.Port Property\u0000html/P_AsterNET_Manager_ManagerConnection_Port.htm\u0000141","ManagerConnection.ReconnectIntervalFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalFast.htm\u0000121","ManagerConnection.ReconnectIntervalMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalMax.htm\u0000121","ManagerConnection.ReconnectRetryFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryFast.htm\u0000120","ManagerConnection.ReconnectRetryMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryMax.htm\u0000120","ManagerConnection.SleepTime Property\u0000html/P_AsterNET_Manager_ManagerConnection_SleepTime.htm\u0000169","ManagerConnection.SocketEncoding Property\u0000html/P_AsterNET_Manager_ManagerConnection_SocketEncoding.htm\u0000126","ManagerConnection.Username Property\u0000html/P_AsterNET_Manager_ManagerConnection_Username.htm\u0000143","ManagerConnection.Version Property\u0000html/P_AsterNET_Manager_ManagerConnection_Version.htm\u0000118","Originate.Account Property\u0000html/P_AsterNET_Manager_Originate_Account.htm\u0000153","Originate.Application Property\u0000html/P_AsterNET_Manager_Originate_Application.htm\u0000131","Originate.CallerId Property\u0000html/P_AsterNET_Manager_Originate_CallerId.htm\u0000132","Originate.Channel Property\u0000html/P_AsterNET_Manager_Originate_Channel.htm\u0000139","Originate.Context Property\u0000html/P_AsterNET_Manager_Originate_Context.htm\u0000150","Originate.Data Property\u0000html/P_AsterNET_Manager_Originate_Data.htm\u0000130","Originate.Exten Property\u0000html/P_AsterNET_Manager_Originate_Exten.htm\u0000144","Originate.Priority Property\u0000html/P_AsterNET_Manager_Originate_Priority.htm\u0000141","Originate.Timeout Property\u0000html/P_AsterNET_Manager_Originate_Timeout.htm\u0000166","ResponseEventHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Action.htm\u0000131","ResponseEventHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Hash.htm\u0000147","ResponseEventHandler.ResponseEvents Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_ResponseEvents.htm\u0000118","ResponseEvents.Complete Property\u0000html/P_AsterNET_Manager_ResponseEvents_Complete.htm\u0000122","ResponseEvents.Events Property\u0000html/P_AsterNET_Manager_ResponseEvents_Events.htm\u0000145","ResponseEvents.Response Property\u0000html/P_AsterNET_Manager_ResponseEvents_Response.htm\u0000135","ResponseHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseHandler_Action.htm\u0000131","ResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseHandler_Hash.htm\u0000147","ResponseHandler.Response Property\u0000html/P_AsterNET_Manager_ResponseHandler_Response.htm\u0000118","ChallengeResponse.Challenge Property\u0000html/P_AsterNET_Manager_Response_ChallengeResponse_Challenge.htm\u0000144","CommandResponse.Result Property\u0000html/P_AsterNET_Manager_Response_CommandResponse_Result.htm\u0000169","ExtensionStateResponse.Context Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Context.htm\u0000138","ExtensionStateResponse.Exten Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Exten.htm\u0000138","ExtensionStateResponse.Hint Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Hint.htm\u0000138","ExtensionStateResponse.Status Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Status.htm\u0000132","GetConfigResponse.Categories Property\u0000html/P_AsterNET_Manager_Response_GetConfigResponse_Categories.htm\u0000160","MailboxCountResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_Mailbox.htm\u0000130","MailboxCountResponse.NewMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_NewMessages.htm\u0000127","MailboxCountResponse.OldMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_OldMessages.htm\u0000126","MailboxStatusResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Mailbox.htm\u0000137","MailboxStatusResponse.Waiting Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Waiting.htm\u0000134","ManagerResponse.ActionId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_ActionId.htm\u0000139","ManagerResponse.Attributes Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Attributes.htm\u0000200","ManagerResponse.DateReceived Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_DateReceived.htm\u0000131","ManagerResponse.Message Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Message.htm\u0000142","ManagerResponse.Privilege Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Privilege.htm\u0000172","ManagerResponse.Response Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Response.htm\u0000156","ManagerResponse.Server Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Server.htm\u0000182","ManagerResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_UniqueId.htm\u0000153","OriginateResponse.Channel Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Channel.htm\u0000138","OriginateResponse.ChannelName Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_ChannelName.htm\u0000138","OriginateResponse.EndTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_EndTime.htm\u0000132","OriginateResponse.IsSuccess Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_IsSuccess.htm\u0000117","OriginateResponse.Reason Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Reason.htm\u0000132","OriginateResponse.Response Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Response.htm\u0000138","OriginateResponse.StartTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_StartTime.htm\u0000132","OriginateResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_UniqueId.htm\u0000138","MD5Support.DigestData Property\u0000html/P_AsterNET_Util_MD5Support_DigestData.htm\u0000142","ThreadClass.IsAlive Property\u0000html/P_AsterNET_Util_ThreadClass_IsAlive.htm\u0000110","ThreadClass.IsBackground Property\u0000html/P_AsterNET_Util_ThreadClass_IsBackground.htm\u0000130","ThreadClass.Name Property\u0000html/P_AsterNET_Util_ThreadClass_Name.htm\u0000128","Common Class\u0000html/T_AsterNET_Common.htm\u0000180","AGIChannel Class\u0000html/T_AsterNET_FastAGI_AGIChannel.htm\u0000259","AGIConnectionHandler Class\u0000html/T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000269","AGIException Class\u0000html/T_AsterNET_FastAGI_AGIException.htm\u0000542","AGIHangupException Class\u0000html/T_AsterNET_FastAGI_AGIHangupException.htm\u0000512","AGINetworkException Class\u0000html/T_AsterNET_FastAGI_AGINetworkException.htm\u0000513","AGIReader Class\u0000html/T_AsterNET_FastAGI_AGIReader.htm\u0000234","AGIReply Class\u0000html/T_AsterNET_FastAGI_AGIReply.htm\u0000441","AGIReplyStatuses Enumeration\u0000html/T_AsterNET_FastAGI_AGIReplyStatuses.htm\u0000197","AGIRequest Class\u0000html/T_AsterNET_FastAGI_AGIRequest.htm\u0000401","AGIScript Class\u0000html/T_AsterNET_FastAGI_AGIScript.htm\u00001763","AGIWriter Class\u0000html/T_AsterNET_FastAGI_AGIWriter.htm\u0000226","AsteriskFastAGI Class\u0000html/T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000458","AGICommand Class\u0000html/T_AsterNET_FastAGI_Command_AGICommand.htm\u0000399","AnswerCommand Class\u0000html/T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000258","ChannelStatusCommand Class\u0000html/T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000276","ControlStreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000599","DatabaseDelCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000310","DatabaseDelTreeCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000298","DatabaseGetCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000301","DatabasePutCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000299","ExecCommand Class\u0000html/T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000302","GetDataCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000423","GetFullVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000360","GetOptionCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000418","GetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000311","HangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000293","NoopCommand Class\u0000html/T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000243","ReceiveCharCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000347","ReceiveTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000341","RecordFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000455","SayAlphaCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000330","SayDateTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000483","SayDigitsCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000330","SayNumberCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000328","SayPhoneticCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000331","SayTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000363","SendImageCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000302","SendTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000295","SetAutoHangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000301","SetCallerIdCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000259","SetContextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000266","SetExtensionCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000266","SetMusicOffCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000254","SetMusicOnCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000297","SetPriorityCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000299","SetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000273","StreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000416","TDDModeCommand Class\u0000html/T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000333","VerboseCommand Class\u0000html/T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000276","WaitForDigitCommand Class\u0000html/T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000343","IMappingStrategy Interface\u0000html/T_AsterNET_FastAGI_IMappingStrategy.htm\u000095","InvalidCommandSyntaxException Class\u0000html/T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000542","InvalidOrUnknownCommandException Class\u0000html/T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000508","GeneralMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000296","ResourceMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000308","ScriptMapping Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000291","MappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategy.htm\u0000399","ServerSocket Class\u0000html/T_AsterNET_IO_ServerSocket.htm\u0000226","SocketConnection Class\u0000html/T_AsterNET_IO_SocketConnection.htm\u0000335","Logger Class\u0000html/T_AsterNET_Logger.htm\u0000315","Logger.MessageLevel Enumeration\u0000html/T_AsterNET_Logger_MessageLevel.htm\u000089","AbsoluteTimeoutAction Class\u0000html/T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000474","AgentCallbackLoginAction Class\u0000html/T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000590","AgentLogoffAction Class\u0000html/T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000411","AgentsAction Class\u0000html/T_AsterNET_Manager_Action_AgentsAction.htm\u0000393","AgiAction Class\u0000html/T_AsterNET_Manager_Action_AgiAction.htm\u0000357","AOCMessageAction Class\u0000html/T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000393","AtxferAction Class\u0000html/T_AsterNET_Manager_Action_AtxferAction.htm\u0000367","BridgeAction Class\u0000html/T_AsterNET_Manager_Action_BridgeAction.htm\u0000356","ChallengeAction Class\u0000html/T_AsterNET_Manager_Action_ChallengeAction.htm\u0000417","ChangeMonitorAction Class\u0000html/T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000426","CommandAction Class\u0000html/T_AsterNET_Manager_Action_CommandAction.htm\u0000393","ConfbridgeKickAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000355","ConfbridgeListAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000374","ConfbridgeListRoomsAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000357","ConfbridgeLockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000344","ConfbridgeMuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000355","ConfbridgeSetSingleVideoSrcAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000349","ConfbridgeStartRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000456","ConfbridgeStopRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000346","ConfbridgeUnlockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000344","ConfbridgeUnmuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000355","CoreSettingsAction Class\u0000html/T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000338","CoreShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000338","CoreStatusAction Class\u0000html/T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000338","CreateConfigAction Class\u0000html/T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000400","DBDelAction Class\u0000html/T_AsterNET_Manager_Action_DBDelAction.htm\u0000386","DBDelTreeAction Class\u0000html/T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000383","DBGetAction Class\u0000html/T_AsterNET_Manager_Action_DBGetAction.htm\u0000421","DBPutAction Class\u0000html/T_AsterNET_Manager_Action_DBPutAction.htm\u0000401","EventsAction Class\u0000html/T_AsterNET_Manager_Action_EventsAction.htm\u0000433","ExtensionStateAction Class\u0000html/T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000373","GetConfigAction Class\u0000html/T_AsterNET_Manager_Action_GetConfigAction.htm\u0000367","GetVarAction Class\u0000html/T_AsterNET_Manager_Action_GetVarAction.htm\u0000414","HangupAction Class\u0000html/T_AsterNET_Manager_Action_HangupAction.htm\u0000372","LoginAction Class\u0000html/T_AsterNET_Manager_Action_LoginAction.htm\u0000619","LogoffAction Class\u0000html/T_AsterNET_Manager_Action_LogoffAction.htm\u0000347","MailboxCountAction Class\u0000html/T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000425","MailboxStatusAction Class\u0000html/T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000456","ManagerAction Class\u0000html/T_AsterNET_Manager_Action_ManagerAction.htm\u0000558","ManagerActionEvent Class\u0000html/T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000467","ManagerActionResponse Class\u0000html/T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000406","MonitorAction Class\u0000html/T_AsterNET_Manager_Action_MonitorAction.htm\u0000541","OriginateAction Class\u0000html/T_AsterNET_Manager_Action_OriginateAction.htm\u0000940","ParkAction Class\u0000html/T_AsterNET_Manager_Action_ParkAction.htm\u0000421","ParkedCallsAction Class\u0000html/T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000389","PingAction Class\u0000html/T_AsterNET_Manager_Action_PingAction.htm\u0000361","ProxyAction Class\u0000html/T_AsterNET_Manager_Action_ProxyAction.htm\u0000362","QueueAddAction Class\u0000html/T_AsterNET_Manager_Action_QueueAddAction.htm\u0000559","QueueLogAction Class\u0000html/T_AsterNET_Manager_Action_QueueLogAction.htm\u0000358","QueuePauseAction Class\u0000html/T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000515","QueuePenaltyAction Class\u0000html/T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000356","QueueReloadAction Class\u0000html/T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000375","QueueRemoveAction Class\u0000html/T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000401","QueueResetAction Class\u0000html/T_AsterNET_Manager_Action_QueueResetAction.htm\u0000342","QueueRuleAction Class\u0000html/T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000350","QueueStatusAction Class\u0000html/T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000464","RedirectAction Class\u0000html/T_AsterNET_Manager_Action_RedirectAction.htm\u0000443","SetCDRUserFieldAction Class\u0000html/T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000507","SetVarAction Class\u0000html/T_AsterNET_Manager_Action_SetVarAction.htm\u0000453","SIPPeersAction Class\u0000html/T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000390","SIPShowPeerAction Class\u0000html/T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000413","StatusAction Class\u0000html/T_AsterNET_Manager_Action_StatusAction.htm\u0000396","StopMonitorAction Class\u0000html/T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000384","UpdateConfigAction Class\u0000html/T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000779","ZapDialOffhookAction Class\u0000html/T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000395","ZapDNDOffAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000390","ZapDNDOnAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000390","ZapHangupAction Class\u0000html/T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000386","ZapShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000394","ZapTransferAction Class\u0000html/T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000361","AgentCallbackLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLoginEventHandler.htm\u0000144","AgentCallbackLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLogoffEventHandler.htm\u0000147","AgentCalledEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCalledEventHandler.htm\u0000157","AgentCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCompleteEventHandler.htm\u0000152","AgentConnectEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentConnectEventHandler.htm\u0000145","AgentDumpEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentDumpEventHandler.htm\u0000149","AgentLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLoginEventHandler.htm\u0000146","AgentLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLogoffEventHandler.htm\u0000149","AgentsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsCompleteEventHandler.htm\u0000151","AgentsEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsEventHandler.htm\u0000145","AGIExecHandler Delegate\u0000html/T_AsterNET_Manager_AGIExecHandler.htm\u0000135","AlarmClearEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmClearEventHandler.htm\u0000144","AlarmEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmEventHandler.htm\u0000146","AsteriskVersion Enumeration\u0000html/T_AsterNET_Manager_AsteriskVersion.htm\u0000100","AttendedTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_AttendedTransferEventHandler.htm\u0000146","AuthenticationFailedException Class\u0000html/T_AsterNET_Manager_AuthenticationFailedException.htm\u0000529","BlindTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_BlindTransferEventHandler.htm\u0000146","BridgeCreateEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeCreateEventHandler.htm\u0000146","BridgeDestroyEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeDestroyEventHandler.htm\u0000146","BridgeEnterEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEnterEventHandler.htm\u0000146","BridgeEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEventHandler.htm\u0000146","BridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeLeaveEventHandler.htm\u0000146","CdrEventHandler Delegate\u0000html/T_AsterNET_Manager_CdrEventHandler.htm\u0000152","ConfbridgeEndEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeEndEventHandler.htm\u0000149","ConfbridgeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeJoinEventHandler.htm\u0000161","ConfbridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeLeaveEventHandler.htm\u0000143","ConfbridgeStartEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeStartEventHandler.htm\u0000147","ConfbridgeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeTalkingEventHandler.htm\u0000150","ConnectionStateEventHandler Delegate\u0000html/T_AsterNET_Manager_ConnectionStateEventHandler.htm\u0000143","DBGetResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_DBGetResponseEventHandler.htm\u0000146","DialBeginEventHandler Delegate\u0000html/T_AsterNET_Manager_DialBeginEventHandler.htm\u0000140","DialEndEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEndEventHandler.htm\u0000140","DialEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEventHandler.htm\u0000144","DNDStateEventHandler Delegate\u0000html/T_AsterNET_Manager_DNDStateEventHandler.htm\u0000155","DTMFEventHandler Delegate\u0000html/T_AsterNET_Manager_DTMFEventHandler.htm\u0000146","EventTimeoutException Class\u0000html/T_AsterNET_Manager_EventTimeoutException.htm\u0000601","AbstractAgentEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000753","AbstractAgentVariables Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000693","AbstractChannelEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000659","AbstractConfbridgeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000635","AbstractMeetmeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000642","AbstractParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000643","AbstractQueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000971","AgentCallbackLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000603","AgentCallbackLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000652","AgentCalledEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000755","AgentCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000803","AgentConnectEvent Class\u0000html/T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000788","AgentDumpEvent Class\u0000html/T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000760","AgentLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000603","AgentLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000606","AgentsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000637","AgentsEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsEvent.htm\u0000783","AGIExecEvent Class\u0000html/T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000600","AlarmClearEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000581","AlarmEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmEvent.htm\u0000608","AsyncAGIEvent Class\u0000html/T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000581","AttendedTransferEvent Class\u0000html/T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000643","BlindTransferEvent Class\u0000html/T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000612","BridgeActivityEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000612","BridgeCreateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000629","BridgeDestroyEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000629","BridgeEnterEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000717","BridgeEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEvent.htm\u0000686","BridgeEvent.BridgeStates Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeStates.htm\u000093","BridgeEvent.BridgeTypes Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeTypes.htm\u0000125","BridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000717","BridgeStateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000601","CdrEvent Class\u0000html/T_AsterNET_Manager_Event_CdrEvent.htm\u0000625","ChannelReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000599","ChannelUpdateEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000597","ConfbridgeEndEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000589","ConfbridgeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000591","ConfbridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000591","ConfbridgeListCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000624","ConfbridgeListEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000593","ConfbridgeListRoomsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000624","ConfbridgeListRoomsEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000592","ConfbridgeStartEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000589","ConfbridgeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000590","ConnectEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectEvent.htm\u0000614","ConnectionStateEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000603","DBGetResponseEvent Class\u0000html/T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000674","DialBeginEvent Class\u0000html/T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000714","DialEndEvent Class\u0000html/T_AsterNET_Manager_Event_DialEndEvent.htm\u0000715","DialEvent Class\u0000html/T_AsterNET_Manager_Event_DialEvent.htm\u0000662","DisconnectEvent Class\u0000html/T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000607","DNDStateEvent Class\u0000html/T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000649","DTMFEvent Class\u0000html/T_AsterNET_Manager_Event_DTMFEvent.htm\u0000578","ExtensionStatusEvent Class\u0000html/T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000611","FailedACLEvent Class\u0000html/T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000591","FaxReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000888","HangupEvent Class\u0000html/T_AsterNET_Manager_Event_HangupEvent.htm\u0000728","HoldedCallEvent Class\u0000html/T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000645","HoldEvent Class\u0000html/T_AsterNET_Manager_Event_HoldEvent.htm\u0000600","JabberEvent Class\u0000html/T_AsterNET_Manager_Event_JabberEvent.htm\u0000579","JitterBufStatsEvent Class\u0000html/T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000593","JoinEvent Class\u0000html/T_AsterNET_Manager_Event_JoinEvent.htm\u0000708","LeaveEvent Class\u0000html/T_AsterNET_Manager_Event_LeaveEvent.htm\u0000633","LinkEvent Class\u0000html/T_AsterNET_Manager_Event_LinkEvent.htm\u0000721","LogChannelEvent Class\u0000html/T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000612","ManagerEvent Class\u0000html/T_AsterNET_Manager_Event_ManagerEvent.htm\u0000830","MeetmeEndEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000603","MeetmeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000610","MeetmeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000611","MeetmeMuteEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000604","MeetmeStopTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000610","MeetmeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000604","MeetmeTalkRequestEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000604","MessageWaitingEvent Class\u0000html/T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000645","MobileStatusEvent Class\u0000html/T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000579","ModuleLoadReportEvent Class\u0000html/T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000580","MonitorStartEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000577","MonitorStopEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000577","NewAccountCodeEvent Class\u0000html/T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000579","NewCallerIdEvent Class\u0000html/T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000625","NewChannelEvent Class\u0000html/T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000708","NewExtenEvent Class\u0000html/T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000645","NewStateEvent Class\u0000html/T_AsterNET_Manager_Event_NewStateEvent.htm\u0000710","OriginateResponseEvent Class\u0000html/T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000631","ParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000729","ParkedCallGiveUpEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000670","ParkedCallsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000637","ParkedCallTimeOutEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000669","PeerEntryEvent Class\u0000html/T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000716","PeerlistCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000662","PeerStatusEvent Class\u0000html/T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000779","PRIEvent Class\u0000html/T_AsterNET_Manager_Event_PRIEvent.htm\u0000578","QueueCallerAbandonEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000578","QueueCallerJoinEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000627","QueueCallerLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000627","QueueEntryEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000702","QueueEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEvent.htm\u0000634","QueueMemberAddedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000955","QueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000870","QueueMemberPausedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u00001024","QueueMemberPauseEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u00001036","QueueMemberPenaltyEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000997","QueueMemberRemovedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u00001036","QueueMemberRinginuseEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u00001002","QueueMemberStatusEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000902","QueueParamsEvent Class\u0000html/T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000810","QueueStatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000636","RegistryEvent Class\u0000html/T_AsterNET_Manager_Event_RegistryEvent.htm\u0000776","ReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ReloadEvent.htm\u0000649","RenameEvent Class\u0000html/T_AsterNET_Manager_Event_RenameEvent.htm\u0000607","ResponseEvent Class\u0000html/T_AsterNET_Manager_Event_ResponseEvent.htm\u0000722","RTCPReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000589","RTCPSentEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000589","RTPReceiverStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000583","RTPSenderStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000583","ShowDialPlanCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000582","ShutdownEvent Class\u0000html/T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000660","StatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000640","StatusEvent Class\u0000html/T_AsterNET_Manager_Event_StatusEvent.htm\u0000691","TransferEvent Class\u0000html/T_AsterNET_Manager_Event_TransferEvent.htm\u0000590","UnholdEvent Class\u0000html/T_AsterNET_Manager_Event_UnholdEvent.htm\u0000598","UnknownEvent Class\u0000html/T_AsterNET_Manager_Event_UnknownEvent.htm\u0000570","UnlinkEvent Class\u0000html/T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000683","UnparkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000682","UserEvent Class\u0000html/T_AsterNET_Manager_Event_UserEvent.htm\u0000809","VarSetEvent Class\u0000html/T_AsterNET_Manager_Event_VarSetEvent.htm\u0000596","ZapShowChannelsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000640","ZapShowChannelsEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000675","ExtensionStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_ExtensionStatusEventHandler.htm\u0000144","FailedACLEventHandler Delegate\u0000html/T_AsterNET_Manager_FailedACLEventHandler.htm\u0000146","HangupEventHandler Delegate\u0000html/T_AsterNET_Manager_HangupEventHandler.htm\u0000143","HoldedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldedCallEventHandler.htm\u0000144","HoldEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldEventHandler.htm\u0000149","IResponseHandler Interface\u0000html/T_AsterNET_Manager_IResponseHandler.htm\u0000112","JoinEventHandler Delegate\u0000html/T_AsterNET_Manager_JoinEventHandler.htm\u0000143","LeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_LeaveEventHandler.htm\u0000143","LinkEventHandler Delegate\u0000html/T_AsterNET_Manager_LinkEventHandler.htm\u0000191","LogChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_LogChannelEventHandler.htm\u0000144","ManagerConnection Class\u0000html/T_AsterNET_Manager_ManagerConnection.htm\u0000806","ManagerEventHandler Delegate\u0000html/T_AsterNET_Manager_ManagerEventHandler.htm\u0000140","ManagerException Class\u0000html/T_AsterNET_Manager_ManagerException.htm\u0000522","ManagerReader Class\u0000html/T_AsterNET_Manager_ManagerReader.htm\u0000222","MeetMeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeJoinEventHandler.htm\u0000145","MeetMeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeLeaveEventHandler.htm\u0000145","MeetMeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeTalkingEventHandler.htm\u0000164","MessageWaitingEventHandler Delegate\u0000html/T_AsterNET_Manager_MessageWaitingEventHandler.htm\u0000141","NewCallerIdEventHandler Delegate\u0000html/T_AsterNET_Manager_NewCallerIdEventHandler.htm\u0000145","NewChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_NewChannelEventHandler.htm\u0000143","NewExtenEventHandler Delegate\u0000html/T_AsterNET_Manager_NewExtenEventHandler.htm\u0000146","NewStateEventHandler Delegate\u0000html/T_AsterNET_Manager_NewStateEventHandler.htm\u0000145","Originate Class\u0000html/T_AsterNET_Manager_Originate.htm\u0000521","OriginateResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_OriginateResponseEventHandler.htm\u0000143","ParkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallEventHandler.htm\u0000158","ParkedCallGiveUpEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallGiveUpEventHandler.htm\u0000147","ParkedCallsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallsCompleteEventHandler.htm\u0000149","ParkedCallTimeOutEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallTimeOutEventHandler.htm\u0000146","PeerEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerEntryEventHandler.htm\u0000150","PeerlistCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerlistCompleteEventHandler.htm\u0000153","PeerStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerStatusEventHandler.htm\u0000150","QueueCallerAbandonEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerAbandonEventHandler.htm\u0000146","QueueCallerJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerJoinEventHandler.htm\u0000140","QueueCallerLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerLeaveEventHandler.htm\u0000140","QueueEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueEntryEventHandler.htm\u0000151","QueueMemberAddedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberAddedEventHandler.htm\u0000146","QueueMemberEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberEventHandler.htm\u0000151","QueueMemberPausedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberPausedEventHandler.htm\u0000145","QueueMemberPauseEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberPauseEventHandler.htm\u0000149","QueueMemberRemovedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberRemovedEventHandler.htm\u0000146","QueueMemberStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberStatusEventHandler.htm\u0000141","QueueParamsEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueParamsEventHandler.htm\u0000149","QueueStatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueStatusCompleteEventHandler.htm\u0000151","RegistryEventHandler Delegate\u0000html/T_AsterNET_Manager_RegistryEventHandler.htm\u0000153","RenameEventHandler Delegate\u0000html/T_AsterNET_Manager_RenameEventHandler.htm\u0000145","ResponseEventHandler Class\u0000html/T_AsterNET_Manager_ResponseEventHandler.htm\u0000253","ResponseEvents Class\u0000html/T_AsterNET_Manager_ResponseEvents.htm\u0000249","ResponseHandler Class\u0000html/T_AsterNET_Manager_ResponseHandler.htm\u0000250","ChallengeResponse Class\u0000html/T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000777","CommandResponse Class\u0000html/T_AsterNET_Manager_Response_CommandResponse.htm\u0000831","ExtensionStateResponse Class\u0000html/T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000757","GetConfigResponse Class\u0000html/T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000838","MailboxCountResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000796","MailboxStatusResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000797","ManagerError Class\u0000html/T_AsterNET_Manager_Response_ManagerError.htm\u0000776","ManagerResponse Class\u0000html/T_AsterNET_Manager_Response_ManagerResponse.htm\u0000742","OriginateResponse Class\u0000html/T_AsterNET_Manager_Response_OriginateResponse.htm\u0000264","StatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusCompleteEventHandler.htm\u0000146","StatusEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusEventHandler.htm\u0000146","TimeoutException Class\u0000html/T_AsterNET_Manager_TimeoutException.htm\u0000513","TransferEventHandler Delegate\u0000html/T_AsterNET_Manager_TransferEventHandler.htm\u0000151","UnholdEventHandler Delegate\u0000html/T_AsterNET_Manager_UnholdEventHandler.htm\u0000151","UnlinkEventHandler Delegate\u0000html/T_AsterNET_Manager_UnlinkEventHandler.htm\u0000154","UnparkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_UnparkedCallEventHandler.htm\u0000146","UserEventHandler Delegate\u0000html/T_AsterNET_Manager_UserEventHandler.htm\u0000141","VarSetEventHandler Delegate\u0000html/T_AsterNET_Manager_VarSetEventHandler.htm\u0000137","ZapShowChannelsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsCompleteEventHandler.htm\u0000152","ZapShowChannelsEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsEventHandler.htm\u0000150","MD5Support Class\u0000html/T_AsterNET_Util_MD5Support.htm\u0000303","ThreadClass Class\u0000html/T_AsterNET_Util_ThreadClass.htm\u0000343","ThreadPool Class\u0000html/T_AsterNET_Util_ThreadPool.htm\u0000289"] \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm deleted file mode 100644 index 727a67b..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AGIExec Event
    Click or drag to resize
    ManagerConnectionAGIExec Event
    - AgiExec is execute -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AGIExecHandler AGIExec

    Value

    Type: AsterNET.ManagerAGIExecHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm deleted file mode 100644 index adbd52a..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentCallbackLogin Event
    Click or drag to resize
    ManagerConnectionAgentCallbackLogin Event
    - An AgentCallbackLogin is triggered when an agent is successfully logged in. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentCallbackLoginEventHandler AgentCallbackLogin

    Value

    Type: AsterNET.ManagerAgentCallbackLoginEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm deleted file mode 100644 index 1f03667..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.AgentCallbackLogoff Event
    Click or drag to resize
    ManagerConnectionAgentCallbackLogoff Event
    - An AgentCallbackLogoff is triggered when an agent that previously logged in is logged of.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentCallbackLogoffEventHandler AgentCallbackLogoff

    Value

    Type: AsterNET.ManagerAgentCallbackLogoffEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm deleted file mode 100644 index a8bb073..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentCalled Event
    Click or drag to resize
    ManagerConnectionAgentCalled Event
    - An AgentCalled is triggered when an agent is ring.
    - To enable AgentCalled you have to set eventwhencalled = yes in queues.conf.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentCalledEventHandler AgentCalled

    Value

    Type: AsterNET.ManagerAgentCalledEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm deleted file mode 100644 index 0a06b8b..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentComplete Event
    Click or drag to resize
    ManagerConnectionAgentComplete Event
    - An AgentCompleteEvent is triggered when at the end of a call if the caller was connected to an agent. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentCompleteEventHandler AgentComplete

    Value

    Type: AsterNET.ManagerAgentCompleteEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm deleted file mode 100644 index 700c0ef..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentConnect Event
    Click or drag to resize
    ManagerConnectionAgentConnect Event
    - An AgentConnectEvent is triggered when a caller is connected to an agent. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentConnectEventHandler AgentConnect

    Value

    Type: AsterNET.ManagerAgentConnectEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm deleted file mode 100644 index 0f00bd3..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentDump Event
    Click or drag to resize
    ManagerConnectionAgentDump Event
    - An AgentDumpEvent is triggered when an agent dumps the caller while listening to the queue announcement. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentDumpEventHandler AgentDump

    Value

    Type: AsterNET.ManagerAgentDumpEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm deleted file mode 100644 index 143f15c..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentLogin Event
    Click or drag to resize
    ManagerConnectionAgentLogin Event
    - An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentLoginEventHandler AgentLogin

    Value

    Type: AsterNET.ManagerAgentLoginEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm deleted file mode 100644 index 6891fd4..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentLogoff Event
    Click or drag to resize
    ManagerConnectionAgentLogoff Event
    - An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentLogoffEventHandler AgentLogoff

    Value

    Type: AsterNET.ManagerAgentLogoffEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Agents.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Agents.htm deleted file mode 100644 index 1ead2a1..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Agents.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Agents Event
    Click or drag to resize
    ManagerConnectionAgents Event
    - An AgentsEvent is triggered for each agent in response to an AgentsAction. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentsEventHandler Agents

    Value

    Type: AsterNET.ManagerAgentsEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm deleted file mode 100644 index 6651108..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AgentsComplete Event
    Click or drag to resize
    ManagerConnectionAgentsComplete Event
    - An AgentsCompleteEvent is triggered after the state of all agents has been reported in response to an AgentsAction. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AgentsCompleteEventHandler AgentsComplete

    Value

    Type: AsterNET.ManagerAgentsCompleteEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm deleted file mode 100644 index 009063f..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Alarm Event
    Click or drag to resize
    ManagerConnectionAlarm Event
    - An AlarmEvent is triggered when a Zap channel enters or changes alarm state. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AlarmEventHandler Alarm

    Value

    Type: AsterNET.ManagerAlarmEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm deleted file mode 100644 index 2b66d55..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.AlarmClear Event
    Click or drag to resize
    ManagerConnectionAlarmClear Event
    - An AlarmEvent is triggered when a Zap channel leaves alarm state. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AlarmClearEventHandler AlarmClear

    Value

    Type: AsterNET.ManagerAlarmClearEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm deleted file mode 100644 index 98c7f73..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.AttendedTransfer Event
    Click or drag to resize
    ManagerConnectionAttendedTransfer Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.AttendedTransfer"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event AttendedTransferEventHandler AttendedTransfer

    Value

    Type: AsterNET.ManagerAttendedTransferEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm deleted file mode 100644 index b2a01d5..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.BlindTransfer Event
    Click or drag to resize
    ManagerConnectionBlindTransfer Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BlindTransfer"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event BlindTransferEventHandler BlindTransfer

    Value

    Type: AsterNET.ManagerBlindTransferEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Bridge.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Bridge.htm deleted file mode 100644 index 6e226f7..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Bridge.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.Bridge Event
    Click or drag to resize
    ManagerConnectionBridge Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.Bridge"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event BridgeEventHandler Bridge

    Value

    Type: AsterNET.ManagerBridgeEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm deleted file mode 100644 index bb6d1bf..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.BridgeCreate Event
    Click or drag to resize
    ManagerConnectionBridgeCreate Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeCreate"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event BridgeCreateEventHandler BridgeCreate

    Value

    Type: AsterNET.ManagerBridgeCreateEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm deleted file mode 100644 index 119498a..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.BridgeDestroy Event
    Click or drag to resize
    ManagerConnectionBridgeDestroy Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeDestroy"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event BridgeDestroyEventHandler BridgeDestroy

    Value

    Type: AsterNET.ManagerBridgeDestroyEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm deleted file mode 100644 index 7c1bc92..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.BridgeEnter Event
    Click or drag to resize
    ManagerConnectionBridgeEnter Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeEnter"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event BridgeEnterEventHandler BridgeEnter

    Value

    Type: AsterNET.ManagerBridgeEnterEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm deleted file mode 100644 index b615ab1..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.BridgeLeave Event
    Click or drag to resize
    ManagerConnectionBridgeLeave Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeLeave"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event BridgeLeaveEventHandler BridgeLeave

    Value

    Type: AsterNET.ManagerBridgeLeaveEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm deleted file mode 100644 index 2a6d1fc..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Cdr Event
    Click or drag to resize
    ManagerConnectionCdr Event
    - A CdrEvent is triggered when a call detail record is generated, usually at the end of a call. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event CdrEventHandler Cdr

    Value

    Type: AsterNET.ManagerCdrEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm deleted file mode 100644 index 0ad7a81..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ConfbridgeEnd Event
    Click or drag to resize
    ManagerConnectionConfbridgeEnd Event
    - This event is sent when the last user leaves a conference and it is torn down. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ConfbridgeEndEventHandler ConfbridgeEnd

    Value

    Type: AsterNET.ManagerConfbridgeEndEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm deleted file mode 100644 index 6d6d308..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ConfbridgeJoin Event
    Click or drag to resize
    ManagerConnectionConfbridgeJoin Event
    - This event is sent when a user joins a conference - either one already in progress or as the first user to join a newly instantiated bridge. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ConfbridgeJoinEventHandler ConfbridgeJoin

    Value

    Type: AsterNET.ManagerConfbridgeJoinEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm deleted file mode 100644 index 8f73bad..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ConfbridgeLeave Event
    Click or drag to resize
    ManagerConnectionConfbridgeLeave Event
    - This event is sent when a user leaves a conference. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ConfbridgeLeaveEventHandler ConfbridgeLeave

    Value

    Type: AsterNET.ManagerConfbridgeLeaveEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm deleted file mode 100644 index d275f87..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ConfbridgeStart Event
    Click or drag to resize
    ManagerConnectionConfbridgeStart Event
    - This event is sent when the first user requests a conference and it is instantiated -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ConfbridgeStartEventHandler ConfbridgeStart

    Value

    Type: AsterNET.ManagerConfbridgeStartEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm deleted file mode 100644 index 4b23618..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ConfbridgeTalking Event
    Click or drag to resize
    ManagerConnectionConfbridgeTalking Event
    - This event is sent when the conference detects that a user has either begin or stopped talking. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ConfbridgeTalkingEventHandler ConfbridgeTalking

    Value

    Type: AsterNET.ManagerConfbridgeTalkingEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm deleted file mode 100644 index 8c36d7f..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ConnectionState Event
    Click or drag to resize
    ManagerConnectionConnectionState Event
    - A ConnectionState is triggered after Connect/Disconnect/Reload/Shutdown events. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ConnectionStateEventHandler ConnectionState

    Value

    Type: AsterNET.ManagerConnectionStateEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm deleted file mode 100644 index 3180cf0..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.DBGetResponse Event
    Click or drag to resize
    ManagerConnectionDBGetResponse Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.DBGetResponse"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event DBGetResponseEventHandler DBGetResponse

    Value

    Type: AsterNET.ManagerDBGetResponseEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DNDState.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DNDState.htm deleted file mode 100644 index db8bd4e..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_DNDState.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.DNDState Event
    Click or drag to resize
    ManagerConnectionDNDState Event
    - A DNDStateEvent is triggered by the Zap channel driver when a channel enters or leaves DND (do not disturb) state. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event DNDStateEventHandler DNDState

    Value

    Type: AsterNET.ManagerDNDStateEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm deleted file mode 100644 index bd8f4c3..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.DTMF Event
    Click or drag to resize
    ManagerConnectionDTMF Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.DTMF"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event DTMFEventHandler DTMF

    Value

    Type: AsterNET.ManagerDTMFEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm deleted file mode 100644 index 76cdc98..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.Dial Event
    Click or drag to resize
    ManagerConnectionDial Event
    - A Dial is triggered whenever a phone attempts to dial someone.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event DialEventHandler Dial

    Value

    Type: AsterNET.ManagerDialEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm deleted file mode 100644 index 3a35946..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.DialBegin Event
    Click or drag to resize
    ManagerConnectionDialBegin Event
    - Raised when a dial action has started.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event DialBeginEventHandler DialBegin

    Value

    Type: AsterNET.ManagerDialBeginEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm deleted file mode 100644 index 2d5cc93..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.DialEnd Event
    Click or drag to resize
    ManagerConnectionDialEnd Event
    - Raised when a dial action has completed.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event DialEndEventHandler DialEnd

    Value

    Type: AsterNET.ManagerDialEndEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm deleted file mode 100644 index f02f6fd..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.ExtensionStatus Event
    Click or drag to resize
    ManagerConnectionExtensionStatus Event
    - An ExtensionStatus is triggered when the state of an extension changes.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ExtensionStatusEventHandler ExtensionStatus

    Value

    Type: AsterNET.ManagerExtensionStatusEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm deleted file mode 100644 index 643363d..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.FailedACL Event
    Click or drag to resize
    ManagerConnectionFailedACL Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.FailedACL"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event FailedACLEventHandler FailedACL

    Value

    Type: AsterNET.ManagerFailedACLEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Hangup.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Hangup.htm deleted file mode 100644 index 4a58a7d..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Hangup.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.Hangup Event
    Click or drag to resize
    ManagerConnectionHangup Event
    - A Hangup is triggered when a channel is hung up.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event HangupEventHandler Hangup

    Value

    Type: AsterNET.ManagerHangupEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm deleted file mode 100644 index 98d37ae..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.Hold Event
    Click or drag to resize
    ManagerConnectionHold Event
    - A Hold is triggered by the SIP channel driver when a channel is put on hold.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event HoldEventHandler Hold

    Value

    Type: AsterNET.ManagerHoldEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm deleted file mode 100644 index 73dc4d5..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.HoldedCall Event
    Click or drag to resize
    ManagerConnectionHoldedCall Event
    - A HoldedCall is triggered when a channel is put on hold.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event HoldedCallEventHandler HoldedCall

    Value

    Type: AsterNET.ManagerHoldedCallEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm deleted file mode 100644 index 99591ef..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.Join Event
    Click or drag to resize
    ManagerConnectionJoin Event
    - A Join is triggered when a channel joines a queue.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event JoinEventHandler Join

    Value

    Type: AsterNET.ManagerJoinEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm deleted file mode 100644 index a8ac8da..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.Leave Event
    Click or drag to resize
    ManagerConnectionLeave Event
    - A Leave is triggered when a channel leaves a queue.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event LeaveEventHandler Leave

    Value

    Type: AsterNET.ManagerLeaveEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm deleted file mode 100644 index 511f00b..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm +++ /dev/null @@ -1,12 +0,0 @@ -ManagerConnection.Link Event
    Click or drag to resize
    ManagerConnectionLink Event
    - A Link is triggered when two voice channels are linked together and voice data exchange commences.
    - Several Link events may be seen for a single call. This can occur when Asterisk fails to setup a - native bridge for the call.This is when Asterisk must sit between two telephones and perform - CODEC conversion on their behalf. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event LinkEventHandler Link

    Value

    Type: AsterNET.ManagerLinkEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm deleted file mode 100644 index f4c840b..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.LogChannel Event
    Click or drag to resize
    ManagerConnectionLogChannel Event
    - A LogChannel is triggered when logging is turned on or off.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event LogChannelEventHandler LogChannel

    Value

    Type: AsterNET.ManagerLogChannelEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm deleted file mode 100644 index 027a078..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.MeetMeJoin Event
    Click or drag to resize
    ManagerConnectionMeetMeJoin Event
    - A MeetMeJoin is triggered if a channel joins a meet me conference.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event MeetMeJoinEventHandler MeetMeJoin

    Value

    Type: AsterNET.ManagerMeetMeJoinEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm deleted file mode 100644 index 7d5e761..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.MeetMeLeave Event
    Click or drag to resize
    ManagerConnectionMeetMeLeave Event
    - A MeetMeLeave is triggered if a channel leaves a meet me conference.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event MeetMeLeaveEventHandler MeetMeLeave

    Value

    Type: AsterNET.ManagerMeetMeLeaveEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm deleted file mode 100644 index 1795bf4..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm +++ /dev/null @@ -1,10 +0,0 @@ -ManagerConnection.MeetMeTalking Event
    Click or drag to resize
    ManagerConnectionMeetMeTalking Event
    - A MeetMeTalkingEvent is triggered when a user starts talking in a meet me conference.
    - To enable talker detection you must pass the option 'T' to the MeetMe application. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event MeetMeTalkingEventHandler MeetMeTalking

    Value

    Type: AsterNET.ManagerMeetMeTalkingEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm deleted file mode 100644 index bc7e804..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.MessageWaiting Event
    Click or drag to resize
    ManagerConnectionMessageWaiting Event
    - A MessageWaiting is triggered when someone leaves voicemail.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event MessageWaitingEventHandler MessageWaiting

    Value

    Type: AsterNET.ManagerMessageWaitingEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm deleted file mode 100644 index 8086fa1..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.NewCallerId Event
    Click or drag to resize
    ManagerConnectionNewCallerId Event
    - A NewCallerId is triggered when the caller id of a channel changes.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event NewCallerIdEventHandler NewCallerId

    Value

    Type: AsterNET.ManagerNewCallerIdEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm deleted file mode 100644 index a65f78f..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.NewChannel Event
    Click or drag to resize
    ManagerConnectionNewChannel Event
    - A NewChannel is triggered when a new channel is created.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event NewChannelEventHandler NewChannel

    Value

    Type: AsterNET.ManagerNewChannelEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewExten.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewExten.htm deleted file mode 100644 index 2b00c74..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_NewExten.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.NewExten Event
    Click or drag to resize
    ManagerConnectionNewExten Event
    - A NewExten is triggered when a channel is connected to a new extension.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event NewExtenEventHandler NewExten

    Value

    Type: AsterNET.ManagerNewExtenEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewState.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewState.htm deleted file mode 100644 index 5b17742..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_NewState.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.NewState Event
    Click or drag to resize
    ManagerConnectionNewState Event
    - A NewState is triggered when the state of a channel has changed.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event NewStateEventHandler NewState

    Value

    Type: AsterNET.ManagerNewStateEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm deleted file mode 100644 index 50a3b30..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.OriginateResponse Event
    Click or drag to resize
    ManagerConnectionOriginateResponse Event
    - An OriginateResponse is triggered when the execution of an Originate. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event OriginateResponseEventHandler OriginateResponse

    Value

    Type: AsterNET.ManagerOriginateResponseEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm deleted file mode 100644 index a7b0448..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ParkedCall Event
    Click or drag to resize
    ManagerConnectionParkedCall Event
    - A ParkedCall is triggered when a channel is parked (in this case no - action id is set) and in response to a ParkedCallsAction.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ParkedCallEventHandler ParkedCall

    Value

    Type: AsterNET.ManagerParkedCallEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm deleted file mode 100644 index 02e898b..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.ParkedCallGiveUp Event
    Click or drag to resize
    ManagerConnectionParkedCallGiveUp Event
    - A ParkedCallGiveUp is triggered when a channel that has been parked is hung up.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ParkedCallGiveUpEventHandler ParkedCallGiveUp

    Value

    Type: AsterNET.ManagerParkedCallGiveUpEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm deleted file mode 100644 index aac12c5..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.ParkedCallTimeOut Event
    Click or drag to resize
    ManagerConnectionParkedCallTimeOut Event
    - A ParkedCallTimeOut is triggered when call parking times out for a given channel.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ParkedCallTimeOutEventHandler ParkedCallTimeOut

    Value

    Type: AsterNET.ManagerParkedCallTimeOutEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm deleted file mode 100644 index 76edf73..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ParkedCallsComplete Event
    Click or drag to resize
    ManagerConnectionParkedCallsComplete Event
    - A ParkedCallsComplete is triggered after all parked calls have been reported in response to a ParkedCallsAction. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ParkedCallsCompleteEventHandler ParkedCallsComplete

    Value

    Type: AsterNET.ManagerParkedCallsCompleteEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm deleted file mode 100644 index 8f8338f..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.PeerEntry Event
    Click or drag to resize
    ManagerConnectionPeerEntry Event
    - A PeerEntry is triggered in response to a SIPPeersAction or SIPShowPeerAction and contains information about a peer.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event PeerEntryEventHandler PeerEntry

    Value

    Type: AsterNET.ManagerPeerEntryEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm deleted file mode 100644 index b253227..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.PeerStatus Event
    Click or drag to resize
    ManagerConnectionPeerStatus Event
    - A PeerStatus is triggered when a SIP or IAX client attempts to registrer at this asterisk server.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event PeerStatusEventHandler PeerStatus

    Value

    Type: AsterNET.ManagerPeerStatusEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm deleted file mode 100644 index 2e901d1..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.PeerlistComplete Event
    Click or drag to resize
    ManagerConnectionPeerlistComplete Event
    - A PeerlistComplete is triggered after the details of all peers has been reported in response to an SIPPeersAction or SIPShowPeerAction.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event PeerlistCompleteEventHandler PeerlistComplete

    Value

    Type: AsterNET.ManagerPeerlistCompleteEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm deleted file mode 100644 index 2be05d6..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueCallerAbandon Event
    Click or drag to resize
    ManagerConnectionQueueCallerAbandon Event
    - A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueCallerAbandonEventHandler QueueCallerAbandon

    Value

    Type: AsterNET.ManagerQueueCallerAbandonEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm deleted file mode 100644 index 00352a5..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.QueueCallerJoin Event
    Click or drag to resize
    ManagerConnectionQueueCallerJoin Event
    - Raised when a caller joins a Queue.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueCallerJoinEventHandler QueueCallerJoin

    Value

    Type: AsterNET.ManagerQueueCallerJoinEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm deleted file mode 100644 index 3bd1946..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm +++ /dev/null @@ -1,8 +0,0 @@ -ManagerConnection.QueueCallerLeave Event
    Click or drag to resize
    ManagerConnectionQueueCallerLeave Event
    - Raised when a caller leaves a Queue.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueCallerLeaveEventHandler QueueCallerLeave

    Value

    Type: AsterNET.ManagerQueueCallerLeaveEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm deleted file mode 100644 index 44f6f47..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueEntry Event
    Click or drag to resize
    ManagerConnectionQueueEntry Event
    - A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueEntryEventHandler QueueEntry

    Value

    Type: AsterNET.ManagerQueueEntryEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm deleted file mode 100644 index 015ea44..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueMember Event
    Click or drag to resize
    ManagerConnectionQueueMember Event
    - A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueMemberEventHandler QueueMember

    Value

    Type: AsterNET.ManagerQueueMemberEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm deleted file mode 100644 index e85c6e9..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueMemberAdded Event
    Click or drag to resize
    ManagerConnectionQueueMemberAdded Event
    - A QueueMemberAddedEvent is triggered when a queue member is added to a queue. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueMemberAddedEventHandler QueueMemberAdded

    Value

    Type: AsterNET.ManagerQueueMemberAddedEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm deleted file mode 100644 index 483c690..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueMemberPaused Event
    Click or drag to resize
    ManagerConnectionQueueMemberPaused Event
    - A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueMemberPausedEventHandler QueueMemberPaused

    Value

    Type: AsterNET.ManagerQueueMemberPausedEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm deleted file mode 100644 index 586fbc3..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueMemberRemoved Event
    Click or drag to resize
    ManagerConnectionQueueMemberRemoved Event
    - A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueMemberRemovedEventHandler QueueMemberRemoved

    Value

    Type: AsterNET.ManagerQueueMemberRemovedEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm deleted file mode 100644 index bea0d64..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueMemberStatus Event
    Click or drag to resize
    ManagerConnectionQueueMemberStatus Event
    - A QueueMemberStatusEvent shows the status of a QueueMemberEvent. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueMemberStatusEventHandler QueueMemberStatus

    Value

    Type: AsterNET.ManagerQueueMemberStatusEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm deleted file mode 100644 index aef1665..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueParams Event
    Click or drag to resize
    ManagerConnectionQueueParams Event
    - A QueueParamsEvent is triggered in response to a QueueStatusAction and contains the parameters of a queue. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueParamsEventHandler QueueParams

    Value

    Type: AsterNET.ManagerQueueParamsEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm deleted file mode 100644 index ffd7004..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.QueueStatusComplete Event
    Click or drag to resize
    ManagerConnectionQueueStatusComplete Event
    - A QueueStatusCompleteEvent is triggered after the state of all queues has been reported in response to a QueueStatusAction. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event QueueStatusCompleteEventHandler QueueStatusComplete

    Value

    Type: AsterNET.ManagerQueueStatusCompleteEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Registry.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Registry.htm deleted file mode 100644 index 6f0d3ae..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Registry.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Registry Event
    Click or drag to resize
    ManagerConnectionRegistry Event
    - A Registry is triggered when this asterisk server attempts to register - as a client at another SIP or IAX server.

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event RegistryEventHandler Registry

    Value

    Type: AsterNET.ManagerRegistryEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Rename.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Rename.htm deleted file mode 100644 index 8128806..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Rename.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Rename Event
    Click or drag to resize
    ManagerConnectionRename Event
    - A RenameEvent is triggered when the name of a channel is changed. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event RenameEventHandler Rename

    Value

    Type: AsterNET.ManagerRenameEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Status.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Status.htm deleted file mode 100644 index 02fefe1..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Status.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Status Event
    Click or drag to resize
    ManagerConnectionStatus Event
    - A StatusEvent is triggered for each active channel in response to a StatusAction. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event StatusEventHandler Status

    Value

    Type: AsterNET.ManagerStatusEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm deleted file mode 100644 index 2649dff..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.StatusComplete Event
    Click or drag to resize
    ManagerConnectionStatusComplete Event
    - A StatusCompleteEvent is triggered after the state of all channels has been reported in response to a StatusAction. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event StatusCompleteEventHandler StatusComplete

    Value

    Type: AsterNET.ManagerStatusCompleteEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Transfer.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Transfer.htm deleted file mode 100644 index 9ebabdc..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Transfer.htm +++ /dev/null @@ -1,7 +0,0 @@ -ManagerConnection.Transfer Event
    Click or drag to resize
    ManagerConnectionTransfer Event

    [Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.Transfer"]

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event TransferEventHandler Transfer

    Value

    Type: AsterNET.ManagerTransferEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm deleted file mode 100644 index 3099bfb..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.UnhandledEvent Event
    Click or drag to resize
    ManagerConnectionUnhandledEvent Event
    - An UnhandledEvent is triggered on unknown event. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ManagerEventHandler UnhandledEvent

    Value

    Type: AsterNET.ManagerManagerEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Unhold.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Unhold.htm deleted file mode 100644 index 892bf9a..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Unhold.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Unhold Event
    Click or drag to resize
    ManagerConnectionUnhold Event
    - An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event UnholdEventHandler Unhold

    Value

    Type: AsterNET.ManagerUnholdEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Unlink.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Unlink.htm deleted file mode 100644 index 01af6b3..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_Unlink.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.Unlink Event
    Click or drag to resize
    ManagerConnectionUnlink Event
    - An UnlinkEvent is triggered when a link between two voice channels is discontinued, for example, just before call completion. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event UnlinkEventHandler Unlink

    Value

    Type: AsterNET.ManagerUnlinkEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm deleted file mode 100644 index 8106b2a..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.UnparkedCall Event
    Click or drag to resize
    ManagerConnectionUnparkedCall Event
    - A UnparkedCallEvent is triggered when a channel that has been parked is resumed. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event UnparkedCallEventHandler UnparkedCall

    Value

    Type: AsterNET.ManagerUnparkedCallEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm deleted file mode 100644 index 90e70a8..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.UserEvents Event
    Click or drag to resize
    ManagerConnectionUserEvents Event
    - A ZapShowChannelsEvent is triggered on UserEvent in dialplan. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event UserEventHandler UserEvents

    Value

    Type: AsterNET.ManagerUserEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_VarSet.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_VarSet.htm deleted file mode 100644 index 804d18e..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_VarSet.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.VarSet Event
    Click or drag to resize
    ManagerConnectionVarSet Event
    - When a variable is set -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event VarSetEventHandler VarSet

    Value

    Type: AsterNET.ManagerVarSetEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm deleted file mode 100644 index 70308d6..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ZapShowChannels Event
    Click or drag to resize
    ManagerConnectionZapShowChannels Event
    - A ZapShowChannelsEvent is triggered in response to a ZapShowChannelsAction and shows the state of a zap channel. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ZapShowChannelsEventHandler ZapShowChannels

    Value

    Type: AsterNET.ManagerZapShowChannelsEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm deleted file mode 100644 index 5c54c40..0000000 --- a/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm +++ /dev/null @@ -1,9 +0,0 @@ -ManagerConnection.ZapShowChannelsComplete Event
    Click or drag to resize
    ManagerConnectionZapShowChannelsComplete Event
    - A ZapShowChannelsCompleteEvent is triggered after the state of all zap channels has been reported in response to a ZapShowChannelsAction. -

    Namespace: AsterNET.Manager
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public event ZapShowChannelsCompleteEventHandler ZapShowChannelsComplete

    Value

    Type: AsterNET.ManagerZapShowChannelsCompleteEventHandler
    See Also
    \ No newline at end of file diff --git a/docs/html/Events_T_AsterNET_Manager_ManagerConnection.htm b/docs/html/Events_T_AsterNET_Manager_ManagerConnection.htm deleted file mode 100644 index 9b217ff..0000000 --- a/docs/html/Events_T_AsterNET_Manager_ManagerConnection.htm +++ /dev/null @@ -1,124 +0,0 @@ -ManagerConnection Events
    Click or drag to resize
    ManagerConnection Events

    The ManagerConnection type exposes the following members.

    Events
    -   - NameDescription
    Public eventAgentCallbackLogin
    - An AgentCallbackLogin is triggered when an agent is successfully logged in. -
    Public eventAgentCallbackLogoff
    - An AgentCallbackLogoff is triggered when an agent that previously logged in is logged of.
    Public eventAgentCalled
    - An AgentCalled is triggered when an agent is ring.
    - To enable AgentCalled you have to set eventwhencalled = yes in queues.conf.
    Public eventAgentComplete
    - An AgentCompleteEvent is triggered when at the end of a call if the caller was connected to an agent. -
    Public eventAgentConnect
    - An AgentConnectEvent is triggered when a caller is connected to an agent. -
    Public eventAgentDump
    - An AgentDumpEvent is triggered when an agent dumps the caller while listening to the queue announcement. -
    Public eventAgentLogin
    - An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin. -
    Public eventAgentLogoff
    - An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of. -
    Public eventAgents
    - An AgentsEvent is triggered for each agent in response to an AgentsAction. -
    Public eventAgentsComplete
    - An AgentsCompleteEvent is triggered after the state of all agents has been reported in response to an AgentsAction. -
    Public eventAGIExec
    - AgiExec is execute -
    Public eventAlarm
    - An AlarmEvent is triggered when a Zap channel enters or changes alarm state. -
    Public eventAlarmClear
    - An AlarmEvent is triggered when a Zap channel leaves alarm state. -
    Public eventAttendedTransfer
    Public eventBlindTransfer
    Public eventBridge
    Public eventBridgeCreate
    Public eventBridgeDestroy
    Public eventBridgeEnter
    Public eventBridgeLeave
    Public eventCdr
    - A CdrEvent is triggered when a call detail record is generated, usually at the end of a call. -
    Public eventConfbridgeEnd
    - This event is sent when the last user leaves a conference and it is torn down. -
    Public eventConfbridgeJoin
    - This event is sent when a user joins a conference - either one already in progress or as the first user to join a newly instantiated bridge. -
    Public eventConfbridgeLeave
    - This event is sent when a user leaves a conference. -
    Public eventConfbridgeStart
    - This event is sent when the first user requests a conference and it is instantiated -
    Public eventConfbridgeTalking
    - This event is sent when the conference detects that a user has either begin or stopped talking. -
    Public eventConnectionState
    - A ConnectionState is triggered after Connect/Disconnect/Reload/Shutdown events. -
    Public eventDBGetResponse
    Public eventDial
    - A Dial is triggered whenever a phone attempts to dial someone.
    Public eventDialBegin
    - Raised when a dial action has started.
    Public eventDialEnd
    - Raised when a dial action has completed.
    Public eventDNDState
    - A DNDStateEvent is triggered by the Zap channel driver when a channel enters or leaves DND (do not disturb) state. -
    Public eventDTMF
    Public eventExtensionStatus
    - An ExtensionStatus is triggered when the state of an extension changes.
    Public eventFailedACL
    Public eventHangup
    - A Hangup is triggered when a channel is hung up.
    Public eventHold
    - A Hold is triggered by the SIP channel driver when a channel is put on hold.
    Public eventHoldedCall
    - A HoldedCall is triggered when a channel is put on hold.
    Public eventJoin
    - A Join is triggered when a channel joines a queue.
    Public eventLeave
    - A Leave is triggered when a channel leaves a queue.
    Public eventLink
    - A Link is triggered when two voice channels are linked together and voice data exchange commences.
    - Several Link events may be seen for a single call. This can occur when Asterisk fails to setup a - native bridge for the call.This is when Asterisk must sit between two telephones and perform - CODEC conversion on their behalf. -
    Public eventLogChannel
    - A LogChannel is triggered when logging is turned on or off.
    Public eventMeetMeJoin
    - A MeetMeJoin is triggered if a channel joins a meet me conference.
    Public eventMeetMeLeave
    - A MeetMeLeave is triggered if a channel leaves a meet me conference.
    Public eventMeetMeTalking
    - A MeetMeTalkingEvent is triggered when a user starts talking in a meet me conference.
    - To enable talker detection you must pass the option 'T' to the MeetMe application. -
    Public eventMessageWaiting
    - A MessageWaiting is triggered when someone leaves voicemail.
    Public eventNewCallerId
    - A NewCallerId is triggered when the caller id of a channel changes.
    Public eventNewChannel
    - A NewChannel is triggered when a new channel is created.
    Public eventNewExten
    - A NewExten is triggered when a channel is connected to a new extension.
    Public eventNewState
    - A NewState is triggered when the state of a channel has changed.
    Public eventOriginateResponse
    - An OriginateResponse is triggered when the execution of an Originate. -
    Public eventParkedCall
    - A ParkedCall is triggered when a channel is parked (in this case no - action id is set) and in response to a ParkedCallsAction.
    Public eventParkedCallGiveUp
    - A ParkedCallGiveUp is triggered when a channel that has been parked is hung up.
    Public eventParkedCallsComplete
    - A ParkedCallsComplete is triggered after all parked calls have been reported in response to a ParkedCallsAction. -
    Public eventParkedCallTimeOut
    - A ParkedCallTimeOut is triggered when call parking times out for a given channel.
    Public eventPeerEntry
    - A PeerEntry is triggered in response to a SIPPeersAction or SIPShowPeerAction and contains information about a peer.
    Public eventPeerlistComplete
    - A PeerlistComplete is triggered after the details of all peers has been reported in response to an SIPPeersAction or SIPShowPeerAction.
    Public eventPeerStatus
    - A PeerStatus is triggered when a SIP or IAX client attempts to registrer at this asterisk server.
    Public eventQueueCallerAbandon
    - A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. -
    Public eventQueueCallerJoin
    - Raised when a caller joins a Queue.
    Public eventQueueCallerLeave
    - Raised when a caller leaves a Queue.
    Public eventQueueEntry
    - A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. -
    Public eventQueueMember
    - A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue. -
    Public eventQueueMemberAdded
    - A QueueMemberAddedEvent is triggered when a queue member is added to a queue. -
    Public eventQueueMemberPaused
    - A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused. -
    Public eventQueueMemberRemoved
    - A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue. -
    Public eventQueueMemberStatus
    - A QueueMemberStatusEvent shows the status of a QueueMemberEvent. -
    Public eventQueueParams
    - A QueueParamsEvent is triggered in response to a QueueStatusAction and contains the parameters of a queue. -
    Public eventQueueStatusComplete
    - A QueueStatusCompleteEvent is triggered after the state of all queues has been reported in response to a QueueStatusAction. -
    Public eventRegistry
    - A Registry is triggered when this asterisk server attempts to register - as a client at another SIP or IAX server.
    Public eventRename
    - A RenameEvent is triggered when the name of a channel is changed. -
    Public eventStatus
    - A StatusEvent is triggered for each active channel in response to a StatusAction. -
    Public eventStatusComplete
    - A StatusCompleteEvent is triggered after the state of all channels has been reported in response to a StatusAction. -
    Public eventTransfer
    Public eventUnhandledEvent
    - An UnhandledEvent is triggered on unknown event. -
    Public eventUnhold
    - An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold. -
    Public eventUnlink
    - An UnlinkEvent is triggered when a link between two voice channels is discontinued, for example, just before call completion. -
    Public eventUnparkedCall
    - A UnparkedCallEvent is triggered when a channel that has been parked is resumed. -
    Public eventUserEvents
    - A ZapShowChannelsEvent is triggered on UserEvent in dialplan. -
    Public eventVarSet
    - When a variable is set -
    Public eventZapShowChannels
    - A ZapShowChannelsEvent is triggered in response to a ZapShowChannelsAction and shows the state of a zap channel. -
    Public eventZapShowChannelsComplete
    - A ZapShowChannelsCompleteEvent is triggered after the state of all zap channels has been reported in response to a ZapShowChannelsAction. -
    Top
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm index cb41bfc..9d6c147 100644 --- a/docs/html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm +++ b/docs/html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm @@ -1,4 +1,6 @@ -AbstractQueueMemberEvent Constructor
    AbstractQueueMemberEvent Constructor
    Initializes a new instance of the AbstractQueueMemberEvent class

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public AbstractQueueMemberEvent(
    +AbstractQueueMemberEvent Constructor 
    AbstractQueueMemberEvent Constructor
    + AbstractQueueMemberEvent contructor +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public AbstractQueueMemberEvent(
     	ManagerConnection source
     )

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection

    [Missing <param name="source"/> documentation for "M:AsterNET.Manager.Event.AbstractQueueMemberEvent.#ctor(AsterNET.Manager.ManagerConnection)"]

    See Also
    \ No newline at end of file + source : ManagerConnection -> AbstractQueueMemberEvent

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm index ebbf6d3..0660f8a 100644 --- a/docs/html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm +++ b/docs/html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm @@ -1,4 +1,6 @@ -QueueMemberAddedEvent Constructor
    QueueMemberAddedEvent Constructor
    Initializes a new instance of the QueueMemberAddedEvent class

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberAddedEvent(
    +QueueMemberAddedEvent Constructor 
    QueueMemberAddedEvent Constructor
    + Creates a new QueueMemberAddedEvent +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberAddedEvent(
     	ManagerConnection source
     )

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection

    [Missing <param name="source"/> documentation for "M:AsterNET.Manager.Event.QueueMemberAddedEvent.#ctor(AsterNET.Manager.ManagerConnection)"]

    See Also
    \ No newline at end of file + source : ManagerConnection -> QueueMemberAddedEvent

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm index cd7eece..9e46c65 100644 --- a/docs/html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm +++ b/docs/html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm @@ -1,4 +1,6 @@ -QueueMemberPauseEvent Constructor
    QueueMemberPauseEvent Constructor
    Initializes a new instance of the QueueMemberPauseEvent class

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberPauseEvent(
    +QueueMemberPauseEvent Constructor 
    QueueMemberPauseEvent Constructor
    + Creates a new QueueMemberPauseEvent +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberPauseEvent(
     	ManagerConnection source
     )

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection

    [Missing <param name="source"/> documentation for "M:AsterNET.Manager.Event.QueueMemberPauseEvent.#ctor(AsterNET.Manager.ManagerConnection)"]

    See Also
    \ No newline at end of file + source : ManagerConnection -> QueueMemberPauseEvent

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm index e900830..8e894e3 100644 --- a/docs/html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm +++ b/docs/html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm @@ -1,4 +1,6 @@ -QueueMemberPausedEvent Constructor
    QueueMemberPausedEvent Constructor
    Initializes a new instance of the QueueMemberPausedEvent class

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberPausedEvent(
    +QueueMemberPausedEvent Constructor 
    QueueMemberPausedEvent Constructor
    + Creates a new QueueMemberPausedEvent +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberPausedEvent(
     	ManagerConnection source
     )

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection

    [Missing <param name="source"/> documentation for "M:AsterNET.Manager.Event.QueueMemberPausedEvent.#ctor(AsterNET.Manager.ManagerConnection)"]

    See Also
    \ No newline at end of file + source : ManagerConnection -> QueueMemberPausedEvent

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm index 76fcc19..2877824 100644 --- a/docs/html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm +++ b/docs/html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm @@ -1,4 +1,6 @@ -QueueMemberPenaltyEvent Constructor
    QueueMemberPenaltyEvent Constructor
    Initializes a new instance of the QueueMemberPenaltyEvent class

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberPenaltyEvent(
    +QueueMemberPenaltyEvent Constructor 
    QueueMemberPenaltyEvent Constructor
    + Creates a new QueueMemberPenaltyEvent +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberPenaltyEvent(
     	ManagerConnection source
     )

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection

    [Missing <param name="source"/> documentation for "M:AsterNET.Manager.Event.QueueMemberPenaltyEvent.#ctor(AsterNET.Manager.ManagerConnection)"]

    See Also
    \ No newline at end of file + source : ManagerConnection -> QueueMemberPenaltyEvent

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm index e501d53..00fdef1 100644 --- a/docs/html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm +++ b/docs/html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm @@ -1,4 +1,6 @@ -QueueMemberRemovedEvent Constructor
    QueueMemberRemovedEvent Constructor
    Initializes a new instance of the QueueMemberRemovedEvent class

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberRemovedEvent(
    +QueueMemberRemovedEvent Constructor 
    QueueMemberRemovedEvent Constructor
    + Creates a new QueueMemberRemovedEvent +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberRemovedEvent(
     	ManagerConnection source
     )

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection

    [Missing <param name="source"/> documentation for "M:AsterNET.Manager.Event.QueueMemberRemovedEvent.#ctor(AsterNET.Manager.ManagerConnection)"]

    See Also
    \ No newline at end of file + source : ManagerConnection -> QueueMemberRemovedEvent

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_QueueMemberRinginuseEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_QueueMemberRinginuseEvent__ctor.htm new file mode 100644 index 0000000..d01fb25 --- /dev/null +++ b/docs/html/M_AsterNET_Manager_Event_QueueMemberRinginuseEvent__ctor.htm @@ -0,0 +1,11 @@ +QueueMemberRinginuseEvent Constructor
    QueueMemberRinginuseEvent Constructor
    + Creates a new QueueMemberRinginuseEvent +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberRinginuseEvent(
    +	ManagerConnection source
    +)

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm b/docs/html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm index c6da18a..40b7047 100644 --- a/docs/html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm +++ b/docs/html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm @@ -1,4 +1,6 @@ -QueueMemberStatusEvent Constructor
    QueueMemberStatusEvent Constructor
    Initializes a new instance of the QueueMemberStatusEvent class

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberStatusEvent(
    +QueueMemberStatusEvent Constructor 
    QueueMemberStatusEvent Constructor
    + Creates a new QueueMemberStatusEvent +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public QueueMemberStatusEvent(
     	ManagerConnection source
     )

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection

    [Missing <param name="source"/> documentation for "M:AsterNET.Manager.Event.QueueMemberStatusEvent.#ctor(AsterNET.Manager.ManagerConnection)"]

    See Also
    \ No newline at end of file + source : ManagerConnection -> QueueMemberStatusEvent

    Parameters

    source
    Type: AsterNET.ManagerManagerConnection
    ManagerConnection passed through in the event.
    See Also
    \ No newline at end of file diff --git a/docs/html/Methods_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm b/docs/html/Methods_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm new file mode 100644 index 0000000..620fd6a --- /dev/null +++ b/docs/html/Methods_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm @@ -0,0 +1,9 @@ +QueueMemberRinginuseEvent Methods
    QueueMemberRinginuseEvent Methods

    The QueueMemberRinginuseEvent type exposes the following members.

    Methods
    +   + NameDescription
    Public methodEquals
    Determines whether the specified Object is equal to the current Object.
    (Inherited from Object.)
    Protected methodFinalize
    Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
    (Inherited from Object.)
    Public methodGetHashCode
    Serves as a hash function for a particular type.
    (Inherited from Object.)
    Public methodGetType
    Gets the Type of the current instance.
    (Inherited from Object.)
    Protected methodMemberwiseClone
    Creates a shallow copy of the current Object.
    (Inherited from Object.)
    Public methodParse
    + Unknown properties parser +
    (Inherited from ManagerEvent.)
    Public methodParseSpecial
    + Unknown properties parser. +
    (Inherited from ManagerEvent.)
    Public methodToString
    + Convert all properties to string +
    (Inherited from ManagerEvent.)
    Top
    See Also
    \ No newline at end of file diff --git a/docs/html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm b/docs/html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm index 49d0d32..29a87af 100644 --- a/docs/html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm +++ b/docs/html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm @@ -1,4 +1,4 @@ -QueueMemberStatusEvent Methods
    QueueMemberStatusEvent Methods

    The QueueMemberStatusEvent type exposes the following members.

    Methods
    +QueueMemberStatusEvent Methods
    QueueMemberStatusEvent Methods

    The QueueMemberStatusEvent type exposes the following members.

    Methods
      NameDescription
    Public methodEquals
    Determines whether the specified Object is equal to the current Object.
    (Inherited from Object.)
    Protected methodFinalize
    Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
    (Inherited from Object.)
    Public methodGetHashCode
    Serves as a hash function for a particular type.
    (Inherited from Object.)
    Public methodGetType
    Gets the Type of the current instance.
    (Inherited from Object.)
    Protected methodMemberwiseClone
    Creates a shallow copy of the current Object.
    (Inherited from Object.)
    Public methodParse
    Unknown properties parser diff --git a/docs/html/N_AsterNET_Manager.htm b/docs/html/N_AsterNET_Manager.htm index b9acfe7..26cd789 100644 --- a/docs/html/N_AsterNET_Manager.htm +++ b/docs/html/N_AsterNET_Manager.htm @@ -1,4 +1,4 @@ -AsterNET.Manager Namespace
    Click or drag to resize
    AsterNET.Manager Namespace
    AsterNet Manager
    Classes
    +AsterNET.Manager Namespace
    Click or drag to resize
    AsterNET.Manager Namespace
    AsterNet Manager
    Classes
      ClassDescription
    Public classAuthenticationFailedException
    An AuthenticationFailedException is thrown when a login fails due to an incorrect username and/or password. @@ -27,6 +27,154 @@ An Interface to handle responses received from an asterisk server.
    Delegates
      - DelegateDescription
    Public delegateAgentCallbackLoginEventHandler
    Public delegateAgentCallbackLogoffEventHandler
    Public delegateAgentCalledEventHandler
    Public delegateAgentCompleteEventHandler
    Public delegateAgentConnectEventHandler
    Public delegateAgentDumpEventHandler
    Public delegateAgentLoginEventHandler
    Public delegateAgentLogoffEventHandler
    Public delegateAgentsCompleteEventHandler
    Public delegateAgentsEventHandler
    Public delegateAGIExecHandler
    Public delegateAlarmClearEventHandler
    Public delegateAlarmEventHandler
    Public delegateAttendedTransferEventHandler
    Public delegateBlindTransferEventHandler
    Public delegateBridgeCreateEventHandler
    Public delegateBridgeDestroyEventHandler
    Public delegateBridgeEnterEventHandler
    Public delegateBridgeEventHandler
    Public delegateBridgeLeaveEventHandler
    Public delegateCdrEventHandler
    Public delegateConfbridgeEndEventHandler
    Public delegateConfbridgeJoinEventHandler
    Public delegateConfbridgeLeaveEventHandler
    Public delegateConfbridgeStartEventHandler
    Public delegateConfbridgeTalkingEventHandler
    Public delegateConnectionStateEventHandler
    Public delegateDBGetResponseEventHandler
    Public delegateDialBeginEventHandler
    Public delegateDialEndEventHandler
    Public delegateDialEventHandler
    Public delegateDNDStateEventHandler
    Public delegateDTMFEventHandler
    Public delegateExtensionStatusEventHandler
    Public delegateFailedACLEventHandler
    Public delegateHangupEventHandler
    Public delegateHoldedCallEventHandler
    Public delegateHoldEventHandler
    Public delegateJoinEventHandler
    Public delegateLeaveEventHandler
    Public delegateLinkEventHandler
    Public delegateLogChannelEventHandler
    Public delegateManagerEventHandler
    Public delegateMeetMeJoinEventHandler
    Public delegateMeetMeLeaveEventHandler
    Public delegateMeetMeTalkingEventHandler
    Public delegateMessageWaitingEventHandler
    Public delegateNewCallerIdEventHandler
    Public delegateNewChannelEventHandler
    Public delegateNewExtenEventHandler
    Public delegateNewStateEventHandler
    Public delegateOriginateResponseEventHandler
    Public delegateParkedCallEventHandler
    Public delegateParkedCallGiveUpEventHandler
    Public delegateParkedCallsCompleteEventHandler
    Public delegateParkedCallTimeOutEventHandler
    Public delegatePeerEntryEventHandler
    Public delegatePeerlistCompleteEventHandler
    Public delegatePeerStatusEventHandler
    Public delegateQueueCallerAbandonEventHandler
    Public delegateQueueCallerJoinEventHandler
    Public delegateQueueCallerLeaveEventHandler
    Public delegateQueueEntryEventHandler
    Public delegateQueueMemberAddedEventHandler
    Public delegateQueueMemberEventHandler
    Public delegateQueueMemberPausedEventHandler
    Public delegateQueueMemberRemovedEventHandler
    Public delegateQueueMemberStatusEventHandler
    Public delegateQueueParamsEventHandler
    Public delegateQueueStatusCompleteEventHandler
    Public delegateRegistryEventHandler
    Public delegateRenameEventHandler
    Public delegateStatusCompleteEventHandler
    Public delegateStatusEventHandler
    Public delegateTransferEventHandler
    Public delegateUnholdEventHandler
    Public delegateUnlinkEventHandler
    Public delegateUnparkedCallEventHandler
    Public delegateUserEventHandler
    Public delegateVarSetEventHandler
    Public delegateZapShowChannelsCompleteEventHandler
    Public delegateZapShowChannelsEventHandler
    Enumerations
    + DelegateDescription
    Public delegateAgentCallbackLoginEventHandler
    + An AgentCallbackLogin is triggered when an agent is successfully logged in. +
    Public delegateAgentCallbackLogoffEventHandler
    + An AgentCallbackLogoff is triggered when an agent that previously logged in is logged of. +
    Public delegateAgentCalledEventHandler
    + An AgentCalled is triggered when an agent is ring.
    + To enable AgentCalled you have to set eventwhencalled = yes in queues.conf. +
    Public delegateAgentCompleteEventHandler
    + An AgentCompleteEvent is triggered when at the end of a call if the caller was connected to an agent. +
    Public delegateAgentConnectEventHandler
    + An AgentConnectEvent is triggered when a caller is connected to an agent. +
    Public delegateAgentDumpEventHandler
    + An AgentDumpEvent is triggered when an agent dumps the caller while listening to the queue announcement. +
    Public delegateAgentLoginEventHandler
    + An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin. +
    Public delegateAgentLogoffEventHandler
    + An AgentLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of. +
    Public delegateAgentsCompleteEventHandler
    + An AgentsCompleteEvent is triggered after the state of all agents has been reported in response to an AgentsAction. +
    Public delegateAgentsEventHandler
    + An AgentsEvent is triggered for each agent in response to an AgentsAction. +
    Public delegateAGIExecHandler
    + AgiExec is execute +
    Public delegateAlarmClearEventHandler
    + An AlarmEvent is triggered when a Zap channel leaves alarm state. +
    Public delegateAlarmEventHandler
    + An AlarmEvent is triggered when a Zap channel enters or changes alarm state. +
    Public delegateAttendedTransferEventHandler
    Public delegateBlindTransferEventHandler
    Public delegateBridgeCreateEventHandler
    Public delegateBridgeDestroyEventHandler
    Public delegateBridgeEnterEventHandler
    Public delegateBridgeEventHandler
    Public delegateBridgeLeaveEventHandler
    Public delegateCdrEventHandler
    + A CdrEvent is triggered when a call detail record is generated, usually at the end of a call. +
    Public delegateConfbridgeEndEventHandler
    + This event is sent when the last user leaves a conference and it is torn down. +
    Public delegateConfbridgeJoinEventHandler
    + This event is sent when a user joins a conference - either one already in progress or as the first user to join a newly instantiated bridge. +
    Public delegateConfbridgeLeaveEventHandler
    + This event is sent when a user leaves a conference. +
    Public delegateConfbridgeStartEventHandler
    + This event is sent when the first user requests a conference and it is instantiated +
    Public delegateConfbridgeTalkingEventHandler
    + This event is sent when the conference detects that a user has either begin or stopped talking. +
    Public delegateConnectionStateEventHandler
    + A ConnectionState is triggered after Connect/Disconnect/Reload/Shutdown events. +
    Public delegateDBGetResponseEventHandler
    Public delegateDialBeginEventHandler
    + Raised when a dial action has started. +
    Public delegateDialEndEventHandler
    + Raised when a dial action has completed. +
    Public delegateDialEventHandler
    + A Dial is triggered whenever a phone attempts to dial someone. +
    Public delegateDNDStateEventHandler
    + A DNDStateEvent is triggered by the Zap channel driver when a channel enters or leaves DND (do not disturb) state. +
    Public delegateDTMFEventHandler
    Public delegateExtensionStatusEventHandler
    + An ExtensionStatus is triggered when the state of an extension changes. +
    Public delegateFailedACLEventHandler
    Public delegateHangupEventHandler
    + A Hangup is triggered when a channel is hung up. +
    Public delegateHoldedCallEventHandler
    + A HoldedCall is triggered when a channel is put on hold. +
    Public delegateHoldEventHandler
    + A Hold is triggered by the SIP channel driver when a channel is put on hold. +
    Public delegateJoinEventHandler
    + A Join is triggered when a channel joines a queue. +
    Public delegateLeaveEventHandler
    + A Leave is triggered when a channel leaves a queue. +
    Public delegateLinkEventHandler
    + A Link is triggered when two voice channels are linked together and voice data exchange commences.
    + Several Link events may be seen for a single call. This can occur when Asterisk fails to setup a + native bridge for the call.This is when Asterisk must sit between two telephones and perform + CODEC conversion on their behalf. +
    Public delegateLogChannelEventHandler
    + A LogChannel is triggered when logging is turned on or off. +
    Public delegateManagerEventHandler
    + An UnhandledEvent is triggered on unknown event. +
    Public delegateMeetMeJoinEventHandler
    + A MeetMeJoin is triggered if a channel joins a meet me conference. +
    Public delegateMeetMeLeaveEventHandler
    + A MeetMeLeave is triggered if a channel leaves a meet me conference. +
    Public delegateMeetMeTalkingEventHandler
    + A MeetMeTalkingEvent is triggered when a user starts talking in a meet me conference.
    + To enable talker detection you must pass the option 'T' to the MeetMe application. +
    Public delegateMessageWaitingEventHandler
    + A MessageWaiting is triggered when someone leaves voicemail. +
    Public delegateNewCallerIdEventHandler
    + A NewCallerId is triggered when the caller id of a channel changes. +
    Public delegateNewChannelEventHandler
    + A NewChannel is triggered when a new channel is created. +
    Public delegateNewExtenEventHandler
    + A NewExten is triggered when a channel is connected to a new extension. +
    Public delegateNewStateEventHandler
    + A NewState is triggered when the state of a channel has changed. +
    Public delegateOriginateResponseEventHandler
    + An OriginateResponse is triggered when the execution of an Originate. +
    Public delegateParkedCallEventHandler
    + A ParkedCall is triggered when a channel is parked (in this case no + action id is set) and in response to a ParkedCallsAction. +
    Public delegateParkedCallGiveUpEventHandler
    + A ParkedCallGiveUp is triggered when a channel that has been parked is hung up. +
    Public delegateParkedCallsCompleteEventHandler
    + A ParkedCallsComplete is triggered after all parked calls have been reported in response to a ParkedCallsAction. +
    Public delegateParkedCallTimeOutEventHandler
    + A ParkedCallTimeOut is triggered when call parking times out for a given channel.
    Public delegatePeerEntryEventHandler
    + A PeerEntry is triggered in response to a SIPPeersAction or SIPShowPeerAction and contains information about a peer. +
    Public delegatePeerlistCompleteEventHandler
    + A PeerlistComplete is triggered after the details of all peers has been reported in response to an SIPPeersAction or SIPShowPeerAction. +
    Public delegatePeerStatusEventHandler
    + A PeerStatus is triggered when a SIP or IAX client attempts to registrer at this asterisk server. +
    Public delegateQueueCallerAbandonEventHandler
    Public delegateQueueCallerJoinEventHandler
    + Raised when a caller joins a Queue. +
    Public delegateQueueCallerLeaveEventHandler
    + Raised when a caller leaves a Queue. +
    Public delegateQueueEntryEventHandler
    + A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. +
    Public delegateQueueMemberAddedEventHandler
    + A QueueMemberAddedEvent is triggered when a queue member is added to a queue. +
    Public delegateQueueMemberEventHandler
    + A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue. +
    Public delegateQueueMemberPausedEventHandler
    + A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused. +
    Public delegateQueueMemberPauseEventHandler
    + A QueueMemberPauseEvent is triggered when a queue member is paused or unpaused.
    + Available since Asterisk 12 +
    Public delegateQueueMemberRemovedEventHandler
    + A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue. +
    Public delegateQueueMemberStatusEventHandler
    + A QueueMemberStatusEvent shows the status of a QueueMemberEvent. +
    Public delegateQueueParamsEventHandler
    + A QueueParamsEvent is triggered in response to a QueueStatusAction and contains the parameters of a queue. +
    Public delegateQueueStatusCompleteEventHandler
    + A QueueStatusCompleteEvent is triggered after the state of all queues has been reported in response to a QueueStatusAction. +
    Public delegateRegistryEventHandler
    + A Registry is triggered when this asterisk server attempts to register + as a client at another SIP or IAX server.
    Public delegateRenameEventHandler
    + A RenameEvent is triggered when the name of a channel is changed. +
    Public delegateStatusCompleteEventHandler
    + A StatusEvent is triggered for each active channel in response to a StatusAction. +
    Public delegateStatusEventHandler
    Public delegateTransferEventHandler
    + A StatusCompleteEvent is triggered after the state of all channels has been reported in response to a StatusAction. +
    Public delegateUnholdEventHandler
    + An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold. +
    Public delegateUnlinkEventHandler
    + An UnlinkEvent is triggered when a link between two voice channels is discontinued, for example, just before call completion. +
    Public delegateUnparkedCallEventHandler
    + A UnparkedCallEvent is triggered when a channel that has been parked is resumed. +
    Public delegateUserEventHandler
    + A ZapShowChannelsEvent is triggered on UserEvent in dialplan. +
    Public delegateVarSetEventHandler
    + When a variable is set +
    Public delegateZapShowChannelsCompleteEventHandler
    + A ZapShowChannelsCompleteEvent is triggered after the state of all zap channels has been reported in response to a ZapShowChannelsAction. +
    Public delegateZapShowChannelsEventHandler
    + A ZapShowChannelsEvent is triggered in response to a ZapShowChannelsAction and shows the state of a zap channel. +
    Enumerations
      EnumerationDescription
    Public enumerationAsteriskVersion
    \ No newline at end of file diff --git a/docs/html/N_AsterNET_Manager_Event.htm b/docs/html/N_AsterNET_Manager_Event.htm index a2777ad..b5d2dbe 100644 --- a/docs/html/N_AsterNET_Manager_Event.htm +++ b/docs/html/N_AsterNET_Manager_Event.htm @@ -1,4 +1,4 @@ -AsterNET.Manager.Event Namespace
    Click or drag to resize
    AsterNET.Manager.Event Namespace
    AsterNet Manager Event
    Classes
    +AsterNET.Manager.Event Namespace
    Click or drag to resize
    AsterNET.Manager.Event Namespace
    AsterNet Manager Event
    Classes
      ClassDescription
    Public classAbstractAgentEvent
    Abstract base class for several agent related events. @@ -181,27 +181,21 @@ Abstract base class providing common properties for JoinEvent and LeaveEvent.
    Public classQueueMemberAddedEvent
    A QueueMemberAddedEvent is triggered when a queue member is added to a queue.
    - It is implemented in apps/app_queue.c.
    - Available since Asterisk 1.2 -
    Public classQueueMemberEvent
    + It is implemented in apps/app_queue.c.

    Available since : Asterisk 1.2.

    Public classQueueMemberEvent
    A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue.
    It is implemented in apps/app_queue.c
    Public classQueueMemberPausedEvent
    A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused.
    - It is implemented in apps/app_queue.c.

    - Available since Asterisk 1.2.
    - Replaced by QueueMemberPauseEvent since Asterisk 12.
    - Removed since Asterisk 13.

    Public classQueueMemberPauseEvent
    - Raised when a member is paused/unpaused in the queue.
    - Available since Asterisk 12 + It is implemented in apps/app_queue.c.

    Available since : Asterisk 1.2.
    Replaced by : QueueMemberPauseEvent since Asterisk 12.
    Removed since : Asterisk 13.

    Public classQueueMemberPauseEvent
    + Raised when a member is paused/unpaused in the queue.
    Available since : Asterisk 12.
    Public classQueueMemberPenaltyEvent
    A QueueMemberPenaltyEvent is triggered when a queue member is assigned a new penalty.
    Public classQueueMemberRemovedEvent
    A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue.
    - It is implemented in apps/app_queue.c.
    - Available since Asterisk 1.2 + It is implemented in apps/app_queue.c.

    Available since : Asterisk 1.2.

    Public classQueueMemberRinginuseEvent
    + Raised when a member's ringinuse setting is changed
    Public classQueueMemberStatusEvent
    - A QueueMemberStatusEvent shows the status of a QueueMemberEvent + Raised when a Queue member's status has changed
    Public classQueueParamsEvent
    A QueueParamsEvent is triggered in response to a QueueStatusAction and contains the parameters of a queue.
    It is implemented in apps/app_queue.c diff --git a/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_CallsTaken.htm b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_CallsTaken.htm new file mode 100644 index 0000000..736a707 --- /dev/null +++ b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_CallsTaken.htm @@ -0,0 +1,10 @@ +AbstractQueueMemberEvent.CallsTaken Property
    AbstractQueueMemberEventCallsTaken Property
    + The number of calls this queue member has serviced.
    Available since : Asterisk 12. +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public int CallsTaken { get; set; }

    Property Value

    Type: Int32
    See Also
    \ No newline at end of file diff --git a/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_InCall.htm b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_InCall.htm new file mode 100644 index 0000000..030143d --- /dev/null +++ b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_InCall.htm @@ -0,0 +1,11 @@ +AbstractQueueMemberEvent.InCall Property
    AbstractQueueMemberEventInCall Property
    + Evaluates if member is in call, + after LastCall time is updated.
    Available since : Asterisk 13. +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public bool InCall { get; set; }

    Property Value

    Type: Boolean
    See Also
    \ No newline at end of file diff --git a/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Interface.htm b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Interface.htm new file mode 100644 index 0000000..8c4de61 --- /dev/null +++ b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Interface.htm @@ -0,0 +1,10 @@ +AbstractQueueMemberEvent.Interface Property
    AbstractQueueMemberEventInterface Property
    + The queue member's channel technology or location.
    Available since : Asterisk 12. +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public string Interface { get; set; }

    Property Value

    Type: String
    See Also
    \ No newline at end of file diff --git a/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_LastCall.htm b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_LastCall.htm new file mode 100644 index 0000000..2892619 --- /dev/null +++ b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_LastCall.htm @@ -0,0 +1,10 @@ +AbstractQueueMemberEvent.LastCall Property
    AbstractQueueMemberEventLastCall Property
    + The time this member last took a call, expressed in seconds since 00:00, Jan 1, 1970 UTC.
    Available since : Asterisk 12. +

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public long LastCall { get; set; }

    Property Value

    Type: Int64
    See Also
    \ No newline at end of file diff --git a/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm index 3bda011..5a09651 100644 --- a/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm +++ b/docs/html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm @@ -1,6 +1,6 @@ -AbstractQueueMemberEvent.Location Property
    AbstractQueueMemberEventLocation Property
    - Returns the name of the member's interface.
    - E.g. the channel name or agent group. +AbstractQueueMemberEvent.Location Property
    AbstractQueueMemberEventLocation Property
    + Returns the name of the member's interface.
    + E.g. the channel name or agent group.
    Removed since : Asterisk 12.
    Replaced by : Interface since Asterisk 12.

    Namespace: AsterNET.Manager.Event
    Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
    Syntax
    public string Location { get; set; }