diff --git a/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Persistence/InMemoryCloudStateStore.cs b/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Persistence/InMemoryCloudStateStore.cs index 32842fb..d55e039 100644 --- a/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Persistence/InMemoryCloudStateStore.cs +++ b/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Persistence/InMemoryCloudStateStore.cs @@ -170,6 +170,8 @@ public sealed class InMemoryCloudStateStore : ICloudStateStore _people.Clear(); _people.AddRange(snapshot.People ?? []); + EnsureDefaultTopology(); + if (_robotProfile is null || !string.Equals(_robotProfile.RobotId, _robot.RobotId, StringComparison.OrdinalIgnoreCase)) _robotProfile = new RobotProfile @@ -640,6 +642,46 @@ public sealed class InMemoryCloudStateStore : ICloudStateStore SavePersistedState(); } + private void EnsureDefaultTopology() + { + if (_loops.Count == 0) + { + _loops.Add(new LoopRecord + { + OwnerAccountId = _account.AccountId, + RobotId = _robot.RobotId, + RobotFriendlyId = _robot.DeviceId + }); + } + + if (_people.Count != 0) + { + return; + } + + var loopId = _loops[0].LoopId; + _people.Add(new PersonRecord + { + PersonId = "person-openjibo-owner", + AccountId = _account.AccountId, + LoopId = loopId, + RobotId = _robot.RobotId, + DisplayName = $"{_account.FirstName} {_account.LastName}", + Alias = _account.FirstName, + IsPrimary = true + }); + _people.Add(new PersonRecord + { + PersonId = "person-openjibo-household-member", + AccountId = _account.AccountId, + LoopId = loopId, + RobotId = _robot.RobotId, + DisplayName = "OpenJibo Household Member", + Alias = "Household Member", + IsPrimary = false + }); + } + private static string Slugify(string value) { var builder = new StringBuilder(value.Length); diff --git a/OpenJibo/src/Jibo.Cloud/node/open-jibo-link.js b/OpenJibo/src/Jibo.Cloud/node/open-jibo-link.js index 3b7373d..810492a 100644 --- a/OpenJibo/src/Jibo.Cloud/node/open-jibo-link.js +++ b/OpenJibo/src/Jibo.Cloud/node/open-jibo-link.js @@ -354,7 +354,7 @@ } function getLoopId(parsed) { - return parsed?.loopId || parsed?.id || state.loops[0].id; + return parsed?.loopId || parsed?.id || state.loops[0]?.id || "fake-loop-id"; } function getOrCreateSymmetricKey(loopId) { @@ -587,10 +587,24 @@ console.log("LOOP OPERATION:", operation); if (operation === "List" || operation === "ListLoops") { + const loops = state.loops.length > 0 + ? state.loops + : [{ + id: "fake-loop-id", + name: "OpenJibo Test Loop", + owner: "usr_test_001", + robot: "my-robot-name", + robotFriendlyId: "my-robot-serial-number", + members: [], + isSuspended: false, + created: Date.now(), + updated: Date.now() + }]; + return { statusCode: 200, note: "Returned one loop", - body: state.loops + body: loops }; } diff --git a/OpenJibo/tests/Jibo.Cloud.Tests/Infrastructure/PersistenceStoreTests.cs b/OpenJibo/tests/Jibo.Cloud.Tests/Infrastructure/PersistenceStoreTests.cs index fde3804..0c7fba5 100644 --- a/OpenJibo/tests/Jibo.Cloud.Tests/Infrastructure/PersistenceStoreTests.cs +++ b/OpenJibo/tests/Jibo.Cloud.Tests/Infrastructure/PersistenceStoreTests.cs @@ -128,6 +128,33 @@ public sealed class PersistenceStoreTests } } + [Fact] + public void CloudStateStore_RehydratesDefaultLoopWhenSnapshotLoopsAreMissing() + { + var persistencePath = Path.Combine(Path.GetTempPath(), $"openjibo-cloud-empty-loops-{Guid.NewGuid():N}.json"); + + try + { + File.WriteAllText(persistencePath, """ + { + "SchemaVersion": "1", + "Revision": 7, + "Loops": [] + } + """); + + var store = new InMemoryCloudStateStore(persistencePath); + + Assert.NotEmpty(store.GetLoops()); + Assert.Equal("openjibo-default-loop", store.GetLoops()[0].LoopId); + Assert.NotEmpty(store.GetPeople()); + } + finally + { + if (File.Exists(persistencePath)) File.Delete(persistencePath); + } + } + private sealed class RecordingSnapshotStore : ISnapshotStore { public List Saves { get; } = []; @@ -142,4 +169,4 @@ public sealed class PersistenceStoreTests Saves.Add(snapshot); } } -} \ No newline at end of file +} diff --git a/_tmp/jibo-test-48/captures/http/20260520.events.ndjson b/_tmp/jibo-test-48/captures/http/20260520.events.ndjson new file mode 100644 index 0000000..fb09365 --- /dev/null +++ b/_tmp/jibo-test-48/captures/http/20260520.events.ndjson @@ -0,0 +1,164 @@ +{"capturedUtc":"2026-05-20T00:00:20.5138163+00:00","request":{"RequestId":"4a3fe5ea2f6140e586d04fe24508d635","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH0:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=521e823fa3a48c9a6a3990649be9302af617c4547d81085a12742af9cbaf3197","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000019Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:00:41.2837583+00:00","request":{"RequestId":"a2a5773d5a404eac8201ab8c0ba8ac8a","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH1:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=79fc51cc13c729c69d92917235a4e1020bdff00c6150ff6711e60f24a4179927","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000040Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:01:02.3225863+00:00","request":{"RequestId":"9f9b76c9839145f699101d4964d94fc1","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH2:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=cf54527e5e455cdb848cd0192c561be93ba6bbe687956fb83ceaa03982f8e5d8","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000101Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:01:22.4428954+00:00","request":{"RequestId":"4b84ce58e0ed4b7183398dc9dc589f85","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH3:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=79f122aa2e7a2b851a8066b42a561d603ef8288bfa950f913aeac1ba7fd8de05","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000122Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:01:42.5345374+00:00","request":{"RequestId":"11be1bf6c4d6422896a3e63df9b95f4f","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH4:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7ddc1665c31f6be89cb93bc49166ceb00685edacedb7bf3d97c6781ed1b18e84","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000142Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:02:03.4504008+00:00","request":{"RequestId":"aaa4c4efe29b46b2ba2893ecbe584eee","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH5:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=246f3fb962ea4d9cb28d8eda4aa18c80ae377c2894b464e2b7ab6802c3a279f4","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000202Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:02:28.532699+00:00","request":{"RequestId":"4a0357888c244081b3d87e9505e1ab07","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH6:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a2a857e6ef53e1033a371269764908c1ea3e91af998cb971c88dd09e776f4237","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000223Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:02:49.5678234+00:00","request":{"RequestId":"ac4359b4d8464edbb449f8ab1ca7e338","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH7:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=66fb67cb4de628f5549691ed62f5ed878c182cfcc77074655cd52d5b5ffdb76b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000248Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:03:09.6824405+00:00","request":{"RequestId":"bb10937a749248679adf0cbc5aadda2f","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH8:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=b3566b2ef21e5a4b1f5d94a6a0da8c226733847be9b1d9f70b0c3cc522faaa0c","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000309Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:03:30.6980074+00:00","request":{"RequestId":"e0a7196164184c439e672b92035906cc","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSH9:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=9ca7467213b07c91735b9e153fd3c0194db2c95f1e137498a3c6ed0586d49b83","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000329Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:03:50.8057604+00:00","request":{"RequestId":"55a7f6d658f147f7b37bef5a8c06ade7","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHA:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=f44301ee5fd77eb3ee52ad6558a4a2425228dcbb189c348e6209eaf7aa964f2b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000350Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:03:55.7876693+00:00","request":{"RequestId":"b3a29366d3504023aff527102a48bdf4","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Log_20150309","Operation":"PutEventsAsync","DeviceId":"","CorrelationId":"0HNLLI537RSHB:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/log/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=cffb07618b2574ec7a04b6faeaba12634b719417bf174a2ceeeea794017c0931","Content-Type":"application/json","Content-Length":"50","X-Amz-Target":"Log_20150309.PutEventsAsync","X-Amz-Content-Sha256":"5ba08cf52677ba35e9635d05f5a4c568eb52234637edb8b638fce0c2b4397d58","X-Amz-Date":"20260520T000355Z"},"BodyText":"{\u0022kind\u0022:\u0022LOG\u0022,\u0022serial\u0022:\u0022BOJW-1000-0017-1114-0008\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022contentEncoding\u0022:\u0022gzip\u0022,\u0022uploadUrl\u0022:\u0022https://api.jibo.com/upload/log-events\u0022}"}} +{"capturedUtc":"2026-05-20T00:04:11.7450724+00:00","request":{"RequestId":"7a6b88a56f314779999c261acb49906b","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHD:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7d0cf2dec75b1ecc4b69b9331ac149351978238314a3c67581437529436a907d","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000410Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:04:31.8288745+00:00","request":{"RequestId":"07371a1f49594fc5a596bc346dd4d437","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHE:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=bc252d4c329a73762c0640df6fc2f5fca3a8042a2be0ffa26110f5be3ed80557","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000431Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:04:45.9154564+00:00","request":{"RequestId":"f62197b0a4bf472ea6bf8b5166ef7f3a","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Log_20150309","Operation":"PutEventsAsync","DeviceId":"","CorrelationId":"0HNLLI537RSHF:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/log/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a545d07df98b14c7d12a060f0fc4857adc522bac8dcce7d37e0c479e3e08d8a9","Content-Type":"application/json","Content-Length":"53","X-Amz-Target":"Log_20150309.PutEventsAsync","X-Amz-Content-Sha256":"738ec9072f51811b7378977698ef463d739662d21f7e5595e8a0d1ff1de0b358","X-Amz-Date":"20260520T000445Z"},"BodyText":"{\u0022kind\u0022:\u0022HEALTH\u0022,\u0022serial\u0022:\u0022BOJW-1000-0017-1114-0008\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022contentEncoding\u0022:\u0022gzip\u0022,\u0022uploadUrl\u0022:\u0022https://api.jibo.com/upload/log-events\u0022}"}} +{"capturedUtc":"2026-05-20T00:04:46.1278273+00:00","request":{"RequestId":"4439b5e197bc4184a1e71ae698cff08e","Transport":"http","Method":"PUT","HostName":"api.jibo.com","Path":"/upload/log-events","ServicePrefix":null,"Operation":null,"DeviceId":"","CorrelationId":"0HNLLI537RSHG:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Accept":"*/*","Connection":"close","Host":"api.jibo.com","Content-Type":"application/octet-stream","Content-Length":"2027"},"BodyText":"\u001F\uFFFD\b\u0000\u0000\u0000\u0000\u0000\u0000\u0003\uFFFDXmo\u06F6\u0016\uFFFD\u002B\uFFFD\uFFFD}\uFFFD\u0014\uFFFDz\uFFFD\uFFFD\uFFFD-\uFFFD\u06EEi\uFFFD8\u077D\uFFFDP\b\uFFFDD\uFFFDZ$QW\uFFFD\uFFFD\uFFFDE\uFFFD\uFFFD\u001ER\uFFFD#\u065E\uFFFD!KbG\u003C\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDy\uFFFDw\uFFFD\u0776J\uFFFDIZ\uFFFD\uFFFD\u039A\uFFFD0\uFFFD\uFFFD\uFFFD{\uFFFD\uFFFD|\uFFFDB7\b\uFFFD\u0005\u0001\uFFFDmw\u0022^\u0014{\uFFFD\uFFFDq\u0014\u010C\u036CRf\u009A[\uFFFDlJ^X3\uFFFD^4m.\u002B\uFFFD\u003E\uFFFDK\uFFFD\u04CD(\u0004o\uFFFDO\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0060S\uFFFDP\uFFFD\u0010\uFFFD\u0011\u001A\uFFFD\uFFFD\uFFFD\uFFFDZ\uFFFDR/u#\uFFFD\uFFFD\uFFFD\uFFFDvM#*e/\uFFFDZ\uFFFDoyu\uFFFD[\uFFFD\uFFFD\uFFFD\uFFFDy\uFFFDT]\uFFFD\u0014\rd\uFFFD|\uFFFD\uFFFD_\uFFFD\u0012BlBhhSJ=\u003C\uFFFD\b\uFFFD\u001B\uFFFD\u000B\uFFFD\uFFFD\uFFFD\u007F|\u05F3\uFFFD\uFFFDT\uFFFD\u0018\f\u001B\uFFFDKY\uFFFDJ6y\uFFFD\uFFFD\u0007\uFFFD\uFFFDUo\uFFFD\uFFFD\u000Eb\u07ED\uFFFD\u0011\uFFFD\uFFFDK-\u0006!\uFFFD\uFFFDT\uFFFDlxi\uFFFD\u0019\uFFFD\u0060\u0006\uFFFD\uFFFD\u0060f\uFFFD\u001A!\f\uFFFD\uFFFD\uFFFD\uFFFDF\uFFFD#3k\u066DV\uFFFD\uFFFDn\u001C\u0011O\u000B\uFFFDu\uFFFD@\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDmr\uFFFD\uFFFDo\uFFFD\u0006\uFFFD\uFFFD\b\uFFFD\uFFFDz=\uFFFD\u001A\uFFFD\u001B\u0007\uFFFD\uFFFD\uFFFD]H\uFFFD%\u001C6\uFFFDU4\uFFFD{^t\uFFFDX\uFFFD\u0209\uFFFDY?\uFFFDz\u0014\u0004\u00C8\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDlj\uFFFDJ\uFFFD|\uFFFD\uFFFD\\\uFFFDX\uFFFD\uFFFD\uFFFDD\uFFFD\uFFFD\nX\uFFFD\uFFFD\uFFFD\uFFFDAT\uFFFD\u003C\u001D;u(\uFFFDjZ#Z\uFFFD5\uFFFD\uFFFD0\uFFFD\uFFFD\u0006\uFFFDn9\uFFFD\uFFFDo\uFFFD1\uFFFD?\uFFFDjU#\u0060\uFFFD\uFFFD\uFFFD\u000FB\uFFFD4\u00179N\uFFFDJ\n)k=\uFFFD\uFFFDe\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD5\uFFFD\uFFFD\u000B\u07AA\uFFFD\u0027\uFFFD\uFFFD\u001A\uFFFD\uFFFD\tM\uFFFD\uFFFD\uFFFD\u020F\uFFFD\u0548t\uFFFD\uFFFDc\uFFFDU\uFFFD5Vu\uFFFD\uFFFD\u003Ek\uFFFD\uFFFD\u001B\uFFFDQ\uFFFD\u0012/\uFFFDB\u007Ff\uFFFD\uFFFDu\uFFFDVpC\uFFFD\uFFFD\t\u0003\u000F\uFFFDv#\u0580\uFFFDl\uFFFD\u001B\uFFFD\u0019\uFFFDO\uFFFD9^a)\uFFFD\uFFFDYo@\u0019\uFFFD\u007F\u0255\u0012\uFFFD6\uFFFDY\uFFFD\uFFFD\u0000\uFFFD\uFFFD\uFFFD\u001D\u0011\uFFFD\uFFFD\r\uFFFD\uFFFD\uFFFD.J\uFFFDW\uFFFDR\uFFFD\u0026\u001B\u021E\uFFFDP\uFFFD\uFFFD\u07B8\uFFFD@0\uFFFD\u0014\uFFFD\u0013\u0003\uFFFD5$\uFFFD\uFFFD\u001D\uFFFD6\uFFFD\u0002M\uFFFDDz\uFFFD\uFFFDRi\u002B\uFFFDd\uFFFD\u0006\uFFFDVN\uFFFDT\uFFFDkQ\uFFFD\uFFFD\uFFFD\uFFFDb\uFFFD\uFFFDp\uFFFDn\u0012Y\u000B\uFFFDN\u00222\uFFFD\uFFFD\u002B^\uFFFD\u0002H\uFFFD.\uFFFDi:\uFFFDr\uFFFD8nHC\u03CD\uFFFD\uFFFD\u0753\uFFFDc\uFFFDKA\u0022\uFFFD\u000E\u0027\uFFFD\u001A\uFFFD\u0000;v\u0022\uFFFD\uFFFD\uFFFD\uFFFD\u003C\uFFFD\uFFFD\uFFFD\uFFFDG\uFFFD\uFFFDz\uFFFD\uFFFD\u0003\u0005\uFFFD\uFFFDq\uFFFD\u018C\u0181\uFFFD\u0006$\uFFFD\uFFFDD\t\uFFFD(A\u0000\fb\u0012\uFFFDq\u001C\uFFFD\uFFFDI\u000B\uFFFD\u0000\uFFFD\u0007\uFFFDu}\uFFFD\u000F\uFFFD\uFFFDAOW\uFFFD\uFFFD@\uFFFD\r=\uFFFD\u0018\uFFFD\uFFFD!\uA1E3\uFFFDk \uFFFD\u0004\\\uFFFD\uFFFD\uFFFD\u020Fh\u0010\uFFFDc-\uFFFD\uFFFDB/\uFFFD\uFFFD(\uFFFDA\uFFFD\u0002\uFFFDX\uFFFD*ik!2\uFFFD\u000F\uFFFD\u0000|\uFFFDE\u003Eq\uFFFD_\uFFFD|\uFFFD%\uFFFD\u0026_oT%\uFFFDV\uFFFDx}@!\u003EB\uFFFD\u0017x\uFFFD\u003E\uFFFD\u000E\u0007\uFFFD\u001Dm\u0012W\uFFFD\uFFFD\u0601\u001B\u000F\uFFFDt\uFFFDN\uFFFD\uFFFDt\uFFFD\u000FC\u0060\uFFFD\uFFFDh\uFFFD\uFFFD\uFFFD\uFFFDb\uFFFD\uFFFDE\uFFFD^\uFFFD\uFFFD\uFFFD0:\uFFFDU^e\uFFFDQo\uFFFD\uFFFD\u001CjL\u0019\\iOb\u00EC\u07B9\u001B\u0001\uFFFD\t5\uFFFDn\uFFFD!\uFFFD\u07EFq\uFFFD\uFFFD\u0001X\uFFFDM\uFFFD\uFFFD\uFFFDq\uFFFD*\u00115D\uFFFD4}\uFFFDrB\uFFFD1\u0013\u5306\uFFFD\uFFFD\u000F\uFFFD_\u003E\uFFFD\uFFFD\u001B\u071BT\u0016\uFFFD\uFFFD\uFFFD5{\u003C/\uFFFD\u001F\uFFFDt\uFFFDq\uFFFDZ\u0017r\uFFFDd]\uFFFD\n\t\uFFFD9\uFFFDEx\uFFFD\uFFFDr\u001A\uFFFD.5i\u0014\uFFFDz\uFFFD\uFFFD\n\uFFFD]r\uFFFD\uFFFD^\u0016\u01A3\uFFFDU\uFFFD4\u0026!\uFFFD%\uFFFD\t\uFFFDwyQ\uFFFD\u0007\uFFFD\u0026\uFFFD\uFFFD\uFFFDr\uFFFD\\\uFFFD,\uFFFD\u0027\u0019\uFFFDJd\u0000\tgx\uFFFD\uFFFD\uFFFD\u0004\uFFFD_\uFFFD\u072FQv\uFFFD\uFFFD\fn? \uFFFD\uFFFD\uFFFD\uFFFD\u0013\uFFFD\u0006;!\uFFFD\nF\uFFFDc\uFFFD\u0017\uFFFDA2\uFFFDx\uFFFD8\uFFFDDZ\uFFFDv\uFFFD\uFFFDU\u00EBv\uFFFD\uFFFD\u0019\u0019\uFFFD\uFFFD\uFFFD4\uFFFD\u00023g\uFFFD\u0002\uFFFD\u001El\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u003CC\uFFFD\uFFFD\uFFFD\uFFFD\u0014\uFFFD~\uFFFD\uFFFD\uFFFD\uFFFDP\u011Dp\uFFFD]\uFFFD6\uFFFDty\uFFFD4\uFFFDMV\uFFFD\uFFFD\uFFFD,Q?\uFFFD\uFFFD\uFFFD\uFFFD\u0006\uFFFDki\uFFFD\uFFFDT\uFFFDC\uFFFD\uFFFD\uFFFDR\\,\uFFFD\uFFFD\u001C\\\uFFFD\uFFFD\u0585\uFFFD\uFFFD\u015F\uFFFDe/tA{\uFFFD0\u0013.\uFFFDR\uFFFD\uFFFD\u0006W\u0121\uFFFD\uFFFDD\u0005Q\uFFFDf\uFFFD\uFFFD\uFFFDD_r,\u0014o\u052D)8\uFFFD@Q\uFFFD\u0002\uFFFD\uFFFDW\uFFFD\uFFFDA\uFFFD*\uFFFD\uCD54Yk\u002B\u046A\uFFFD\u001FI?\uFFFDp\uFFFD\uFFFD\uFFFD\uFFFD0x\uFFFD!\b\u001B\u057B\uFFFD\f5\uFFFD\u030E|/\f\uFFFD1\u001E\uFFFD\uFFFD\uFFFD9\uFFFD\u002B\u066A\u003Cm\uFFFDCtB\uFFFD\tSpd\uFFFDW\uFFFDj6y%_\u0004g\u00279-?\uFFFD\u007F\t\uFFFDZf/B\uFFFD\u02CD1\u0126\u0004\uFFFDW04\uFFFD=\uFFFD\uFFFD\u0060\uFFFDD\uFFFD\uFFFD\u0018\u007F}=\u0012)\uFFFD\uFFFDNe\uFFFD\uFFFD\uFFFD\uFFFD!\uFFFD\uFFFD\u003E!\uFFFD_\u3D38\uFFFD]k\uFFFD!\\b\uFFFD\uFFFDw\uFFFD\uFFFD;0\uFFFD\uFFFD\uFFFD\uFFFD \uFFFDt\uFFFD(Z\uFFFD@of\uFFFDxW\u0247Bd\uFFFD\u0001\uFFFD\u0011\uFFFD_\u0002u\u0018q\u0019\u0019-Po\uFFFDKO^\uFFFD\uFFFD\u001Dg\uFFFD\u001A\uFFFDb\uFFFD\uFFFD\uFFFD\uFFFD\n\uFFFD\u007Fr\uFFFD\u0358\uFFFD/A\t\uFFFDF\uFFFDXvb\uFFFDb\uFFFD\u0019\uFFFD\uFFFD\uFFFD;\uFFFD\uFFFD\uFFFD/MMW\uFFFDvi\uFFFD\u0017\uFFFDC\uFFFD\uFFFD\uFFFDy\uFFFD\uFFFDa\b\u0003S\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDC^\uFFFD\u05EF\uFFFD\u0007\uFFFD/\uFFFD^\uFFFD8[\uFFFD\uFFFDxT\uFFFD\uFFFD\u0003\uFFFD\uFFFDi\u0022i\uFFFD\u001C\uFFFD\uFFFD\uFFFD\uFFFDG\uFFFD\uFFFD\uFFFD%\uFFFD\uFFFD;\uFFFD\uFFFD(\uFFFDVDcZ\uFFFD\uFFFD\uFFFD\uFFFDta\uFFFDW\uFFFD\uFFFD\uFFFDP\uFFFD\uFFFD\t\u03F2\uFFFD\uFFFDF[\uFFFD*.@o\uFFFD\uFFFDP\uFFFD\uFFFDi;\uFFFDy\uFFFD\u0015\u0005\u000E\uFFFD8\uFFFDw\uFFFD\u001A\uFFFD\u007Fy\uFFFDi\uFFFD\uFFFD3\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD|=\u0013\uFFFD\uFFFD\uFFFD{\u051D\u0017j\uFFFDF?\uFFFD\uFFFD~\u00130\uFFFD\uFFFD\uFFFDb)\u001A\uFFFD(D\u0005[\uFFFDR:@\uFFFD\u001F\uFFFD\u000E\u0015\uFFFD\uFFFD\uFFFD0\uFFFDa\uFFFD\u001Cs=\u00169n\u0004\uFFFDL\u0723\u0016\u0006\uFFFD\uFFFD\uFFFD\u0016=\uFFFD\uFFFD\uFFFD\uFFFD\u0027P\uFFFD:w\uFFFD\u00179\uFFFD,_\n\u0005\uFFFD\uFFFD\u0000\uFFFDuX\uFFFD\u000FH\uFFFD(p\uFFFD0\u001A\uFFFD\uFFFDv\uFFFD\uFFFD[\u001B\u0003\u0005RNH\uFFFD\uFFFD,nN@\u0456N7\u000ER\uFFFD\u001Aui\uFFFD\uFFFD\u00271\u0005\uFFFDy\uFFFD\uFFFDh\uFFFD[dg\u001E\uFFFD\u04BDyB\u0027\n\u00DDy\uFFFD/\uFFFDX;\uFFFD5\u0004\uFFFD\u0011\uFFFD\uFFFD\u0012\uFFFD\uFFFD\u0019/S\uFFFD\uFFFD\u0010\\\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u000E\u0004\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDz~\uFFFD3\uFFFD\uFFFD\uFFFD|\uFFFDU4gt\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDs\uFFFD\uFFFD\uFFFDg\u0017\uFFFDi\uFFFD\u0022\uFFFD\\\u0004\u001Ef\uFFFD\n\uFFFD6\uFFFD\uFFFD\uFFFD\u001A\uFFFD77\uFFFD/\u07FD\uFFFD\\\uFFFD\uFFFD\uFFFD\uFFFD\u02E7O\uFFFD?\uFFFD\uFFFD\uFFFD\uFFFD/\u001Fo\uFFFD\u001B*|\uFFFD\uFFFD\uFFFD\u000B6\uFFFD\u0013S\uFFFD\u0022\u0001\uFFFD\uFFFD\u01F9\uFFFD\uFFFD\uFFFD_\uFFFD\uFFFD\u000B\uFFFD\uFFFD\u0010\u0001=\uFFFD8\uFFFD9{\uFFFDe\uFFFD\uFFFDk\uFFFDL\uFFFD,\uFFFD(\uFFFD\uFFFD\uFFFD3\uFFFD[%\u0314\uFFFDE\u0001\uFFFD\uFFFD\uFFFDpv\uFFFD\uFFFDD\uFFFDF\uFFFD\u0003\uFFFD\uFFFDx\uFFFD\uFFFDn\u000F\uFFFD\uFFFD=\uFFFDgjb\uFFFDQ?\u000Ewj\uFFFD\uFFFDC|\uFFFD;\uFFFD\uFFFDC\uFFFD\u001CF\uFFFDh\uFFFD\uFFFD3u\uFFFD\uFFFD\u0015\u0010\uFFFD\uFFFD.o\uFFFD\u0012\uFFFD\uFFFDD\uFFFDr\uFFFD\u003C\u001F\t\uFFFD0z\uFFFD\uFFFD\uFFFDw\u003CG\u0005\uFFFD\uFFFD\uFFFD\u002B_\r\uFFFD\u0017*H7\u0022\uFFFD\uFFFD\uFFFDv\uFFFDX\uB623\uFFFD\uFFFDY\uFFFDF\uFFFDR\u001D\uFFFD\uFFFD\uFFFD\uFFFD/M\uFFFD^*\b\u0016\u0000\u0000"},"response":{"StatusCode":200,"ContentType":"text/plain","Headers":{},"BodyText":""}} +{"capturedUtc":"2026-05-20T00:04:52.0587481+00:00","request":{"RequestId":"ada1c77469784ea59a8bb101125c87ea","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHH:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=61616f31db96bfd42334573973b4807760df065cf2a7ef467d543935348a0fc9","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000451Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:05:13.0077118+00:00","request":{"RequestId":"844b87a92b524843be813b55d96d5875","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHI:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=940be3dd41881ceb73fc3f6efeab66d8dfc8de55a303ac6e0a691156b3691eb3","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000512Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:05:33.1022787+00:00","request":{"RequestId":"d59a0b1f2d364d6481b0a331139c8c56","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHJ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ddbad20e532bdc830795b0f14cc036b5bb7eca4a25567123ca998d73742ad65d","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000533Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:05:54.0713309+00:00","request":{"RequestId":"c802224700834fff8e398ac965f505e3","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHK:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=5cf7dc77b9801dce5f49047b6a0d816377f50e3702731a3d6cb0d6942cac1288","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000553Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:06:14.1834706+00:00","request":{"RequestId":"433887b844c5444788b4a42fcb8f144e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHL:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=b976afb960c22574ecefa41b3b2aacf1ec79ad29c8879d23a91f53ee7a8bf69b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000614Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:06:34.2739333+00:00","request":{"RequestId":"02bfb70a80ec438ea2b4edd25ab6d569","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHM:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a8da380fb7f2165cc27587d186d6b3373929f1dcb80ac0bd0f4654419a215f70","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000634Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:06:55.2358035+00:00","request":{"RequestId":"4504596677ee4a1fbaf0ddb5930aa869","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHN:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e163ec8355467ad053c0f0ceab63990550d1d29580ecef9d0a726f1510f12fb2","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000654Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:07:15.3981542+00:00","request":{"RequestId":"d5e175935d91489089c4d9e20deb6e7e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHO:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=bca6e791c4f19cd3a2e601d8e52d11a2118dc2afbf5e50c5d12a2dcb08e6e80a","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000715Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:07:36.3238046+00:00","request":{"RequestId":"ddde6f1a9dc843ffb514ab1750d7fcd4","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHP:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=672845e52e58433866debccac0764e7bab7b8bf26213576c4c81c9027217c8e2","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000735Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:07:57.3812324+00:00","request":{"RequestId":"29889b2012004f79b6c63813e5717c21","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHQ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=706b363d89b5267efe03b089a8ae7c16d3b38263bc514f76e993baeff5109d1b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000756Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:08:17.5146219+00:00","request":{"RequestId":"380b6b9c001242c4b84f4d4e74027b3e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHR:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e5a9a90cf6d5cd68f8ab914f20716e4ddb8b8aa1a84bc28f8c524b21f8fa8909","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000817Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:08:39.4293813+00:00","request":{"RequestId":"20e01e71fc4f489585b12b4a33419c0f","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHS:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=6033e4095da4ad7b571d87553739f1577f8fa42a2577b51d1411992a151c7628","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000837Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:08:59.5898674+00:00","request":{"RequestId":"b6b3d73c89b94270bed0b921cdaf2c4a","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHT:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a7083ca5c490e423b2c124d24b7ea78079fe456f68472857f3b1a748043a2c3c","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000859Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:09:20.5373286+00:00","request":{"RequestId":"8c559956fa414bc19f0c193519573c18","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHU:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=025b6afef46a1555ce6c9966c8be3aaeda1854d4aedcf0b4bca024d435b65738","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000919Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:09:40.6439312+00:00","request":{"RequestId":"3f96e738fdb9445c873b6e446f0c980d","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSHV:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=987e1668e978e6e3c6090a5162978cf60b4c45cecdd5aba41fb2f8dd9de49280","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T000940Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:10:01.6324254+00:00","request":{"RequestId":"562db8af4d7248d18e50da0e73044a4d","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI0:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=c75a27e171f3e9d430793e1b272f2dd198123251698f0ca7b8660500c5799ac0","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001000Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:10:22.6399114+00:00","request":{"RequestId":"5cc5eff100a94a02a345e9c54bea8370","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI1:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=5e508e5155550173f7d9794a7a45a2747ea1cbd7bd8a2c024ba1fbf36a244cfd","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001021Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:10:43.7954183+00:00","request":{"RequestId":"d78099db688d4efbb228961180e7fd23","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI2:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=1ce3da969046c1dec41baca008fa522d52c4eb2891b623aaac1faf28f53900f1","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001042Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:11:03.9314204+00:00","request":{"RequestId":"55f86f868971458dbc8a7a71aa807e48","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI3:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e4a38240bf368760c50b171418e0b3bb710f7338645f822cf0da95c89fc4dc1f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001103Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:11:24.8747252+00:00","request":{"RequestId":"d28c83823e5c4613a3787bd812283e84","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI4:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=23b9071967d366bf3bc6f00f9e41fe6ccd46028b2d4ca76820ab028914aa1fd3","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001124Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:11:44.9637929+00:00","request":{"RequestId":"9abc2e469eda40778a13dcc814f877ad","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI5:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e5a834be0a21cd1a9e60810c956c6a3c16ec8029a41410aef6b076dd2270b271","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001144Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:12:05.0328363+00:00","request":{"RequestId":"bd9df520d7d64d1591a60f08bbef2b57","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI6:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ca0c002b66ea2cba1e2062acaaef2b290025fa29bc778995ced70d888daf27f3","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001204Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:12:26.0738297+00:00","request":{"RequestId":"bbe2454aa36b47e7a19cf8325ba46511","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI7:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ece3ba4977aa82b7895f45542118f00b89adc3750a738d6663837a282ac5ef21","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001225Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:12:47.2740926+00:00","request":{"RequestId":"cf37f27cd0ec44f3b2237b1a7edecff0","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI8:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=985210bce376b586432c8a37f41cbab1e1808bed2011491cb58c63d11c5afea8","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001246Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:13:07.618037+00:00","request":{"RequestId":"9736b76335ca4dc59d26651a4aee2019","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSI9:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7c895f169880c8ff3aacae0fbf711623be13247fcc5c5ba16b43821e2df267c2","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001307Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:13:27.6954734+00:00","request":{"RequestId":"d6d0252e7382425393acce5b2cee36c3","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIA:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=f1ffa56133adfeaebe25065dd0783e59f5c6b8d067d85bc437cb0e1ec40a2cc5","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001327Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:13:48.1576447+00:00","request":{"RequestId":"3ac84bc9e0d047a4ab3013eda57e6865","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIB:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a5b228e448b5f256bb8c93dc6787fc1180ffc0cde835af31dc1a168e0d2696e4","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001347Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:14:08.245903+00:00","request":{"RequestId":"915d21d37dea4bc8a799afebd0d56b79","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIC:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=89367649feacf0c507cb6e830610911d0d048c21b81c47c8639c15f278e46299","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001408Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:14:28.3878123+00:00","request":{"RequestId":"444df5322b9b40dc803c5546d08f6de0","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSID:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=d7e7322550e3ac9d6784a83d0f8e844be16de4abff01197a804440c45c83e776","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001428Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:14:51.2338846+00:00","request":{"RequestId":"2976c1433b144146826d56b3944fae2f","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIE:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=66c9f024c9b42883877b083f6e603b85680c29b38009f2465a76b3240a18b828","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001448Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:15:11.4037559+00:00","request":{"RequestId":"2b1334716458489f918f74b2e834cbdf","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIF:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=d180338cddf2180ffea7fa6f075aea7067a69a6ca090bedc5f95cc1e1b7c4e6e","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001511Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:15:31.5778657+00:00","request":{"RequestId":"c3fe77f82d3048f89774837d0bba0743","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIG:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7d82b3779ce43268fc72b7b19379777c838b508589601bce898692b356d4db38","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001531Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:15:52.5713777+00:00","request":{"RequestId":"f294754e13494b8c893e7ea1a93aa57c","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIH:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=9f925ae8dfd16b22641163e8a073b55d93cfbc47d8c792878f70ef9325ed7b13","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001551Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:16:13.5307854+00:00","request":{"RequestId":"2be48f2548f0492e9b71eee3c3ca532b","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSII:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a33b6d2894b9b7e106e7146fc6a50c4071ceea7d9cdc1ea25304d0f2c28b6874","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001612Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:16:34.5636204+00:00","request":{"RequestId":"b062929019d94f4c8e2c4d3918c6a474","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIJ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a65efbc1cfdb3bef4c7a691522f711559ffd3d48d8a238b1405b1fc38d8a2365","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001633Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:16:55.9605458+00:00","request":{"RequestId":"93e9fb85cf54473a82d36d4c64513f79","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIK:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e88ee681371077ae6610de3be468247bb3050ef76385b50ccef6130176cb373b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001654Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:17:16.645825+00:00","request":{"RequestId":"b9a119a0c26f40f99a0280f0257fc5c9","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIL:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=edde3db75f355420a0d1d1a2da9e0046d19aec9eac569e88a6025aae6eef4a33","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001716Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:17:36.7308512+00:00","request":{"RequestId":"40b2ec6475a740a1bd4759cb51373645","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIM:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=1ea0ee3a39052ed6706bd0e913852a20dcf73e627edba2882a54c1679163373f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001736Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:17:56.8084544+00:00","request":{"RequestId":"0aca88f32e9d4704bf702fe4698b06dc","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIN:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=f8efb3e2e9d5a20e2e6eb3cf280f4367189847ee732e753670421770dda4ff7a","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001756Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:18:16.9328387+00:00","request":{"RequestId":"83872b2b103149368335255e5df87726","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIO:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=c3a4ee2a6e6bd055abccdc49ad33c46a8564d91c1945d0dc90b1ae0f6e5e2a1e","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001816Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:18:37.101718+00:00","request":{"RequestId":"a2859a03ca654834a98032096d91fbcd","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIP:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=9365a07d6b0340e7ea22b6336b35643ba95cf91f876ef47ed2aff46660b7081f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001836Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:18:58.8622398+00:00","request":{"RequestId":"f805f11ea62a440cb0f94f46f44b7a1e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIQ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=78ec157ce2e2e42d9727b95f92a9a9f2a8d5926897a4e146bc7f7b77a4353829","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001857Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:19:19.9115243+00:00","request":{"RequestId":"5f89bcadde1844f28f392410e3141023","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIR:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=74a35520b798631626469a5fe806bcec61a57800b4224b44ec582220fb678058","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001919Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:19:40.0088889+00:00","request":{"RequestId":"a50da5b3a41a4d58a6fcff3ee5d4e9a4","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIS:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=c450df609db11556536c2f2320e50be4143e94a3e4a93481bd16e759780782b0","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T001939Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:20:00.1009109+00:00","request":{"RequestId":"23d30d821f1249bf8419cff1e3eeaa01","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIT:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=24076a0dd904378c18490d091df74e85605eaf155d5495ddf82d19be968c62a3","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002000Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:20:20.1758035+00:00","request":{"RequestId":"010806ae39e04d46a511995a6a54736e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIU:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=b190c2f52ddaf2845a69d4db5f5b6b7ba05c6129d8db1250d9859e0c3b3578a4","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002020Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:20:40.9524743+00:00","request":{"RequestId":"dfb503547b0a48c98a92cc6b047187c9","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSIV:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7bdcdcc56b6be956e26f926d4f1f3f11738cf341802be68482649f62d6d50805","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002040Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:21:03.1227284+00:00","request":{"RequestId":"3c7853aafa6d441384a2802185fdecad","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ0:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=35de5d2bac7fa7fa73eb47a51df867dc3d1668d9ab917f75623cf0f619b1ac21","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002100Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:21:23.3041176+00:00","request":{"RequestId":"813d95cb0fe44b5983c4daba75e540bc","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ1:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=8d8fbbf5ca16db6c911ee31e60afd2a5af7643f1dd373d334b2d36dd95df9f8c","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002123Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:21:44.2678448+00:00","request":{"RequestId":"d9d5b234860348d3a0612fc50577cf86","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ2:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=b41243a8a2066c318ccb63065411116e9b626112762047ccd551f2485d7a0a57","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002143Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:22:04.3496789+00:00","request":{"RequestId":"0e882d94c8e34713a6a9e95ba1bed633","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ3:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=8c5267847e6605d26b56831a2965890395db1171af44f5c8c7e31c02b3b096fb","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002204Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:22:25.3285655+00:00","request":{"RequestId":"126dbea3f5734841ae35de6a15aa397e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ4:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=1a708e0bd8be520fcae7816119f32b3db26af26a764026010e543b4df4b8798b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002224Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:22:45.4227815+00:00","request":{"RequestId":"45feeda281b042e28f8e8046932a196c","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ5:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=feb5837875ab0c2ac8aa495719c23ff5f4cc985fe7a5889eb7b6526e518886dc","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002245Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:23:09.513588+00:00","request":{"RequestId":"38e783bd325a405aad40671155b3391d","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ6:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e46943f9f2f11d7c7b6bac998215f987eae075cc69a6e1f253b865e83c26729d","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002305Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:23:31.5645092+00:00","request":{"RequestId":"c25f45adc327436fa6c2f1d26ec19cea","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ7:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7f2c5ffb0fd1fbcae539968b1fb528566cd3be8c8a8b4f6dfecfa0838efe173a","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002329Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:23:51.7141313+00:00","request":{"RequestId":"bdbf9a88929c4eba8ef8cdbaecbe50dd","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ8:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=1a410ee04d2c28eab501ab91b3591162fd78f0e1050da8e48fa842dfdefd90e7","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002351Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:24:12.5916885+00:00","request":{"RequestId":"cf12747ca9d042b5b6fcb992b78e0c47","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJ9:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=8b32c0992e02e18f54e96c29f5575ced7b61c0957e534570bb1d896b25e1837d","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002411Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:24:33.6390434+00:00","request":{"RequestId":"23eb237d51d44a1bb4a1fe76c53a6308","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJA:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=72b924244578ffd036419cb98c1fb8073fa262bd113224c47bdcc30365551861","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002432Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:24:53.7174106+00:00","request":{"RequestId":"dac202f530434b5a9b9c88ffd6f9f224","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJB:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e4858189116de12010e15131452a6974f32d62617a4cbe8f878e70fa0a2ea6c2","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002453Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:25:14.8078398+00:00","request":{"RequestId":"c864b3600f874cf2a4f1068f30b0d037","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJC:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ff0667d89ac7ddc62f6672632393df6dc4e63b364a022134c37cdebe18ba1c40","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002513Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:25:35.777474+00:00","request":{"RequestId":"29151a3740d646ec8591f7fe3ab574a1","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJD:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=68614b3456a3e42c6491fddc6dec413eaed44b7b7f1514a8137b3893c5b2f703","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002534Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:25:55.877781+00:00","request":{"RequestId":"645ab705bd8e42caa6d56910636f646e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJE:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=42d50579ae8d1f91108390831260863311143baaccc5edd6fc8fcf9973913d79","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002555Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:26:15.9507398+00:00","request":{"RequestId":"5130bd61940b4b6e831cdcda798bccc8","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJF:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ed37c4c61e2c1bf0b48f3c0193876efe40759ea0be668c565820ddef11223e62","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002615Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:26:36.9038605+00:00","request":{"RequestId":"28e9824d32704157a14af3d81d7b827c","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJG:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=b0e95e55ebdad9560515aef3353db0f6cc49c1d26355d88d61491e03856f5ca4","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002635Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:26:56.9834306+00:00","request":{"RequestId":"f086ff3ee60642f5a6e041061298aee5","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJH:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=62764e708cf8a054b0d2bd649b797bc5a480d2d84e2ef60eba11b405c28da563","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002656Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:27:19.0775841+00:00","request":{"RequestId":"cadc7ffb5be74dac88491fc2fa515489","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJI:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=158b22c2a1e30b126cb0dc31c8e798f91020ea97c44064040cd8a2cbe37c7a56","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002717Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:27:40.1327503+00:00","request":{"RequestId":"9e18a83ff30646f29337d8bf08960206","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJJ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=49c3ef9bd24070bb6235571f1b962619aefbbbcdcb54c7bfacc97a5ed58480d4","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002739Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:28:00.2414276+00:00","request":{"RequestId":"a04104e3922b49ffacf225a7e41c096b","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJK:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=463024b17d36e1528ffea9e18469ee7fd0809bd6cf4b3ef736adc2f179dc594c","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002800Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:28:21.1928125+00:00","request":{"RequestId":"9bb53a7c45b54d409057379999186edb","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJL:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a30d10119e6589c4abc356d5a48d5fc80453c9aeece14c714cde9cb3bf072e43","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002820Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:28:42.2223939+00:00","request":{"RequestId":"76b497bd8036425bbe90a105407fd797","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJM:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=6d7ef1664772f397d32370922ce83a5441b635c7cb24ad7d60490d7195db8c53","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002841Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:29:02.3178128+00:00","request":{"RequestId":"5f27cc950223422c9a94f61844a8fc97","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJN:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a4c7fefc044219cef9b4e15593370a1e4f8cb13ab38e6f05a7d2ecff14b96f42","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002902Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:29:23.3376488+00:00","request":{"RequestId":"c16a08f8985c42a3899213acb21953b3","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJO:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=3632886424a63a3e39d847efa69b13dd65c1d943a14eb28d22ea349cece0e490","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002922Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:29:43.5690651+00:00","request":{"RequestId":"42a788c18e2b4a10b73b55edd7f55de1","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJP:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=09996c80e170bc18bb8ac04c42a6649f9c67fa3f40e5fcb2d1598a8a04cce9a3","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T002943Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:30:04.4358378+00:00","request":{"RequestId":"a8f3835bee7a45f3853c63914e15a62b","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJQ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=422e559f62c6f481971b17a3b8f43f51d2faf0ff6adbe8a9d20f8e273846df8f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003003Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:30:17.6580622+00:00","request":{"RequestId":"4933bf86f82944078aad6598fec686d1","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Media_20160725","Operation":"List","DeviceId":"","CorrelationId":"0HNLLI537RSJR:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/media/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ec5f4c39e465876480f6e1e58b2d9d39db81fff5bad375f83a0e7a6e00d20b02","Content-Type":"application/json","Content-Length":"40","X-Amz-Target":"Media_20160725.List","X-Amz-Content-Sha256":"b7985c0a0c6ab5e3f585633cfe8bcc32785e57688ec120ca68f0f9d06fcd79b7","X-Amz-Date":"20260520T003017Z"},"BodyText":"{\u0022loopIds\u0022:[\u00225c0b221fdf9d450019c5e253\u0022]}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:30:22.4968242+00:00","request":{"RequestId":"83b402e64de8439d9fa2d8af0b560f10","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJS:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=184c1308794da335e2f6ece164854dc88efccbff42dbcff3d16da5935422edd8","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003021Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:30:24.5717022+00:00","request":{"RequestId":"f9ea32946a3246cdae4a948d4103356d","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJT:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=474f1029a83c6d42aa8ec75840b056260af7434f923105a79a7ae8a1c29605c9","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003024Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:30:44.6574959+00:00","request":{"RequestId":"7b48ed8ddc164144a0758cf5f81c05b7","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJU:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ce38005b1ced248a7b5198b97b1ab3bfef9f2a23ffd84df7bd0384dd1b50be6f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003044Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:31:05.5507712+00:00","request":{"RequestId":"20a0b78c59994b548cf8ea4e5bc83fdc","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSJV:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=65e9450a195bc0d233b0f3b88826d9a8f909c7ea47647badbfb21403824377a0","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003104Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:31:27.7598436+00:00","request":{"RequestId":"d1df32d53da1413c80ca7c59f00a7432","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK0:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7ead98dc74886ff7d4016f8262efb92656a4a1102ca10ed61ba047f5c3dcd1a3","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003125Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:31:48.7257572+00:00","request":{"RequestId":"93eaf44349ca41e59fc317e4c93a6fbd","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK1:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e020c0fb2b2cdcea2949ce89d54850a599ccf54a107ca4b1c43dde650adb717b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003147Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:32:08.8269335+00:00","request":{"RequestId":"871add5c94464d978de1d4efd8a97c84","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK2:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=70b3ae37ed0e988cbe273a1e69a52edbbb99f5d5bd5eeda3cbd06e89def362e4","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003208Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:32:29.8024258+00:00","request":{"RequestId":"c97c18cbea9648b4a5469a44d4146b74","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK3:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=897369f65eb1bc727f5280c15d5a230758b4eedecf095202b907cbacda7ca116","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003228Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:32:49.9081183+00:00","request":{"RequestId":"db29bff9872644698da7eb7f8bed8c8e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK4:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=8f9df8ad807a01ccba5498a753c0dcab56f92721719b27c4c4c5c378c397108c","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003249Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:33:10.0115453+00:00","request":{"RequestId":"83bc743da9e44ad4a6a8c62f065f92fb","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK5:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=2c9d25cef37536363f3a1e81fd18341cf39fa7c46fd8c41798f7882dc436a12d","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003309Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:33:31.3914833+00:00","request":{"RequestId":"9c24f95ad0ee4cbf9162171942b39f52","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK6:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=be05aa382f305ecfd95ed05413cb752557d36c1c3c983260e399abdfcc0195ec","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003330Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:33:52.0843455+00:00","request":{"RequestId":"cbbb30c1fc954fcf984d2665a596acb0","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK7:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=f6e63ef6f56bc0347e3d62dca87aa32c2aa4e02613562c71253b8d457fa0fe51","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003351Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:34:14.1179829+00:00","request":{"RequestId":"0193d4eb15e243ac8ad384212ac8cc25","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK8:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=eb3b2d556e75b3befea7fa9eb4f8568ed7d0a71b95784cb45cbc7e71ccb725b7","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003412Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:34:34.200402+00:00","request":{"RequestId":"6379147a53064fdaae2c43a4c4f5196d","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSK9:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e6aa5ec5756589129fe3e1d15f311752cd717a3f1b306acb3242c880ae8bcf7f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003434Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:34:55.1976592+00:00","request":{"RequestId":"3ed83341b0d141e58cfcaf8bab3a257f","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSKA:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=72e1168846b352629c3b0f0155ced4ff6af1fc9d91f31bd56dce154ef782b9a6","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003454Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:34:56.2360437+00:00","request":{"RequestId":"313ed37c7bb541e4ae04ae90cbdf2417","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Log_20150309","Operation":"PutEventsAsync","DeviceId":"","CorrelationId":"0HNLLI537RSKB:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/log/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=bc96dd61f250e9239b8b0c8862848c22172d7cbfc55e6af856091e32debdfa14","Content-Type":"application/json","Content-Length":"53","X-Amz-Target":"Log_20150309.PutEventsAsync","X-Amz-Content-Sha256":"738ec9072f51811b7378977698ef463d739662d21f7e5595e8a0d1ff1de0b358","X-Amz-Date":"20260520T003455Z"},"BodyText":"{\u0022kind\u0022:\u0022HEALTH\u0022,\u0022serial\u0022:\u0022BOJW-1000-0017-1114-0008\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022contentEncoding\u0022:\u0022gzip\u0022,\u0022uploadUrl\u0022:\u0022https://api.jibo.com/upload/log-events\u0022}"}} +{"capturedUtc":"2026-05-20T00:34:57.2219566+00:00","request":{"RequestId":"6ce7072cb94b41d3b06ecc75cf51f813","Transport":"http","Method":"PUT","HostName":"api.jibo.com","Path":"/upload/log-events","ServicePrefix":null,"Operation":null,"DeviceId":"","CorrelationId":"0HNLLI537RSKC:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Accept":"*/*","Connection":"close","Host":"api.jibo.com","Content-Type":"application/octet-stream","Content-Length":"2041"},"BodyText":"\u001F\uFFFD\b\u0000\u0000\u0000\u0000\u0000\u0000\u0003\uFFFDXmo\u06F6\u0016\uFFFD\u002B\uFFFD\uFFFD}\uFFFD\u0014\uFFFDH\u0014\uFFFDOK[\u0060\uFFFD]\uFFFD\u0006q\uFFFD;\u0060(\u0004Z\uFFFDm-\uFFFD\uFFFD\u002BQI\u0722\uFFFD\uFFFD\u001ERT,\uFFFD^\uFFFD!K\uFFFD\uFFFD\u003C/\u003C\u000F\u000F\u000F\u03CB\uFFFD{\u077E\u04F2J\uFFFDRe7\uFFFD\u0012\uFFFDqBhL\u0012JY\u0018\u0154\uFFFDh\u1040\uFFFD\uFFFD\uFFFDH\uFFFD\uFFFD(\tcD\u0012\uFFFD\u0018^x\uFFFD\u02A5\uFFFD\uFFFDj\uFFFDV\uFFFD\uFFFD\u0016\u07ADl\uFFFDB\uFFFD@\uFFFDP\uFFFD\uFFFDOW\uFFFD\uFFFD\uFFFD\uFFFD?\uFFFD\u003E\uFFFD\uFFFD#\uFFFD\uFFFD$\uFFFD(@\u003EA\uFFFD#N(\uFFFD\u05A22[]\uFFFD\uFFFD(\uFFFD\uFFFD}\uFFFD\uFFFDZ\uFFFD\u002B\uFFFD\uFFFD\uFFFD[Q\u07CA\u000ED:\uFFFD\u0016\uFFFDL\uFFFDZ\uFFFD\u0016d\uFFFD|\uFFFD\uFFFD_\u001F#\uFFFD|\uFFFDp\uFFFDc\uFFFDC\uFFFD\uFFFD8\uFFFD\uFFFD(\uFFFD\uFFFD[\uFFFD\uFFFD\uFFFDh\uFFFD\u0016\uFFFD\uFFFD\u0060\uFFFD\u000E\uFFFDW\uFFFD.\uFFFDj\uFFFDz\uFFFD;\uFFFD\uFFFD\uFFFD\u001CU\uFFFD\u001E\u013E{\u002B\u002Bv\uFFFD \uFFFDrB\uFFFD\uFFFDJ\uFFFD\uFFFD\u0015\uFFFD\uFFFD$\uFFFD\u0027\uFFFDE\u0004\uFFFD\uFFFD\uFFFDi\uFFFD\uFFFDD\u001AQ\u0004^L\uFFFD\uFFFD\uFFFD7\u001B\uFFFD\u000E\uFFFD\u0010\uFFFDOY\uFFFD\uFFFDOA\uFFFD\u007F\uFFFD\uFFFD\uFFFD}z\uFFFDop\f\uFFFDP\u000E\uFFFD\u0001\uFFFDv\u01B5LJBd\u007F\uFFFD]*\uFFFD\uFFFD\u0002|\f^1XnE\uFFFDK\uFFFD-\uFFFD\uFFFD%\uFFFDa\uFFFD\u034A2\uFFFD\u0022f\uFFFD\uFFFD\u001F\uFFFD;\uFFFDV\uFFFD\uFFFD\u0014\uFFFD\uFFFDp-\uFFFD\uFFFD\uFFFDG\uFFFDZ\uFFFD\u0005\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD!\uFFFDK\u000F\u05CE\u0003\f@\r\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDL\u0398$ \uFFFD=n\uFFFD}\uFFFD\uFFFD;\uFFFD\uFFFD\uFFFD\u051Dn%\uFFFDnf\uFFFD\uFFFD\uFFFD\u0013\uFFFDe\u0001\uFFFDT\uFFFD\uFFFDR\uFFFDY\uFFFD\uFFFDU\uFFFDf\uFFFD\uFFFD\uFFFD\uFFFDD\uFFFD-\uFFFD\uFFFDt V\uFFFD\u0016,y3\uFFFD.L\uFFFD\uFFFD\u001F\u000B\uFFFD\uFFFD\uFFFD\uFFFD\u0026\uFFFDm_O\uFFFD\uFFFD4]Z\uFFFD\uFFFD!^q\u00183\uFFFD\u0012\uFFFDqD\uFFFDe\uFFFD\uFFFDm\uFFFD\uFFFD\u0010\uFFFD\u0010\uFFFD\u0027\u003C\uFFFD\u003E\uFFFD\uFFFD\uFFFD\u0002\uFFFDv??\u0255\uFFFD\u001E\uFFFDs\uFFFD\uFFFDZ\u53F4\uFFFD\u0000e\u2035\uFFFDZ\uFFFD\uFFFD\uFFFDg\uFFFD[\u00040L\uFFFD\uFFFDD\b\u00608\u0011\uFFFD\u00038F%\uFFFD:]\u002B\uFFFD\uFFFD\u001CF\u00016g0\uFFFD8\uFFFD\u0014\uFFFD\u00167\uFFFD\u0011id\uFFFD\uFFFD\uFFFDN\uFFFD\uFFFD7Gc\uFFFDV\uFFFD\uFFFD\u0026\uFFFD\uFFFD6\uFFFD\u001C\uFFFD\uFFFD\u0010\uFFFD;5\uFFFDcCody[t3\u0006I\fc\u0027t\uFFFDKU#\r\u003E\u0005\uFFFD\u0001\uFFFD\uFFFD\u0011e\u0027\u0001I\u0567\u0022\u02E6\uFFFD\uE8C0RL\uFFFD#c\uFFFD\uFFFD\f\uFFFD\uFFFD\u001D\u0002\u001F\u001C\u0010\u0027\uFFFD\u0022\uFFFD0\u0010HpH\u000F\uFFFD\uFFFDO\uFFFD\uFFFD\u0027$\uFFFD,\uFFFD\u0018\uFFFD\u000E\uFFFD?\u0006\u000B\uFFFD}\uFFFD\u001E\uFFFD@\uFFFD\u0010\u001CqN\u0022\uFFFD\uFFFD!\uFFFD3\uFFFD\uFFFDq\uFFFDy\uFFFD)\u003C\uFFFD(B\uFFFDy\u0563\u0015\uFFFD\r\uFFFD0Aq\uFFFDYHy\u001Ca\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\n\bR\u0006\uFFFD\uFFFDp\b*\uFFFD1=\uFFFD0\b\u0010\uFFFD\u0060\u0006R-\rY\uFFFDB\u01276\uFFFD$\uFFFD\uFFFDC\uFFFD#4\u4204\u0060a#\uFFFDk\uFFFD\uFFFD\r\uFFFDqF\uFFFD0\u0022\u003CB4\u0120Zfy\uFFFDn\uFFFD\uFFFDN\u05F2\uB308\uFFFD)(J\u0018\u0002\u000B\uFFFD\uFFFD\uFFFD\u001E.\u0084\uFFFD,\uFFFD\uFFFD\uFFFD\u0018\uFFFDM\uFFFDd\uFFFD\uFFFD\uFFFDe8_Fn\tX\u001Bu\u0027\u06F4\uB6E6\u0727M\uFFFDo\uFFFD2\uFFFD\uFFFD\f\uFFFD\uFFFD*\uFFFD\\\u079B\uFFFD\uFFFD1\uFFFD\uFFFD\u0014\u0017J\u000F$\u2D06\uFFFDn%0m\uFFFD\uFFFDG\uFFFD\u01CC\uFFFDa\uFFFD\u01DC\u0011\uFFFD\uFFFDh\uFFFD;\uFFFDNSW\u0005\uFFFDC\uFFFDA;\u052F \uFFFDLf\u0013\uFFFD\uFFFD\uFFFDryg\uFFFD\uFFFD\n\u0016O\uFFFD\u00BB\uFFFDT\uFFFD\uFFFD8\u0004\uFFFD\u0003\uFFFD\uFFFD\uFFFD;\u003C/U8\uFFFDQ\uFFFDR\uFFFD\uFFFD^W\uFFFD\uFFFD\uFFFD\uFFFD\u003E]HD\uFFFD\u0017j\uFFFD\uFFFD\uFFFD\ri\uFFFD\uFFFD\u0006\uFFFD\u0010\u0015b\uFFFD\u0016p\uFFFD[U\u0688\uFFFD\u0007\u001D\uFFFD\u0018\uFFFD\uFFFD\uFFFD\u0010\uFFFD\uFFFD-\uFFFD)\u02B2{$hS\uFFFD).\u0027\u0215\uFFFD\u000Bq\uFFFD1\uFFFD\uFFFD\u0022\uFFFD \u0018\u000Et\u045D \u000E\uFFFD\u001C\uFFFD\uFFFD=\uFFFD\uFFFD\u003C\u001E\u0017\uFFFD\u000E\uFFFDf\uFFFD\uFFFD\u0011\f\uFFFD\u0019a00!\u001D\uFFFD\uFFFDl\u001E\uFFFD\u33D7\uFFFD\uFFFD\uFFFDH\u0027\uFFFD\uFFFD\uFFFD\uFFFDnE\uFFFDm\uFFFD\uFFFD#k\u007F\uFFFD\uFFFD\uFFFD!=e\uFFFD\uFFFD\u003C\uFFFD\uFFFD;\uFFFD\u000F1u\uFFFD\u007F\uFFFDX\uFFFDC\uFFFDW\uFFFDGE\uEF63\u003Ey\u0026\uFFFD\u01DD\b\uFFFD\uFFFDys,\u04E1@\uFFFD\uFFFD\uFFFDj\uFFFD]\uFFFDW\uFFFDBf\uFFFD\uFFFD\uFFFD\u000E~o\uFFFD7^\uFFFDm\u0014]\u0007\uFFFD\uFFFDZ\uFFFD\uFFFD\uFFFDy\u001C\uFFFDt\uFFFD\u0799j\uFFFD\uFFFD_\uFFFD\u039E\uFFFD\uFFFD\uFFFDle\u0015\uFFFD\u001E\uFFFD\u0026\uFFFD\r\u003C\uFFFD\u0000\uFFFD\uFFFD\u0013\uFFFD\uFFFD\u001A\uFFFDFo\uFFFD\uFFFD^\u000E]\uFFFDJ\uFFFDV_\u06DE\uFFFD\uFFFD8Y\u0010\u0006q\uFFFD\uFFFD\u001C\uFFFDY\uFFFD\u0014\uFFFD\uFFFDU*\uFFFD|-;\uFFFD\uFFFD\uFFFD#\uFFFD\u0003\n\uFFFD\uFFFD\u0003\u0006\u0017Y\uFFFDA\uFFFD\t!\u0014\uFFFD}(D\u000B\uFFFDGa\u001CGS\u003C\u01A4\u000F\uFFFD\uFFFD\uFFFDU\uFFFD\uFFFD\uFFFD{\u000E\uFFFD\t\uFFFD\u0003\u0026v\uFFFDW\uFFFDjwE\uFFFD^\u0004g\uFFFD\uFFFDw\uFFFD\uFFFD_\u00A1\uFFFD\uFFFD\uFFFDP\frS\f\uFFFD\uFFFD\uFFFD\u0015\fmq\u000B\uFFFD\uFFFDE0F\uFFFD\u0003\u0012\u001B\uFFFD\uFFFDG\uFFFD\uFFFDZ\uFFFD\uFFFD\uFFFD7\uFFFD\uFFFD9$s\uFFFD\u0003\uFFFD\uFFFD5A\u000B\uFFFD\uFFFD\uFFFD\uFFFDH\u0004\uFFFDX\uFFFD\uFFFD;\u007F\u0007\u01BC\uFFFD\uFFFD\u001BHA9!\uFFFDf\uFFFD\uFFFD\u001C\uFFFD)\uFFFD\uFFFD\uAB94\uFFFD\uFFFDd\u0002\uFFFDm\uFFFD\u001C\uFFFD\uFFFDF\u000FQ\uFFFD\u0026\u001B4;\uFFFD\uFFFD\u0027\uFFFD\uFFFD\uFFFD\uFFFDq\uFFFD\tJ\uFFFD\uFFFD\uFFFDPW\uFFFD\uFFFD\u0027\u056F\uFFFD\uFFFDa\u000Bl\uFFFD\uFFFD\u0007}\uFFFD\uFFFDN\uFFFDF\uFFFDD\uFAD9\u0015\uFFFD\uFFFD\uFFFD1\uFFFD\uFFFDQ\uFFFDg\uFFFD\uFFFD \uFFFDIi#\uFFFD\u0012j\uFFFD%8\uFFFD\u001C\u060E\uFFFD\r\u0013\uFFFD]\uFFFD\uFFFD\uFFFD\uFFFD\u0002\u001F\uFFFD\u007Fy\uFFFDF\uFFFD\uFFFD\u0002\u0002N\uFFFD{\uFFFDt1\uFFFD\uFFFDyx^H\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u007Fq\rS\uFFFD\u0027\uFFFDw\uFFFDg\u003C3^\uFFFD\u0674\uFFFD\u001A\u001F\uFFFD\uFFFD\u0005\u02E1\uFFFD\uFFFD\u001Fz\uFFFD\u0026\u0015y\uFFFDZ\uFFFD0\uFFFDC\u0017\uFFFDx\uFFFD\u0003\u001C\uFFFD\uD899\uDCE7\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDK\uFFFD\uFFFD\uFFFD\u077B\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD2\uFFFDs\uFFFD\uFFFD\uFFFDk\uFFFD\u0000}\uFFFD\t\uFFFDLcwo\u0026/\uFFFDu[\uFFFD!J\u0317\u0001\uFFFD5\uFFFD \uFFFD9\uFFFD\f\f\u0188\u02B6\uFFFD,\uFFFD1\uFFFD\u03A80\uFFFDA\uFFFDK\uFFFD\uFFFDR\uFFFD.\uFFFD\u0001D\uFFFD\uFFFD\uFFFD\u5B5D\uFFFD\u0012\uFFFD\uFFFD/\u0006\u0014\uFFFD\uFFFDO\uFFFD\u0010M\u0011\uFFFD(\n2U\u001DC\uFFFD#\u0014\u003C\uFFFD\uFFFD\bvPH\uFFFD\uFFFD\uFFFD!\uFFFD\uFFFD\u0002.\uFFFD\u0004\u0006j8\u001BJ\u001C\u0014\uFFFD\uFFFD\u0004\u02A2\u0003\uFFFD\uFFFD\uFFFD\t,\uFFFD\uFFFD\uFFFD.\uFFFD\u06B7\uFFFD\u01B4)\uFFFD\uFFFD\uFFFD\u0018\uFFFD\u001B\uFFFD\uFFFD\uFFFD?q\u0010\u01A3{\uFFFD\uFFFD\uFFFD)\u0006\uFFFD0f\uFFFD\uFFFD\uFFFD{b\uFFFDL@y.iM\u0010\u0015\uFFFD\uFFFD\u0027\uFFFDx\uFFFDA\uFFFD\uFFFD\uFFFD:$5\uFFFD\u000Eo\uFFFD\u0000\uFFFDb0\uFFFD7d\uFFFD\uFFFDL\uFFFD\u001C-\uFFFD\uFFFD\uFFFD\uFFFD%\uFFFD\uFFFD\uFFFDr#\uFFFDXF\uFFFD\uFFFD?\u00D4\u000B\uFFFD%\uFFFDQ\uD9F0\uDD60\uFFFD)\uFFFD\uFFFD\uFFFD\uFFFDKX\uFFFD\uFFFD\uFFFD|\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u001A\u003E_}\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD_\uFFFD\uFFFD\u0157\uFFFD\uFFFD\uFFFD-\u0015b\uFFFD\uFFFD\uFFFD\u000B\uFFFD5B\uFFFDs\uFFFD\u0002\uFFFD\uFFFD[\uFFFD\uFFFD\uFFFD\uFFFDo\uFFFD\uFFFDKm\uFFFD\uFFFD8\uFFFD.8\u0007\uFFFD\uFFFDj\u001A;L.\u003C\u0005Y\u001A\uFFFD\uFFFD\uFFFDX\uFD74*\u00142\uFFFD\uFFFD\uFFFD\uFFFD|%\u0005w\u0017R\uFFFDeDb\uFFFD9a0\uFFFDf\u001D\u003Cv\uFFFD\uFFFDL\u0018R\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u001C\uFFFD\uFFFDh\uFFFD\u0026\uFFFDm\u0013\uFFFDC@\u001C\uFFFD0\uFFFD\u06DB\uFFFD\uFFFD\u03F6A\uFFFD@\uFFFD\uFFFDwE\u0027\u0590\uFFFDO\uFFFD,7\uFFFD\u0013\uFFFD\uFFFDEO~1x\uFFFDK\uFFFD\uFFFD\uFFFD\uFFFD\u049E\uFFFD^-\uFFFD\u0017\u001A\uFFFDv2\uFFFD\uFFFD\uFFFD\uFFFDvy\u07D8\uFFFDc\uFFFD\uFFFDr\uFFFD\uFFFD\uFFFD~l\uFFFD\uFFFD\uFFFD\u0003\uFFFD\uFFFDv\u0016\n\u0016\u0000\u0000"},"response":{"StatusCode":200,"ContentType":"text/plain","Headers":{},"BodyText":""}} +{"capturedUtc":"2026-05-20T00:35:15.3003535+00:00","request":{"RequestId":"b499c5ed50734dfbb6b5f66714cab78a","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSKD:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=b3f2fdd18ab3b3fc34faef79627f976edf956778923b0699fe1dea1037ac6ef1","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003515Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:35:35.7739478+00:00","request":{"RequestId":"2e2937da1e9f48cb8030fe3055f52d08","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSKE:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7b5b8602c2cb307d484d9aa0b31751b43cc3fd592c8bd2bd0a23a6a86a51bbe9","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003535Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:35:56.3988018+00:00","request":{"RequestId":"a939c2392397457da32261c012bcc83c","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSKF:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7ed50bb035b4d4a4af787c47feebd717a2c65ae1d043499ea2181184a0e620eb","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003555Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:36:17.380255+00:00","request":{"RequestId":"49b0d930c2bc490da42011468a7069a3","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLLI537RSKG:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ad833022705dc6ef824bcdb51fb57755931d65c3096cde6b2b0c6790e31c66bb","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003616Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:37:39.1557846+00:00","request":{"RequestId":"119791390e034b6b8202704fb1f69e27","Transport":"http","Method":"GET","HostName":"api.jibo.com","Path":"/","ServicePrefix":null,"Operation":null,"DeviceId":"","CorrelationId":"0HNLM0VUVE9K0:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"close","Host":"api.jibo.com"},"BodyText":""},"response":{"StatusCode":204,"ContentType":"text/plain","Headers":{},"BodyText":""}} +{"capturedUtc":"2026-05-20T00:37:39.4203431+00:00","request":{"RequestId":"cf7f4502695e4605a317c1ea0f8181db","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Notification_20150505","Operation":"NewRobotToken","DeviceId":"","CorrelationId":"0HNLM0VUVE9K1:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Host":"api.jibo.com","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/jibo/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=627f023c5bbe936f06fd8f1d2590969cd52e3eb77e0584059263485ba9fa084b","Content-Type":"application/json","Content-Length":"40","X-Amz-Target":"Notification_20150505.NewRobotToken","x-amz-content-sha256":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","x-amz-date":"20260520T003737Z"},"BodyText":"{\u0022deviceId\u0022:\u0022Royal-Current-Sage-Canvas\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022token\u0022:\u0022token-Royal-Current-Sage-Canvas-1779237459318\u0022}"}} +{"capturedUtc":"2026-05-20T00:37:45.5466675+00:00","request":{"RequestId":"ff1425092fe84040a64fbce5b5f12067","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9K3:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=bdd8269e1f52d3f85baa2aae1ef4a7007c1119dd874fa9d373062243c8a667aa","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003744Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:38:06.544936+00:00","request":{"RequestId":"e7753efd0c494b30b3a7e131df2241e4","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9K4:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=3a8a1cf21c6d98bd968396831fbcaca1ae4eeb9a61e8377258c2cfc6bca7f0d3","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003805Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:38:27.5936656+00:00","request":{"RequestId":"92d1f9d1acbc4650927b6d0c26cf0a71","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9K5:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=60958c4a0e9e7e02f80a229c20c93196f08d1b366673645f5c314c725bbadbc0","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003826Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:38:47.7242794+00:00","request":{"RequestId":"a487fc2f35484299948d80cc50acac31","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9K6:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=f7c2532171b163b86b18a49ea6620cbe9de54625dea0b7d7c86ba762f27630fa","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003847Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:39:07.8242411+00:00","request":{"RequestId":"9d3abe921005462faa0a5acaf77b2ced","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9K7:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=76df9013deacef5951bbbb50ad82ab41b5146042d73af49d3fb56244b682808b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003907Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:39:28.6893686+00:00","request":{"RequestId":"d424d50b045441caa781656223752d8e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9K8:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=0c0d160840413839d48e425512c05319c2bcdac7f7ab45e2b22fc4fbb2f5f9b8","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003927Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:39:48.7852715+00:00","request":{"RequestId":"6c082c4ba9854010b44c50e419edb97f","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9K9:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=4469f945f6b85cd5c15ef86dddabb3086d79a83ed5d6b74c70f2e73482a4c09b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T003948Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:40:08.8668998+00:00","request":{"RequestId":"03f06d06050c4eb889d71b1c2f04648e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KA:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e21ab8f9de3781c5791b938394da8fb3230e92ded4d77fe4cca339ecd61e86db","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004008Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:40:29.8859296+00:00","request":{"RequestId":"244c23e988e94feb8e86fe3ebcf1b89a","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KB:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e9f43c8cd34213fd46d5bb25d7c0aeacd52551e99952934e50e4500fc321a08f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004028Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:40:49.9820766+00:00","request":{"RequestId":"90883bb183a346dbaeb3488d2b6d0d71","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KC:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=99b33d1c7b0e87769dce69a0bcba9e9ea95b7bb3579f6d796de1f4efd4e284b7","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004049Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:41:10.0789648+00:00","request":{"RequestId":"c88c569d3dbb499ab200a482eb43aa1f","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KD:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e8dc6cab28bd6234ff1b139d8c49035e1ea3acfb555ace9aba06c289a489bcbc","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004110Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:41:31.0145614+00:00","request":{"RequestId":"43b5a7434f734c419838584e04a65773","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KE:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=962b6e6921359b929aa45653ab47a6d229d104c6217719fe9c8148da90a39255","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004130Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:41:51.1145036+00:00","request":{"RequestId":"2a853a3685284abbb496baf5eda5fe38","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KF:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=d7f7fb54cae9ccac6e936517810ce84809adfb989e0f2f4b6de37a7409dda79b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004151Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:42:11.2450507+00:00","request":{"RequestId":"ed0a06b4f268438f823212d54ca88a54","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KG:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=4851a177c6792fd98e5b46fd87f77ac3edca551a6a4b896d621702dd7d306862","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004211Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:42:31.3247529+00:00","request":{"RequestId":"fea8461038644c5b93005d8e3a7b26b2","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KH:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=54e3e96d51c53436318f5f025b9864a3e91a0d350e4c6392e72ada0baf4450b8","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004231Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:42:52.2027466+00:00","request":{"RequestId":"e1300c8511ed4f94a1086db9cc0712f1","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KI:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=30b425fbd915d5453e782bbd13663776bee10a96931eaa991123775c8b624f4f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004251Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:43:12.3415779+00:00","request":{"RequestId":"589802d015884e468733cb873dafaf78","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KJ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=c549af972596f20a68dc304a0547728ae881d2c5fe3302e7358f66f6a8d1b0db","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004312Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:43:33.3445763+00:00","request":{"RequestId":"9437ccbb60e94c449e9b46171a9e619e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KK:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=74dd2cdad5d9a7f65000226baf719e4c7e58bea0db3d74c7fbca149aa3105722","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004332Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:44:18.5039752+00:00","request":{"RequestId":"63a84916cf824fbd9809504f40615442","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Log_20150309","Operation":"PutEventsAsync","DeviceId":"","CorrelationId":"0HNLM0VUVE9KL:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/log/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=f762ce9bdeb48c3df441e40039b581d23a534c6d4589c68e844caf95dde2f6c8","Content-Type":"application/json","Content-Length":"50","X-Amz-Target":"Log_20150309.PutEventsAsync","X-Amz-Content-Sha256":"5ba08cf52677ba35e9635d05f5a4c568eb52234637edb8b638fce0c2b4397d58","X-Amz-Date":"20260520T004417Z"},"BodyText":"{\u0022kind\u0022:\u0022LOG\u0022,\u0022serial\u0022:\u0022BOJW-1000-0017-1114-0008\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022contentEncoding\u0022:\u0022gzip\u0022,\u0022uploadUrl\u0022:\u0022https://api.jibo.com/upload/log-events\u0022}"}} +{"capturedUtc":"2026-05-20T00:45:22.8130465+00:00","request":{"RequestId":"a01c4e8874214017b76c9a7fe50b9254","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Notification_20150505","Operation":"NewRobotToken","DeviceId":"","CorrelationId":"0HNLM0VUVE9KN:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Host":"api.jibo.com","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/jibo/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=c3166710291c08e0485ec378bb40e4913515b58fbc5b55c09d76be19ed18c6e7","Content-Type":"application/json","Content-Length":"40","X-Amz-Target":"Notification_20150505.NewRobotToken","x-amz-content-sha256":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","x-amz-date":"20260520T004520Z"},"BodyText":"{\u0022deviceId\u0022:\u0022Royal-Current-Sage-Canvas\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022token\u0022:\u0022token-Royal-Current-Sage-Canvas-1779237922710\u0022}"}} +{"capturedUtc":"2026-05-20T00:45:31.2194184+00:00","request":{"RequestId":"649d043c797e4b10be1e588c46650072","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Log_20150309","Operation":"PutEventsAsync","DeviceId":"","CorrelationId":"0HNLM0VUVE9KP:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/log/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=5ad3ffd4a19ac113396f7a9472f6b3f4f598a795307478fd29c595d6d60fb3a0","Content-Type":"application/json","Content-Length":"53","X-Amz-Target":"Log_20150309.PutEventsAsync","X-Amz-Content-Sha256":"738ec9072f51811b7378977698ef463d739662d21f7e5595e8a0d1ff1de0b358","X-Amz-Date":"20260520T004530Z"},"BodyText":"{\u0022kind\u0022:\u0022HEALTH\u0022,\u0022serial\u0022:\u0022BOJW-1000-0017-1114-0008\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022contentEncoding\u0022:\u0022gzip\u0022,\u0022uploadUrl\u0022:\u0022https://api.jibo.com/upload/log-events\u0022}"}} +{"capturedUtc":"2026-05-20T00:45:31.3661746+00:00","request":{"RequestId":"dc3934b0bf6a492a8a3944052d4d9c6e","Transport":"http","Method":"PUT","HostName":"api.jibo.com","Path":"/upload/log-events","ServicePrefix":null,"Operation":null,"DeviceId":"","CorrelationId":"0HNLM0VUVE9KQ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Accept":"*/*","Connection":"close","Host":"api.jibo.com","Content-Type":"application/octet-stream","Content-Length":"1427"},"BodyText":"\u001F\uFFFD\b\u0000\u0000\u0000\u0000\u0000\u0000\u0003\uFFFDW\uFFFDn\uFFFD8\u0010\uFFFD\uFFFDB\uFFFD\uFFFDY6/\uFFFD1O\uFFFD\uFFFDe\uFFFD\u0762E\\\uFFFD\u003E\u0014\uFFFD@K\uFFFD\uFFFDZ\u0012\uFFFD$\uFFFD\uFFFD)\uFFFD\uFFFD;\uFFFD\uFFFDXJ\uFFFD\uFFFD\uFFFD\uFFFD@\n\uFFFD\uFFFD\uFFFDp8\u001C\uFFFD~x\uFFFD\uFFFD\uFFFD\uFFFD\u04EC\uFFFD\uFFFD\u07BB\uFFFDq\uFFFD\b\uFFFD?\uFFFD\u0002\uFFFD\u0060\u00160\uFFFD\uFFFD@\uFFFD\uFFFD\uFFFDQ%\uFFFD\uFFFD2D\u00D8\u0485W\uFFFD\\xW^#U\uFFFD\u002Bo\uFFFD\u001D\uFFFD\u04A5l\u0000\uFFFDPn\uFFFDkQ\t\uFFFD\u015B\uFFFD\u0007\uFFFDj\u0004|L\uFFFD\u0018-\uFFFDO\u0010NPB(\uFFFD6\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDW\uFFFD\uFFFDN)\uFFFD\u0018\u007F\uFFFD\u000B\uFFFD\uFFFD\u0341kP\uFFFDB\uFFFD\uFFFDJ\uFFFD\uFFFD\uFFFD\b\u0005\uFFFD\uFFFD\u003E\u007F\uFFFD\uFFFD\uFFFD\b!\u001F!\u001C\uFFFD\u0018\uFFFD\u0000~\uFFFD\u0004Tw\uFFFDWf\uFFFD]}\uFFFDa\uFFFD\u000Ee\u00264,\uFFFDn\uFFFDZ6\uFFFD\uFFFD\uFFFDl\n\uFFFDI\uFFFD\u001B\uFFFDOn:P\uFFFD\uFFFD{\uFFFDO\uFFFDZk\uFFFD\u0004\u0022#\r\uFFFD\u0015\uFFFD\uFFFD\u002B\uFFFD\u0012\uFFFDD!\uFFFD\uFFFD\uFFFD\uFFFD*!z\u0010c\u0016F$\n\u0018\uFFFD\uFFFDn\uFFFD\u0015j\uFFFD\uFFFD_\u0012Fh\uFFFDem\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDh\uFFFDc\uFFFD\uFFFD\uFFFD\u001E\uFFFD\uFFFD\u0019M\uFFFD7\uFFFD.f\uFFFDAhEh\u0010W\uFFFD\uFFFD)\uFFFD$CZ,\uFFFD\u0003\uFFFD:\uFFFD\uFFFD\uFFFD\u0492\uFFFDW\u063BBK\uFFFD\u0016\uFFFD.\uFFFD\u0003\uFFFD[\uFFFD\uFFFD\u0060\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDt\uFFFDF\uFFFD\uFFFD\uFFFD\u0004\uFFFD\u0010\uFFFDbJh\u0669L\u0304dI\uFFFDxt\uFFFD}\uFFFD\uFFFD=\uFFFD\uFFFD]\u0018m\uFFFD\uFFFDt\uFFFD\u0022\u007F\u0010f\u0012\uFFFD*!\uFFFDMZI\uFFFD\uFFFD%\uFFFDO\uFFFD4\uFFFD]c\u0060\u002B\uFFFD\u0000\uFFFDM:\uFFFD\uFFFD. \uFFFD7\uFFFDLik\b=,\u003C%\uFFFDG\u0027w\uFFFDk\u0026\u003E\uFFFD\uFFFDNK\uFFFD\uFFFD\u0652\u0004pz(f1\u001C\u001B\u000E\u0016\u001E?\u0014\uFFFDn\uFFFD\uFFFD\u001A:\uFFFD5\uFFFD\uFFFDW\uFFFD\u0000\uFFFD\uFFFD8\uFFFD\u0235CO\uFFFDy\uFFFDa#\uFFFD\u0027V\uFFFD\u0000\uFFFD\uFFFD\u007F\u00CD\u0011\uFFFD\uFFFDfS\uFFFD\uFFFD\uFFFD=\uFFFD\u0011\uFFFD\uFFFD\uFFFD\r\uFFFDx\t\uFFFD\uFFFDy\u0664\u001B\uFFFDU\uFFFD\uFFFD\u0000/\uFFFDp\uFFFD/\u0007\u0010\uFFFDW6\uFFFD\uF143hh!q\uFFFD\uFFFD\u001D\uFFFDl\uFFFD5\u0022\u06E7\uFFFD46\uFFFD\u0003\uFFFDG\uFFFD\uFFFD\uFFFDs\u001C[\uFFFD\u0015\u0561\uFFFD3\u0001aV\uFFFD\uFFFD\u0026\u06E5\uFFFD\u0015\uFFFD\uFFFD\uFFFD\uFFFD\u000E\uFFFD\uFFFD\uFFFDJ\u000B\u0060Rw)\u03F2i\uFFFD\uFFFDP\uFFFD\uFFFD\u0012\u0016\u0011\u0006w\t\u0158\uFFFDi\u0019\uFFFD\uFFFD(\uFFFD\u20041\uFFFD\uFFFD \u003C\uFFFD\uFFFD\u03D6\t\r\u0012\uFFFD\uFFFD[\uFFFDv\u0015\uFFFD\uFFFD!BqT\uFFFDI\b\uFFFD;\u0014\uFFFD\uFFFD\uFFFDF\uFFFD\uFFFD\u0012p7\uFFFD\uFFFDP\u0000\uFFFD\u000EB\uFFFD\uFFFD$Ib\uFFFD9\uFFFD=\uFFFDY(F\u00043\uFFFD$\uFFFDD\tC\uFFFD\uFFFD\u0535\uFFFD8\uFFFDi\uFFFDS\uFFFD\u000E)M\u0022\u003C\uFFFD\uFFFD\uFFFD\u0004\uFFFDp\u0018CS\r!\u0000\uFFFDC\uFFFDL\uFFFD0\u01A0\uFFFDF4a4\uFFFD\uFFFDB \u01167\uFFFDn\uFFFD\u022D\u003CJ\u0022\u0012\u0003\uFFFD$D4\uFFFD\u0060Zey\uFFFDQe\uFFFD3\uFFFD\uFFFD\u06AA\u0004\uFFFDM\uFFFD,BAdsed\u0007gaKm\uFFFD,\uFFFDq\uFFFD\u0726K2_\uFFFD\uFFFD2\uFFFD/C\uFFFD\u0004\uFFFD\uFFFD\uFFFD\u0015*\uFFFD]\uFFFDV\u01F4\uFFFD\uFFFD\uFFFD\u0010\uFFFDp\uFFFD\\e\uFFFDM.\uFFFD\uFFFD\uFFFD\uFFFD55E\\5=B\uFFFDY\r\uFFFD\u0004\b\uFFFDf\u0013\uFFFD\uFFFDO\u0005\u18CF\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDT\uFFFD-W\uFFFD\uFFFDUC\uFFFD\u0010j\uFFFD\uFFFD\u0027i\u0019C#\uFFFD\uFFFD\\\u001F\uFFFDr}\u0017\uFFFDr\uFFFD\uFFFDO\uFFFD\uFFFD\uFFFDd\uFFFDzI\u001D\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u03E5\u0006\uFFFD{\u0014\uFFFD\uFFFDR\u039B\uFFFD[\u000BM\uFFFD\uFFFD\uFFFD\tN\uFFFD\u001F7\u001Cvs\uFFFD\uFFFD}\uFFFD\uFFFD(\uFFFD\uFFFD\uFFFD*}Nb\u001F\uFFFD3p-\uFFFD\u0015\f1\uFFFD\uFFFDK8\uFFFD\u0013\uFFFD\uFFFD\u0019p\uFFFD\uFFFD\u001C\u001E|\u051D\uFFFD\u0001\uFFFDv\u001D\uFFFD\u0019f}\uFFFD\u0000Kv\u0006\f\u0001\u0026\uFFFD\uFFFDU\uFFFD7\uFFFD\uFFFD/\uFFFD\u0782\uFFFD\uFFFD\uFFFD\u24C5^\uFFFD)s\uFFFD\uFFFDJ\uFFFD\uFFFD\r\uFFFD\u04E1/Y\uFFFD\uFFFD\u000Fo\u0060vPg\uFFFD\u001D\u0027\uFFFD\uFFFD?\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u001A\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDBzc\u0002\uFFFD\uFFFD\uFFFD\uFFFDl\uFFFDo\uFFFDj#l\uFFFDq;sy\u002B\u065A\uFFFDw\u0018\u0000Wv\n\\\uFFFD{\uFFFD\u0563\uFFFDdx\uFFFD\n\\b;\uFFFD\uFFFD\u0013\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDo\uFFFD\uFFFD\uFFFD\rW\uFFFDk\uFFFD\uFFFD\u007F\uFFFD\u0019!\uFFFD\uFFFD\u0004\uFFFD\uFFFD\uFFFDO\uFFFD \uFFFD\uFFFD\u001B\uFFFDE\uFFFD\u0060[6~!e\uFFFD}#\uFFFD\uFFFD\u0019\uFFFDg\uFFFD\u0027F\uFFFD\u0762W\uFFFD!}8\u02E2\uFFFD\u0694\uFFFD\uFFFD\u0019\uFFFD3\uFFFD\u0027N\uFFFD/JR\u001FD\uFFFD\uFFFDF^Dg\u051C\uFFFDz\uFFFD\u0017\uFFFD0\uFFFD\uFFFD\u0022\u0016\uFFFD\u0794\u0003\uFFFD\uFFFD\uFFFD_\uFFFDA\uFFFD\u0007\uFFFD\uFFFD\u0017\uFFFD\u0018UOL\uFFFD\uFFFD}=\u0013)7\uFFFD\uFFFDd\uFFFD-\uFFFD\uFFFD1\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0014-t\uFFFDN\uFFFD\uFFFD\u0013p\uFFFD\u0371\u001D\uFFFD\uFFFD\u007Fdl\u0007(\uFFFDA\uFFFD\uFFFD\uFFFD\u0060\uFFFD\u0060\uFFFD\uFFFDf\uFFFD\u1F91\uFFFD\uFFFD\u020B\uFFFD\uFFFD\uFFFD\uFFFDD8\uFFFD\uFFFD\uFFFD\u0004Q\uFFFD\u0026\u000E\uFFFD\u001D\u003C[g\uFFFD\u02D7Q\uFFFDL\u0019bt\u0016{\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFDS\uFFFD\uFFFD\u0002\u01BA\u0060b\uFFFD\uFFFD\uFFFD\u0019\uFFFD\uFFFD(\uFFFD\uFFFD\uFFFD\u0631\u003C\uFFFD\u000FC\u0060\uFFFD\t\uFFFD\uFFFD,\u001Bf1\uFFFDM\uFFFD\uFFFDe\uFFFD)\uFFFD\u0003N(\u0006\uFFFD\uFFFD\uFFFD\uFFFD[\uFFFDl\uFFFD\uFFFD\uFFFD\u000F\u0018\u0015^\uFFFD\uFFFD\uFFFDW\u03F3\u0017\uFFFD\uFFFD^zo\uFFFD]\u000B\u001E\uFFFD\u0002\uFFFDZ\u003E\u003C\uFFFD\u003C\uFFFD\u0007\n\uFFFD\uFFFD\uFFFDu\u0010\u0000\u0000"},"response":{"StatusCode":200,"ContentType":"text/plain","Headers":{},"BodyText":""}} +{"capturedUtc":"2026-05-20T00:45:37.329766+00:00","request":{"RequestId":"e1365496d38946c7b20fcb0ca106b5ba","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KR:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=c4ee650247dbde1f4d750283b36f9c40a080c3f86f6adbd2d1556792b8c3a15b","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004537Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:45:46.0662125+00:00","request":{"RequestId":"75db5761908841a3977f5091d5d74ef1","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Account_20151111","Operation":"Get","DeviceId":"","CorrelationId":"0HNLM0VUVE9KS:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/account/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ee78ff363a2fa42774e05d098910200ec75715c7feb5e6fca73420ab46249694","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Account_20151111.Get","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004545Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[{\u0022id\u0022:\u0022usr_openjibo_owner\u0022,\u0022email\u0022:\u0022owner@openjibo.local\u0022,\u0022firstName\u0022:\u0022Jibo\u0022,\u0022lastName\u0022:\u0022Owner\u0022,\u0022accessKeyId\u0022:\u0022openjibo-access-key\u0022,\u0022secretAccessKey\u0022:\u0022openjibo-secret-access-key\u0022}]"}} +{"capturedUtc":"2026-05-20T00:45:47.0505251+00:00","request":{"RequestId":"b193d535b897449ea7ebd9db65e97a00","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9KT:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=d98d71907a20dbeafd94d843cdfdb651d19b779d6021df2189241e15a65b032e","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004546Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:45:47.0596617+00:00","request":{"RequestId":"7c06a71412b34e15a38a5b3d83a9c4fc","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Robot_20160225","Operation":"GetRobot","DeviceId":"","CorrelationId":"0HNLM0VUVE9KU:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/robot/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=2ce729ac9c408861313c3fae59fe7f1e9cf7b56042ffa46dbe03f7979b5901a5","Content-Type":"application/json","Content-Length":"34","X-Amz-Target":"Robot_20160225.GetRobot","X-Amz-Content-Sha256":"881bb92888fe0bbfb9aa6f3fdf34613edc5bb9782527ba9ad506407f97ea2f32","X-Amz-Date":"20260520T004546Z"},"BodyText":"{\u0022id\u0022:\u0022Royal-Current-Sage-Canvas\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022id\u0022:\u0022Royal-Current-Sage-Canvas\u0022,\u0022payload\u0022:{\u0022SSID\u0022:\u0022my-ssid\u0022,\u0022connectedAt\u0022:1779186651142,\u0022platform\u0022:\u0022\u0022,\u0022serialNumber\u0022:\u0022my-robot-serial-number\u0022},\u0022calibrationPayload\u0022:{},\u0022updated\u0022:1779186651142,\u0022created\u0022:1779186651142}"}} +{"capturedUtc":"2026-05-20T00:45:47.321793+00:00","request":{"RequestId":"0865dbe2c84b4cbe919ded7e9fc14bb1","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Media_20160725","Operation":"List","DeviceId":"","CorrelationId":"0HNLM0VUVE9L0:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/media/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=9cfec5b54335db88bd670c2c33ff5e9667984507b439b1f9d15ee086b86afa75","Content-Type":"application/json","Content-Length":"40","X-Amz-Target":"Media_20160725.List","X-Amz-Content-Sha256":"b7985c0a0c6ab5e3f585633cfe8bcc32785e57688ec120ca68f0f9d06fcd79b7","X-Amz-Date":"20260520T004546Z"},"BodyText":"{\u0022loopIds\u0022:[\u00225c0b221fdf9d450019c5e253\u0022]}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:45:47.8280993+00:00","request":{"RequestId":"3a4ec9f054c3403288b3c47e222cdb77","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Person_20160801","Operation":"ListHolidays","DeviceId":"","CorrelationId":"0HNLM0VUVE9KV:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/person/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=7aea9f298a1a325b164cb08ce46f2b97442f44947a5f5e96b71cbb15446003a5","Content-Type":"application/json","Content-Length":"37","X-Amz-Target":"Person_20160801.ListHolidays","X-Amz-Content-Sha256":"5ee4e122445b4712b5081eaf0582314673f01a49080fab8fcbc8262af6f17eff","X-Amz-Date":"20260520T004546Z"},"BodyText":"{\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[{\u0022id\u0022:\u0022US-new-year-s-day\u0022,\u0022eventId\u0022:\u0022US-new-year-s-day\u0022,\u0022name\u0022:\u0022New Year\\u0027s Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-01-01\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.770035\u002B00:00\u0022},{\u0022id\u0022:\u0022US-martin-luther-king-jr-day\u0022,\u0022eventId\u0022:\u0022US-martin-luther-king-jr-day\u0022,\u0022name\u0022:\u0022Martin Luther King, Jr. Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-01-19\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700858\u002B00:00\u0022},{\u0022id\u0022:\u0022US-lincoln-s-birthday\u0022,\u0022eventId\u0022:\u0022US-lincoln-s-birthday\u0022,\u0022name\u0022:\u0022Lincoln\\u0027s Birthday\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-02-12\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700879\u002B00:00\u0022},{\u0022id\u0022:\u0022US-presidents-day\u0022,\u0022eventId\u0022:\u0022US-presidents-day\u0022,\u0022name\u0022:\u0022Presidents Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-02-16\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700895\u002B00:00\u0022},{\u0022id\u0022:\u0022US-good-friday\u0022,\u0022eventId\u0022:\u0022US-good-friday\u0022,\u0022name\u0022:\u0022Good Friday\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-04-03\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700911\u002B00:00\u0022},{\u0022id\u0022:\u0022US-good-friday\u0022,\u0022eventId\u0022:\u0022US-good-friday\u0022,\u0022name\u0022:\u0022Good Friday\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-04-03\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700929\u002B00:00\u0022},{\u0022id\u0022:\u0022US-truman-day\u0022,\u0022eventId\u0022:\u0022US-truman-day\u0022,\u0022name\u0022:\u0022Truman Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-05-08\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700946\u002B00:00\u0022},{\u0022id\u0022:\u0022US-memorial-day\u0022,\u0022eventId\u0022:\u0022US-memorial-day\u0022,\u0022name\u0022:\u0022Memorial Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-05-25\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700962\u002B00:00\u0022},{\u0022id\u0022:\u0022US-juneteenth-national-independence-day\u0022,\u0022eventId\u0022:\u0022US-juneteenth-national-independence-day\u0022,\u0022name\u0022:\u0022Juneteenth National Independence Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-06-19\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7700981\u002B00:00\u0022},{\u0022id\u0022:\u0022US-independence-day\u0022,\u0022eventId\u0022:\u0022US-independence-day\u0022,\u0022name\u0022:\u0022Independence Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-07-03\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7702974\u002B00:00\u0022},{\u0022id\u0022:\u0022US-labour-day\u0022,\u0022eventId\u0022:\u0022US-labour-day\u0022,\u0022name\u0022:\u0022Labour Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-09-07\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7702992\u002B00:00\u0022},{\u0022id\u0022:\u0022US-columbus-day\u0022,\u0022eventId\u0022:\u0022US-columbus-day\u0022,\u0022name\u0022:\u0022Columbus Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-10-12\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7703021\u002B00:00\u0022},{\u0022id\u0022:\u0022US-columbus-day\u0022,\u0022eventId\u0022:\u0022US-columbus-day\u0022,\u0022name\u0022:\u0022Columbus Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-10-12\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7703037\u002B00:00\u0022},{\u0022id\u0022:\u0022US-indigenous-peoples-day\u0022,\u0022eventId\u0022:\u0022US-indigenous-peoples-day\u0022,\u0022name\u0022:\u0022Indigenous Peoples\\u0027 Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-10-12\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7703068\u002B00:00\u0022},{\u0022id\u0022:\u0022US-veterans-day\u0022,\u0022eventId\u0022:\u0022US-veterans-day\u0022,\u0022name\u0022:\u0022Veterans Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-11-11\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7703089\u002B00:00\u0022},{\u0022id\u0022:\u0022US-thanksgiving-day\u0022,\u0022eventId\u0022:\u0022US-thanksgiving-day\u0022,\u0022name\u0022:\u0022Thanksgiving Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-11-26\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.7703105\u002B00:00\u0022},{\u0022id\u0022:\u0022US-christmas-day\u0022,\u0022eventId\u0022:\u0022US-christmas-day\u0022,\u0022name\u0022:\u0022Christmas Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222026-12-25\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.770312\u002B00:00\u0022},{\u0022id\u0022:\u0022US-new-year-s-day\u0022,\u0022eventId\u0022:\u0022US-new-year-s-day\u0022,\u0022name\u0022:\u0022New Year\\u0027s Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-01-01\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8211804\u002B00:00\u0022},{\u0022id\u0022:\u0022US-martin-luther-king-jr-day\u0022,\u0022eventId\u0022:\u0022US-martin-luther-king-jr-day\u0022,\u0022name\u0022:\u0022Martin Luther King, Jr. Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-01-18\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8211828\u002B00:00\u0022},{\u0022id\u0022:\u0022US-lincoln-s-birthday\u0022,\u0022eventId\u0022:\u0022US-lincoln-s-birthday\u0022,\u0022name\u0022:\u0022Lincoln\\u0027s Birthday\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-02-12\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8211856\u002B00:00\u0022},{\u0022id\u0022:\u0022US-presidents-day\u0022,\u0022eventId\u0022:\u0022US-presidents-day\u0022,\u0022name\u0022:\u0022Presidents Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-02-15\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8211876\u002B00:00\u0022},{\u0022id\u0022:\u0022US-good-friday\u0022,\u0022eventId\u0022:\u0022US-good-friday\u0022,\u0022name\u0022:\u0022Good Friday\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-03-26\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8211892\u002B00:00\u0022},{\u0022id\u0022:\u0022US-good-friday\u0022,\u0022eventId\u0022:\u0022US-good-friday\u0022,\u0022name\u0022:\u0022Good Friday\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-03-26\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212055\u002B00:00\u0022},{\u0022id\u0022:\u0022US-truman-day\u0022,\u0022eventId\u0022:\u0022US-truman-day\u0022,\u0022name\u0022:\u0022Truman Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-05-08\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212074\u002B00:00\u0022},{\u0022id\u0022:\u0022US-memorial-day\u0022,\u0022eventId\u0022:\u0022US-memorial-day\u0022,\u0022name\u0022:\u0022Memorial Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-05-31\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.821209\u002B00:00\u0022},{\u0022id\u0022:\u0022US-juneteenth-national-independence-day\u0022,\u0022eventId\u0022:\u0022US-juneteenth-national-independence-day\u0022,\u0022name\u0022:\u0022Juneteenth National Independence Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-06-18\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212109\u002B00:00\u0022},{\u0022id\u0022:\u0022US-independence-day\u0022,\u0022eventId\u0022:\u0022US-independence-day\u0022,\u0022name\u0022:\u0022Independence Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-07-05\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212167\u002B00:00\u0022},{\u0022id\u0022:\u0022US-labour-day\u0022,\u0022eventId\u0022:\u0022US-labour-day\u0022,\u0022name\u0022:\u0022Labour Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-09-06\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.821219\u002B00:00\u0022},{\u0022id\u0022:\u0022US-columbus-day\u0022,\u0022eventId\u0022:\u0022US-columbus-day\u0022,\u0022name\u0022:\u0022Columbus Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-10-11\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.821221\u002B00:00\u0022},{\u0022id\u0022:\u0022US-columbus-day\u0022,\u0022eventId\u0022:\u0022US-columbus-day\u0022,\u0022name\u0022:\u0022Columbus Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-10-11\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212231\u002B00:00\u0022},{\u0022id\u0022:\u0022US-indigenous-peoples-day\u0022,\u0022eventId\u0022:\u0022US-indigenous-peoples-day\u0022,\u0022name\u0022:\u0022Indigenous Peoples\\u0027 Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-10-11\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212248\u002B00:00\u0022},{\u0022id\u0022:\u0022US-veterans-day\u0022,\u0022eventId\u0022:\u0022US-veterans-day\u0022,\u0022name\u0022:\u0022Veterans Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-11-11\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212264\u002B00:00\u0022},{\u0022id\u0022:\u0022US-thanksgiving-day\u0022,\u0022eventId\u0022:\u0022US-thanksgiving-day\u0022,\u0022name\u0022:\u0022Thanksgiving Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-11-25\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.821228\u002B00:00\u0022},{\u0022id\u0022:\u0022US-christmas-day\u0022,\u0022eventId\u0022:\u0022US-christmas-day\u0022,\u0022name\u0022:\u0022Christmas Day\u0022,\u0022category\u0022:\u0022holiday\u0022,\u0022subcategory\u0022:null,\u0022loopId\u0022:\u00225c0b221fdf9d450019c5e253\u0022,\u0022memberId\u0022:null,\u0022isEnabled\u0022:true,\u0022date\u0022:\u00222027-12-24\u0022,\u0022endDate\u0022:null,\u0022source\u0022:\u0022nager-date\u0022,\u0022countryCode\u0022:\u0022US\u0022,\u0022created\u0022:\u00222026-05-20T00:45:47.8212302\u002B00:00\u0022}]"}} +{"capturedUtc":"2026-05-20T00:45:52.3427729+00:00","request":{"RequestId":"1932f37218c34a82ae7c3afcebf02908","Transport":"http","Method":"GET","HostName":"api.jibo.com","Path":"/","ServicePrefix":null,"Operation":null,"DeviceId":"","CorrelationId":"0HNLM0VUVE9L1:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"close","Host":"api.jibo.com"},"BodyText":""},"response":{"StatusCode":204,"ContentType":"text/plain","Headers":{},"BodyText":""}} +{"capturedUtc":"2026-05-20T00:45:57.5682305+00:00","request":{"RequestId":"edc4f5b9994541a8bdaee06b5a87de08","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9L2:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=5fe97306843eb2cde0bd6421ae32cd9911ca35763fe90c95967e2df9d995a5ad","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004557Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:46:03.4935213+00:00","request":{"RequestId":"f4a0117bd08c4de9a6147cf492c7820a","Transport":"http","Method":"GET","HostName":"api.jibo.com","Path":"/","ServicePrefix":null,"Operation":null,"DeviceId":"","CorrelationId":"0HNLM0VUVE9L3:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"close","Host":"api.jibo.com"},"BodyText":""},"response":{"StatusCode":204,"ContentType":"text/plain","Headers":{},"BodyText":""}} +{"capturedUtc":"2026-05-20T00:46:21.486444+00:00","request":{"RequestId":"b398ffe4393c46b18a0b1754875d29ef","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Robot_20160225","Operation":"UpdateRobot","DeviceId":"","CorrelationId":"0HNLM0VUVE9L4:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.117 linux/v6.5.0","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/robot/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=d3861cecf064330c0b33a6b39e0e0ed7b9005eb1ecae8e9dc6b6f51f986b032a","Content-Type":"application/json","Content-Length":"163","X-Amz-Target":"Robot_20160225.UpdateRobot","X-Amz-Content-Sha256":"a164414f7de444f2ad19a91dafa72294025f9ff1376608e60c2db2b7289ae6d9","X-Amz-Date":"20260520T004620Z"},"BodyText":"{\u0022id\u0022:\u0022Royal-Current-Sage-Canvas\u0022,\u0022payload\u0022:{\u0022SSID\u0022:\u0022GL-MT300N-V2-c8c\u0022,\u0022connectedAt\u0022:1779237980735,\u0022platform\u0022:\u002212.10.0\u0022,\u0022serialNumber\u0022:\u0022BOJW-1000-0017-1114-0008\u0022}}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"{\u0022result\u0022:\u0022ok\u0022}"}} +{"capturedUtc":"2026-05-20T00:46:23.5289941+00:00","request":{"RequestId":"0e9b7fa24ee64c51a7d087bc86815063","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9L5:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=80763c9bbbe69e244961f7f7c1843a4c6c0100ec476110fc0a9d7a2e96d9a7a5","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004617Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:46:43.6488367+00:00","request":{"RequestId":"993dc67e1f1e48d8826ad39ce22f464c","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9L6:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a2e73ab0dcafd976760a16c2f38055fc67c2fb563f52ce023116912a93d66286","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004643Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:47:05.6202561+00:00","request":{"RequestId":"add140937c7d4b0f9556ff1f5753be24","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9L7:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a3ab2cb12f98f5f3c2f031c8fc930909cd11c0e55f447722027fc7ac8eea1c9f","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004703Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:47:25.7662301+00:00","request":{"RequestId":"9378b35a6f6b46de9ccfa9b76990a15b","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9L8:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ab9e8b587384d64953d484e2678f67d31c6e5314f785536079f78b84e0bba8ce","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004725Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:47:46.2045743+00:00","request":{"RequestId":"9fa1a8a21350441a9421f8fcca26fa79","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9L9:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=3bea30f58b47be43fdef231a6a997345485600411879c9c7d3f216a204517e40","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004745Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:48:06.810964+00:00","request":{"RequestId":"2ef6ee2b0a3448219dd8fb75b58d3f1b","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LA:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=b4bb2da7532f2b9fc225c7ff2099682da41872d879f12bfaa4bd3dc110fd711a","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004806Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:48:27.5359392+00:00","request":{"RequestId":"edb2f8e9c37a47e3987976e409a2e9fc","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LB:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=827b903fae47722b33dc107f0ab2c35cfac03bb9185d6f1454922088e03d1287","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004826Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:48:48.1265073+00:00","request":{"RequestId":"1728a838ae73416b8f1c601a8b4c37af","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LC:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=68ca01725b5571970006dbab99d603c75eb803033a764c3c2e9f70a157e5a586","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004847Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:49:08.9238417+00:00","request":{"RequestId":"20e9384e7c964c1a839c65dce24e2c24","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LD:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=ef8ff8946ca84dd233ce162713e8fed768ecf55893dc46cdcd248bacdb4b5c74","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004908Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:49:29.9636456+00:00","request":{"RequestId":"46d11e9d8a134777ac22755e8d56781e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LE:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=9d349f6c7882e4a5a2325864d6cad307a8b59647344f5cfcb5cd592f576f9bc2","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004928Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:49:51.0322877+00:00","request":{"RequestId":"afe99323f1f64724baecfc5f514946a4","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LF:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=93802b204be963aee9160a58f8b05cff4e448efb78de29f62bef017dcaf1e6de","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T004950Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:50:11.228113+00:00","request":{"RequestId":"1f9d117438024378b4945fac5f5473ef","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LG:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=1a536926e5b679c33d9d68b9fda5762fccc6dc5bf5234c79506fc0f01069b923","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T005011Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:50:31.3508543+00:00","request":{"RequestId":"996d121ca412400faf967964c5c356c9","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LH:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=a9b64c7a0aabad2f7908b30638eba0acba800525fd8bb919f2ab8eb0b5fe202e","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T005031Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:50:52.425354+00:00","request":{"RequestId":"fcf00bcfa4334c73b930be61c33740d7","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LI:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=e6bac2654b2f7ced62bedfce65d7aac9abef35b8cd836c59128d264af7b3b1c9","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T005051Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:51:13.1700924+00:00","request":{"RequestId":"08290b143ff64fd2a04f17253e978454","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LJ:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=fd158564b2d38f425b630119c8a356950299054d55ca6e72c3aae0a304811ec1","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T005112Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:51:34.2034428+00:00","request":{"RequestId":"a29c69c6da57400e8a223e18951a2d10","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LK:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=4fae6c705dfc436f3e1d8ecbc1a22205b83395fbdd2eda47df39eac5c5f6e5c2","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T005133Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:51:55.2469802+00:00","request":{"RequestId":"2314a17404844ea7aaa4dead3781458e","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LL:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=82976171c6f49db8700ce874fc945a2e60a1ccea1f49b7ee476e46ab3e2bd125","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T005154Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} +{"capturedUtc":"2026-05-20T00:52:16.2736775+00:00","request":{"RequestId":"9f9fe934395b47d5bb99521318db914b","Transport":"http","Method":"POST","HostName":"api.jibo.com","Path":"/","ServicePrefix":"Loop_20160324","Operation":"ListLoops","DeviceId":"","CorrelationId":"0HNLM0VUVE9LM:00000001","FirmwareVersion":"","ApplicationVersion":"","Headers":{"Connection":"keep-alive","Host":"api.jibo.com","User-Agent":"jibo-server-client-nodejs/3.0.105 linux/v6.9.2","Authorization":"AWS4-HMAC-SHA256 Credential=a3ksSqxDYDpzZrV8j4md/20260520/us-east-1/Loop/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature=56e1fb40bc46f89654e58b1e32fef154e1e904de224a210e1a3c0c5ef782004d","Content-Type":"application/json","Content-Length":"2","X-Amz-Target":"Loop_20160324.ListLoops","X-Amz-Content-Sha256":"44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a","X-Amz-Date":"20260520T005215Z"},"BodyText":"{}"},"response":{"StatusCode":200,"ContentType":"application/x-amz-json-1.1","Headers":{},"BodyText":"[]"}} diff --git a/_tmp/jibo-test-48/captures/http/capture-index.ndjson b/_tmp/jibo-test-48/captures/http/capture-index.ndjson new file mode 100644 index 0000000..f557787 --- /dev/null +++ b/_tmp/jibo-test-48/captures/http/capture-index.ndjson @@ -0,0 +1,2947 @@ +{"capturedUtc":"2026-05-17T22:55:51.9384784+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9aa0f09457b42d2b4731227cd96a5f7"}} +{"capturedUtc":"2026-05-17T22:55:55.4485456+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"f97a7524e3d44a1286f5440f0fb9fac9"}} +{"capturedUtc":"2026-05-17T22:56:08.5210152+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"281871bbfe6e45bfb1f077ac93b51a53"}} +{"capturedUtc":"2026-05-17T22:56:08.5904595+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2cfee3b5af7f42bca95934ef168e3e41"}} +{"capturedUtc":"2026-05-17T23:00:54.0883274+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bac04dea475c45cdaa44a2f86afcfa5f"}} +{"capturedUtc":"2026-05-17T23:14:00.8950413+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Account_20151111","operation":"CreateHubToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c193058cae034b95b3c6564e3efb3207"}} +{"capturedUtc":"2026-05-17T23:20:09.646342+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7d9f8a4dd7a4ed099b203933d3aa8ab"}} +{"capturedUtc":"2026-05-17T23:20:10.6516424+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"aa4bd1c792e948bb99cc74f82e2609bc"}} +{"capturedUtc":"2026-05-17T23:23:38.516893+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"2854328c7395420482db86176a985b52"}} +{"capturedUtc":"2026-05-17T23:23:51.4896915+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9fd6d9f6218045bc931bc6b479389036"}} +{"capturedUtc":"2026-05-17T23:26:09.4084766+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd50690bbdec4d298359849190bccfe8"}} +{"capturedUtc":"2026-05-17T23:26:09.4638992+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29ad07c438ba41da830468d31dc23664"}} +{"capturedUtc":"2026-05-17T23:30:04.9309153+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c120d81daf08467ca60fdc3aa4c668ce"}} +{"capturedUtc":"2026-05-17T23:44:09.4144262+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8862047a9bf4d5498d39116c3e131a3"}} +{"capturedUtc":"2026-05-17T23:50:18.3638746+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"729660edbc6140e0b3162bbfb3d90ae1"}} +{"capturedUtc":"2026-05-17T23:50:19.3570009+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"45e9198dc18640f5aeae7c26cf11691a"}} +{"capturedUtc":"2026-05-17T23:56:09.9726203+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f4f4fd84531249aeb91779d27b2b0c28"}} +{"capturedUtc":"2026-05-17T23:56:10.0716346+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"00cc93ce68484ebbbf0c39f5688e47be"}} +{"capturedUtc":"2026-05-18T00:02:45.7256059+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7ecc79221af4ace882f817421668774"}} +{"capturedUtc":"2026-05-18T00:09:17.6602717+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bb857e895f8649ffaa66c0955306e36f"}} +{"capturedUtc":"2026-05-18T00:10:34.7489369+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3829bc9c2d3b42a2a331f244e0070782"}} +{"capturedUtc":"2026-05-18T00:10:34.75274+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"87323fd772b74acfaa7b26b2bac6f220"}} +{"capturedUtc":"2026-05-18T00:20:28.8175132+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"30c0db787ad142ffa45addd2f40e82dc"}} +{"capturedUtc":"2026-05-18T00:20:29.821267+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"673fbbbe8c9946f49d2f31312f44a333"}} +{"capturedUtc":"2026-05-18T00:26:10.4664418+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"589bec67a6f2418a9bb5588ee2210369"}} +{"capturedUtc":"2026-05-18T00:26:10.5425873+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bef05bbc0f3b4bc5bec9c7d076ab7176"}} +{"capturedUtc":"2026-05-18T00:50:37.5039941+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b44517b2a82c428bb0c9e17591f11a78"}} +{"capturedUtc":"2026-05-18T00:50:37.6663279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"56f0fcbf5eb9495583a5aa2eca1194ed"}} +{"capturedUtc":"2026-05-18T00:56:11.1433867+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"03a961d32e3842dfa3ad070fea92ac7e"}} +{"capturedUtc":"2026-05-18T00:56:11.2267995+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a58589fe22b9497aba3d326e687fb135"}} +{"capturedUtc":"2026-05-18T01:04:48.1264187+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"50db962b2c6546cf9847a009818d296c"}} +{"capturedUtc":"2026-05-18T01:20:45.9608511+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3c069a154ab649cf97cc2844c6dd3322"}} +{"capturedUtc":"2026-05-18T01:20:46.973062+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"873a24f6ba6046219728fab322985229"}} +{"capturedUtc":"2026-05-18T01:26:11.5621585+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be5277b92dfb452fafb4909cfcfc2a99"}} +{"capturedUtc":"2026-05-18T01:26:11.6702719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"635106e85560464bacf53d13f09b0a8c"}} +{"capturedUtc":"2026-05-18T01:48:16.1044383+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Account_20151111","operation":"CreateHubToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fa4470536a294a6ab92096d823d142b3"}} +{"capturedUtc":"2026-05-18T01:50:55.1007538+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"01d96bbfc82e4b069fce78931a7d26c3"}} +{"capturedUtc":"2026-05-18T01:50:55.3115639+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"782d80adde7f4914858358845bac4158"}} +{"capturedUtc":"2026-05-18T01:56:00.2118523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"796032d8cb334aa38055e822fc6e6d75"}} +{"capturedUtc":"2026-05-18T01:56:00.4205889+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4915ea25c4114e0cab1d9a9a6186b5ae"}} +{"capturedUtc":"2026-05-18T01:56:11.8786664+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d0c15c2657f4197b9fe9e8944d26486"}} +{"capturedUtc":"2026-05-18T01:56:12.0004811+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"32879ed1e3614811afb75b5825a4758b"}} +{"capturedUtc":"2026-05-18T02:01:48.5482304+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1d536a7cc2aa43ed90e822047fabe11e"}} +{"capturedUtc":"2026-05-18T02:03:29.8157449+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1eaf8a84c8fd46f8989327cb98733469"}} +{"capturedUtc":"2026-05-18T02:10:35.7868156+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6bc5f04441214bfa93824d2ff8a90670"}} +{"capturedUtc":"2026-05-18T02:10:35.787421+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf8008cc36d147b9bbeb4b97c792e66c"}} +{"capturedUtc":"2026-05-18T02:21:03.1888554+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e65cba77a6a2456ab56504b08021fcba"}} +{"capturedUtc":"2026-05-18T02:21:04.1903066+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"62e47588bb3349b5bb99686b84fe9000"}} +{"capturedUtc":"2026-05-18T02:21:34.2619686+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"86ee98af6032442a8e4d1fd5cfc5a1d9"}} +{"capturedUtc":"2026-05-18T02:26:12.8584993+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ea654e3ed8fc454da242d201658dc80f"}} +{"capturedUtc":"2026-05-18T02:26:12.9387071+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d5dc6df4b3024e849e81586766fc5567"}} +{"capturedUtc":"2026-05-18T02:51:12.0246377+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5ef88612c15b4daa93c986ac67c337af"}} +{"capturedUtc":"2026-05-18T02:51:12.2097491+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"8888b2415b8b45b6b4e31b50310a0a8d"}} +{"capturedUtc":"2026-05-18T02:56:13.7384226+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b48b05766ec147d8941712954b389319"}} +{"capturedUtc":"2026-05-18T02:56:13.8420099+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c884285bbef480397e19b2dca804f0c"}} +{"capturedUtc":"2026-05-18T03:03:42.7363573+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"808a0d2121a440ec914e674ffd11c81b"}} +{"capturedUtc":"2026-05-18T03:21:19.1678221+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"da5cc7e219114b9b89cfa6dddb50189b"}} +{"capturedUtc":"2026-05-18T03:21:20.0916288+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"fc56b6b849bd4fd8934b6afde9a8b224"}} +{"capturedUtc":"2026-05-18T03:26:14.7537671+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"02bd65489cdd45ef861bd5268d5ec2ac"}} +{"capturedUtc":"2026-05-18T03:26:14.8269281+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d98470def5241bc961fcb788e958794"}} +{"capturedUtc":"2026-05-18T03:51:29.0815731+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75d49f6d1e0a4c5c88e7885b1197d25d"}} +{"capturedUtc":"2026-05-18T03:51:29.2709496+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"281fc23b583740809cd276d3cfed009d"}} +{"capturedUtc":"2026-05-18T03:56:15.6966096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1f997bfffbf54d388419e7ee01233ba4"}} +{"capturedUtc":"2026-05-18T03:56:15.7864622+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2b17372f3d0045288ebabae23ce0c644"}} +{"capturedUtc":"2026-05-18T04:01:49.3808688+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"768ba969340d4d49ab0dde5766530d86"}} +{"capturedUtc":"2026-05-18T04:10:36.6490248+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f689ba3a813d47dab9136c9ccaf73381"}} +{"capturedUtc":"2026-05-18T04:10:36.6513172+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8f78c25649b147b5906626f908d3717d"}} +{"capturedUtc":"2026-05-18T04:21:37.1317886+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1b9c383e6f694a0fb0c1ae3955867314"}} +{"capturedUtc":"2026-05-18T04:21:37.3570727+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"97a37fd1d1c04be684ca7d4a2c81cb42"}} +{"capturedUtc":"2026-05-18T04:26:16.7074198+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d5a167fa5bd4b3b9920bd06b2483d63"}} +{"capturedUtc":"2026-05-18T04:26:16.7690542+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9262013135134d7393379c3bc0fc87bd"}} +{"capturedUtc":"2026-05-18T04:26:27.7480105+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be37ccf55e664017acc2c294a5982556"}} +{"capturedUtc":"2026-05-18T04:51:48.0057811+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d55df21b23504805953a8845c0b70333"}} +{"capturedUtc":"2026-05-18T04:51:48.214943+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"b8c8838fa79e44b0978c605f939b934e"}} +{"capturedUtc":"2026-05-18T04:56:17.522951+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"32b6c472008b460ab6bdc76e7801e789"}} +{"capturedUtc":"2026-05-18T04:56:17.5919396+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9b9c0d505850435c80538003a43a8bd4"}} +{"capturedUtc":"2026-05-18T05:01:53.4310123+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"292d5bb22ca7472997327fa63d139747"}} +{"capturedUtc":"2026-05-18T05:02:39.5495809+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b810523faaa94098a66048408ebc0b1d"}} +{"capturedUtc":"2026-05-18T05:21:58.1892183+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8b260f329fd4086bbfab582bac56e6a"}} +{"capturedUtc":"2026-05-18T05:21:58.3661046+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"3bdd1db3f15a4dd3beea55b7c23fd6f3"}} +{"capturedUtc":"2026-05-18T05:26:17.7320676+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b74fbef39cd6470587d433c13220dce1"}} +{"capturedUtc":"2026-05-18T05:26:17.8016678+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b213371f1354037891a0bd0f55a0b32"}} +{"capturedUtc":"2026-05-18T05:52:07.3045744+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c3ae2d74ef474cd8ae8301bbce84d718"}} +{"capturedUtc":"2026-05-18T05:52:07.4846207+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"87d1c457b1344ee7bf0e6e84ad0471e4"}} +{"capturedUtc":"2026-05-18T05:56:17.9707612+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"55af2e2a7e8b4174ac0448d8b8a3359a"}} +{"capturedUtc":"2026-05-18T05:56:18.0509942+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11dbf286fd5545129d2984009c89c7eb"}} +{"capturedUtc":"2026-05-18T06:00:55.3975622+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ae72a1988544e17bb2dd3e13f70b25f"}} +{"capturedUtc":"2026-05-18T06:09:18.4591711+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"63d2403b32e643ceb289e8ade2d5dd70"}} +{"capturedUtc":"2026-05-18T06:10:37.1430738+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b1d5c53ea2244fb893ff9edd1adab5c"}} +{"capturedUtc":"2026-05-18T06:10:37.1795511+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e45e479a85bf44c08231c189615f3534"}} +{"capturedUtc":"2026-05-18T06:22:18.2767371+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e626d2347a641fe89c6918750b935e6"}} +{"capturedUtc":"2026-05-18T06:22:19.2639809+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"137d719cc1ef4c0ea9d75efddd5ede8c"}} +{"capturedUtc":"2026-05-18T06:26:18.8096408+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bbf542858907479fb43dad97d02a1b4c"}} +{"capturedUtc":"2026-05-18T06:26:18.8761637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"619eabfbbb784b5c975f2e73dc9f3509"}} +{"capturedUtc":"2026-05-18T06:52:31.6519141+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c33f2455a84a4f4082dd437917cde59d"}} +{"capturedUtc":"2026-05-18T06:52:32.6503578+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"f6ea646926fa4466afce5265afe66d9b"}} +{"capturedUtc":"2026-05-18T06:56:19.1060055+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8580ec2bf50046c18822f159400a9a4c"}} +{"capturedUtc":"2026-05-18T06:56:19.1799431+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f3d06dc2ef0c4d3ba61f3109e30fc454"}} +{"capturedUtc":"2026-05-18T07:02:27.94453+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"27f2aab3d5894aa683310b761493768a"}} +{"capturedUtc":"2026-05-18T07:22:39.8159933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a96653c97edc4f97a7aa3fbc0111c5bb"}} +{"capturedUtc":"2026-05-18T07:22:40.0434643+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"cd7fc7a16134409bb29ec1a979cc6817"}} +{"capturedUtc":"2026-05-18T07:26:19.2789719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7ecd046be0f3438aa044004230dc9127"}} +{"capturedUtc":"2026-05-18T07:26:19.3481098+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e875b36b49364bbb848baa2f3a1244db"}} +{"capturedUtc":"2026-05-18T07:52:50.7889996+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"208872f7c44b464eae0c9cde43ea3b3a"}} +{"capturedUtc":"2026-05-18T07:52:50.9914011+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"aea662d753424dfb97484ed41354c4df"}} +{"capturedUtc":"2026-05-18T07:56:20.2059031+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6d1e902371844b38889114d16649f466"}} +{"capturedUtc":"2026-05-18T07:56:20.2989791+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ca6b54481ed746469fe65a0464c3293d"}} +{"capturedUtc":"2026-05-18T08:01:41.8950594+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f195822478b49bcbfc9cc0137bee4bf"}} +{"capturedUtc":"2026-05-18T08:10:38.1187834+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ab9a9d3fb904afb8fe1a440ca3e7e58"}} +{"capturedUtc":"2026-05-18T08:10:38.1270728+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5ade23c9f1d941258df4a1e2a2d2ec2f"}} +{"capturedUtc":"2026-05-18T08:23:01.8024063+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12ae16f1fb704cc8a4db51c0779abc2a"}} +{"capturedUtc":"2026-05-18T08:23:01.9894509+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"f35f1bd05ce4453f80024a25b5280571"}} +{"capturedUtc":"2026-05-18T08:26:21.239625+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e68d56a95c247d6b6f43f7f62a628a6"}} +{"capturedUtc":"2026-05-18T08:26:21.3165823+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ca1564e180e4aabbe55f0f3164b88d6"}} +{"capturedUtc":"2026-05-18T08:53:10.0079287+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9ebd7a0b260844a382d9e226bebdb6a2"}} +{"capturedUtc":"2026-05-18T08:53:10.1828869+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"27baeea69a6d446694d4b1a5352e80c4"}} +{"capturedUtc":"2026-05-18T08:56:21.4509561+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f06bd27c41614c11962e7bc294d3343d"}} +{"capturedUtc":"2026-05-18T08:56:22.4028769+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1bed738ee36f4f54880e8f1cd2b07a64"}} +{"capturedUtc":"2026-05-18T09:01:59.0814186+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f33fdaed6e949e9b0ec2625ed07fe2c"}} +{"capturedUtc":"2026-05-18T09:13:09.5834572+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3695d50d80b64a1ab2559b865e506930"}} +{"capturedUtc":"2026-05-18T09:23:18.8539998+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7c6841101bf449598a296e1d73b0d290"}} +{"capturedUtc":"2026-05-18T09:23:19.035219+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"9de868019c134305b3aa6d54f51f7826"}} +{"capturedUtc":"2026-05-18T09:26:23.2009929+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"365e0f8ac495464088a46ad148f68bc2"}} +{"capturedUtc":"2026-05-18T09:26:23.2819897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa974d511a7e4f90be23f111b9aed03f"}} +{"capturedUtc":"2026-05-18T09:53:30.1263613+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8803d913806a4c78ac0c47a40e565db2"}} +{"capturedUtc":"2026-05-18T09:53:31.0815016+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"2979b920457842bb9744a5cd06d76154"}} +{"capturedUtc":"2026-05-18T09:56:23.5908813+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8254a5e411804af39f4a284cbdd503a4"}} +{"capturedUtc":"2026-05-18T09:56:23.6937956+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2cb9894d75114774899df5b71d8bab16"}} +{"capturedUtc":"2026-05-18T10:03:25.5166293+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3401693e58dc48a5a28e2c4d184a35c1"}} +{"capturedUtc":"2026-05-18T10:10:39.4012914+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b3f4e925a094e32865ba2fb9372109d"}} +{"capturedUtc":"2026-05-18T10:10:39.4047165+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb07fd0424ec468f9ccf047b78bb6c26"}} +{"capturedUtc":"2026-05-18T10:23:39.0328527+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76ad6a9e13a94c58adb54bd55bb4b85d"}} +{"capturedUtc":"2026-05-18T10:23:40.024096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"711aa6edc0764541b3d2ed82e0c0e337"}} +{"capturedUtc":"2026-05-18T10:26:24.3929815+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"afa6d69ef7e34eb896e9ca31aa0f5169"}} +{"capturedUtc":"2026-05-18T10:26:24.4654863+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d8714f7537424223857998f36021cfad"}} +{"capturedUtc":"2026-05-18T10:53:49.2315003+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1f7c1f6ebbc7475bace3065f074381b9"}} +{"capturedUtc":"2026-05-18T10:53:49.4379245+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"a0b2529298f24adcada9a965be3def95"}} +{"capturedUtc":"2026-05-18T10:56:24.5670148+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c76acd6374224705badd4d50f5b4caa9"}} +{"capturedUtc":"2026-05-18T10:56:24.6469862+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c091738afb8342ff85a08885ac821b00"}} +{"capturedUtc":"2026-05-18T11:04:29.7063859+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd9a769d1ed14a7a86d34160c2e38438"}} +{"capturedUtc":"2026-05-18T11:24:00.3167135+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e9168170aa54fbaac593b83afd6a453"}} +{"capturedUtc":"2026-05-18T11:24:00.4828152+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"1da94f8ffd414617b2af9f1e4584304b"}} +{"capturedUtc":"2026-05-18T11:26:25.6120054+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"52e321b40ac54597a5fba3e41134e2fd"}} +{"capturedUtc":"2026-05-18T11:26:25.7284706+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9ca81d8d821f4021ab13b18986556ed2"}} +{"capturedUtc":"2026-05-18T11:54:08.3285467+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"118919ede5dc42729fa3ad06c178e032"}} +{"capturedUtc":"2026-05-18T11:54:08.5008679+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"6f394942ec7f47aab2d779f63ad7a893"}} +{"capturedUtc":"2026-05-18T11:56:26.6345233+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5fbf4c5f8d6b4d49a0c9299598673c1a"}} +{"capturedUtc":"2026-05-18T11:56:26.6996949+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f574748887b14fee9494bada388839a8"}} +{"capturedUtc":"2026-05-18T12:03:13.706998+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1dd1465a54444d6a973822a4f35ad4df"}} +{"capturedUtc":"2026-05-18T12:09:20.4737603+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bcecc3d930da4117bb5f63780754134b"}} +{"capturedUtc":"2026-05-18T12:10:39.6448825+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cee7891708774ca1aa3fbc0535e6b1cc"}} +{"capturedUtc":"2026-05-18T12:10:40.6578501+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec2016fd4edb43c58f3fa7fd1418a4cb"}} +{"capturedUtc":"2026-05-18T12:24:16.4059036+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7cc8186ce7114550a08183ab92c2d46d"}} +{"capturedUtc":"2026-05-18T12:24:16.6377829+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"c44d01fe5157443c9ab3c9cbe23672eb"}} +{"capturedUtc":"2026-05-18T12:26:26.7809755+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b2012bcb2ea74af7a860dfb4951683c6"}} +{"capturedUtc":"2026-05-18T12:26:26.8387125+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"55a53f1600fc4501b9116360cfb75f81"}} +{"capturedUtc":"2026-05-18T12:54:26.4814726+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"060b6b593bbc4d5db1be39b7cfcd95e7"}} +{"capturedUtc":"2026-05-18T12:54:26.8553017+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"af6fde2f977441c888b3b4d4092aa656"}} +{"capturedUtc":"2026-05-18T12:56:27.1087787+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"65cf7ab66fee460896b810c6be7fba10"}} +{"capturedUtc":"2026-05-18T12:56:27.2388315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"21596575fc0b4bde909c605467cb08f0"}} +{"capturedUtc":"2026-05-18T13:02:40.7187794+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3b1476b0294440928f3b8a1b101db105"}} +{"capturedUtc":"2026-05-18T13:04:31.8679576+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2d00c7752d454b47827e8d2f1161559a"}} +{"capturedUtc":"2026-05-18T13:24:34.622041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7da52409a6c544079a3b8a982d7dec29"}} +{"capturedUtc":"2026-05-18T13:24:34.8029418+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"af2f70d4dff04a03946580d5b21716ca"}} +{"capturedUtc":"2026-05-18T13:26:27.6157225+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"129957f059a34a84b4f0407daf48867f"}} +{"capturedUtc":"2026-05-18T13:26:27.9034941+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83a97579cc96459fb0243fc2bb13be38"}} +{"capturedUtc":"2026-05-18T13:54:42.5041225+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9de648b3cc24c19bf97675363ced141"}} +{"capturedUtc":"2026-05-18T13:54:43.43678+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"c1acbe833ad2449899d49d84e0fc9089"}} +{"capturedUtc":"2026-05-18T13:56:28.7196744+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b073ad060f4345e69331f6ec7f43d074"}} +{"capturedUtc":"2026-05-18T13:56:29.704961+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2d73fb13bedb49e3bd07ebd47333a67c"}} +{"capturedUtc":"2026-05-18T14:04:30.7617253+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7c23326d178b49879c05e7af1247ecbd"}} +{"capturedUtc":"2026-05-18T14:10:40.1869734+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d09ee10db444d3680e12c9d05bb6897"}} +{"capturedUtc":"2026-05-18T14:10:41.5560304+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba386bc1ae524defbe836858eece9e95"}} +{"capturedUtc":"2026-05-18T14:24:52.6013432+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"594a99955c5248d89967e5ef8428180c"}} +{"capturedUtc":"2026-05-18T14:24:52.8091796+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"c98338693e5f40c49d8885093a7d388d"}} +{"capturedUtc":"2026-05-18T14:26:29.826687+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6bfaad842cfb4823ab0495467ee76eea"}} +{"capturedUtc":"2026-05-18T14:26:29.9035839+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"32003a47e2bf4f2cb02e452f4b6b4c03"}} +{"capturedUtc":"2026-05-18T14:55:03.5515414+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a1ff1688374f454b88efc687139d8c00"}} +{"capturedUtc":"2026-05-18T14:55:06.6184235+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"a37c614ca11c4b2c873e32a08fe85de0"}} +{"capturedUtc":"2026-05-18T14:56:30.3089379+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7fe21fd676ca4b86805e65f6540508a5"}} +{"capturedUtc":"2026-05-18T14:56:30.4086435+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9ac20449a5e2478496208c95c6659881"}} +{"capturedUtc":"2026-05-18T15:00:44.2994163+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e337ddeef5034cf1b055f0d130229cf4"}} +{"capturedUtc":"2026-05-18T15:25:15.1678357+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"950270d2322941608f342cb6f84f1fd2"}} +{"capturedUtc":"2026-05-18T15:25:15.3734513+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"92ad2217b57f4973858fcd8f643c7be4"}} +{"capturedUtc":"2026-05-18T15:26:30.5598288+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8725008547fe410a8650b1ee2e056915"}} +{"capturedUtc":"2026-05-18T15:26:30.6170223+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f2180e0385f4ce18410ec7daf023e63"}} +{"capturedUtc":"2026-05-18T15:55:23.3728897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4bc371df18b148f7bcb75817c59c13a5"}} +{"capturedUtc":"2026-05-18T15:55:23.5947468+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"193f56c56ebc476180ee2d70485bbea8"}} +{"capturedUtc":"2026-05-18T15:56:31.4648419+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"966e558ba42f42b2b767d332b61983aa"}} +{"capturedUtc":"2026-05-18T15:56:31.5219785+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"28b1f11adc0b4a799044baad96b7ce9b"}} +{"capturedUtc":"2026-05-18T16:00:15.9678242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41ccf389411c456c89489935eea6cf3b"}} +{"capturedUtc":"2026-05-18T16:10:41.5470991+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e94857dfb5e4bedb0d71427e94c68d8"}} +{"capturedUtc":"2026-05-18T16:10:42.3079664+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"09fa1a7b0fd34051a5ebcadde620f296"}} +{"capturedUtc":"2026-05-18T16:25:31.3636939+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4af26fc360f842f7ad15a1cce87a2480"}} +{"capturedUtc":"2026-05-18T16:25:31.5753832+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"8e845f2eec51430c934554be59e3ba14"}} +{"capturedUtc":"2026-05-18T16:26:32.4066316+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b7ad7d6f04548df8054f4a0f8199799"}} +{"capturedUtc":"2026-05-18T16:26:33.4059346+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20b627768f794f52ba95c87ffba65a79"}} +{"capturedUtc":"2026-05-18T16:40:55.3845508+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed0164a1cc7243d785b150e5325238fc"}} +{"capturedUtc":"2026-05-18T16:55:40.4355256+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c192f109b2c64283a41d9acfd3318a2c"}} +{"capturedUtc":"2026-05-18T16:55:40.604858+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"4af79a989d8a44b0a436e504e6af314b"}} +{"capturedUtc":"2026-05-18T16:56:33.5966171+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df4801a68f334488a357f956c3bab19c"}} +{"capturedUtc":"2026-05-18T16:56:33.6620714+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6a523512ae748fc99494a85462ca533"}} +{"capturedUtc":"2026-05-18T17:04:40.7593757+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"60932064fade4a5fa85a14dcdb4ad53d"}} +{"capturedUtc":"2026-05-18T17:25:48.5224603+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff008709856b4d229c4219ef49d3e260"}} +{"capturedUtc":"2026-05-18T17:25:48.754807+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"26035c56537e424aab753d149d0a328e"}} +{"capturedUtc":"2026-05-18T17:26:34.6074892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d5db1fa547dc44a787510e18c023c2e8"}} +{"capturedUtc":"2026-05-18T17:26:34.6905147+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"37f49b27bc8d456099a341d69b45e105"}} +{"capturedUtc":"2026-05-18T17:55:57.6453177+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56ae77ac617549f5aa0a050190720428"}} +{"capturedUtc":"2026-05-18T17:55:57.8464845+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"4ae9b0b3a149436384fa316a72577132"}} +{"capturedUtc":"2026-05-18T17:56:34.763494+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c2c669c435b644a9bdbe1ca677edffd7"}} +{"capturedUtc":"2026-05-18T17:56:34.8307492+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"acb9a0d6685f4166b4a072e5a0a5bf81"}} +{"capturedUtc":"2026-05-18T18:03:10.5489637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a83dfa569bf41cfa4680776212e20c1"}} +{"capturedUtc":"2026-05-18T18:09:21.4245511+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd6aeca93d024754b509a4a4b1ba312c"}} +{"capturedUtc":"2026-05-18T18:10:41.6745416+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c762e2145c2f4f78808c9ae20b1c2e5a"}} +{"capturedUtc":"2026-05-18T18:10:42.6249934+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8f0d0dd2204488eb4427ffe45cadb9f"}} +{"capturedUtc":"2026-05-18T18:26:04.7698128+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f19902a5552b455d8bccbff6cc5df1ff"}} +{"capturedUtc":"2026-05-18T18:26:04.9773257+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"b280e1449ee0419ebb88baaf9194e9d8"}} +{"capturedUtc":"2026-05-18T18:26:34.9144962+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"de3f6f0165c249fe95b15e860c555064"}} +{"capturedUtc":"2026-05-18T18:26:34.9858478+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9fc74302755546c0b1526646d04635d8"}} +{"capturedUtc":"2026-05-18T18:56:11.8996852+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45a0809c6483452da0bf41de27e8cfb9"}} +{"capturedUtc":"2026-05-18T18:56:12.1130101+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"d30c03e1b8c344eab87c5bbc6d69047e"}} +{"capturedUtc":"2026-05-18T18:56:35.9265704+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f5652fb8066d4bd4b715d22d625b9bd8"}} +{"capturedUtc":"2026-05-18T18:56:35.9945041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92fbeaac42a94d1b8d42ca35fac87d88"}} +{"capturedUtc":"2026-05-18T19:00:55.4620807+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2333b188016e4928ad5c386c8e0a3357"}} +{"capturedUtc":"2026-05-18T19:26:18.8908897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14f50dbe6a434848a84450557f2c4f48"}} +{"capturedUtc":"2026-05-18T19:26:19.879886+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"64dbc9da78a044d2901599a5ad76938c"}} +{"capturedUtc":"2026-05-18T19:26:36.8959483+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"10d32c8a744443818e1267a6c0b81731"}} +{"capturedUtc":"2026-05-18T19:26:36.9614719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1c835fc2f3c9492a8c090ec9685f8b06"}} +{"capturedUtc":"2026-05-18T19:56:26.8634472+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a96aae7e709404ebf851ca6ebc978a1"}} +{"capturedUtc":"2026-05-18T19:56:27.0586348+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"ee9ab6a3610949a58de6493e0e2a9f21"}} +{"capturedUtc":"2026-05-18T19:56:37.8485545+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"224f8168aa2446d0bb2e71e04494df54"}} +{"capturedUtc":"2026-05-18T19:56:37.9339136+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"410aacae7db04d19997e5bd53c16cee9"}} +{"capturedUtc":"2026-05-18T20:02:41.6628241+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c15ec010e4c146bf82f909d4a558e239"}} +{"capturedUtc":"2026-05-18T20:10:42.6673996+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29138deb130f45ff9883cb341a7a5e21"}} +{"capturedUtc":"2026-05-18T20:10:42.8608016+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cccf146c45544e5faf870abf33565d4e"}} +{"capturedUtc":"2026-05-18T20:20:23.0865892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"256149ff5c9e4da59d1eec27aa096dc0"}} +{"capturedUtc":"2026-05-18T20:26:35.9933615+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6efcbb25bbd24136a6b4a27b9cb53435"}} +{"capturedUtc":"2026-05-18T20:26:36.1785439+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"c04eba7152d04332b29b9a1f5e662af4"}} +{"capturedUtc":"2026-05-18T20:26:37.9847741+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"755c86c9e8ce4971b0c223c902526ae8"}} +{"capturedUtc":"2026-05-18T20:26:38.0539969+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8fabdbbc9b44fc58eacda3d89d9c984"}} +{"capturedUtc":"2026-05-18T20:56:39.0096056+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c97673f770f40f5a2ade3d73c63ba97"}} +{"capturedUtc":"2026-05-18T20:56:39.0666985+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d430a12380a147e88cdf7e2432354b9f"}} +{"capturedUtc":"2026-05-18T20:56:44.0257298+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"060c86d9bb7f46e198068469203cf388"}} +{"capturedUtc":"2026-05-18T20:56:44.1800672+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"2e8fd42e7c5a46d5b5d0903815e290ec"}} +{"capturedUtc":"2026-05-18T21:00:45.7140126+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3601c1019c8b463f8c11f2ab783bc90e"}} +{"capturedUtc":"2026-05-18T21:26:39.9902651+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1a31f4a2cbe246469d7b87c2004ccad7"}} +{"capturedUtc":"2026-05-18T21:26:40.0726706+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"462872882a63494b8f4d524cbfc8d7a7"}} +{"capturedUtc":"2026-05-18T21:26:52.0367764+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0648d9706f5414e9f24034dddb23105"}} +{"capturedUtc":"2026-05-18T21:26:52.2409149+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"9956419312f942dfb51534d84d6fca8f"}} +{"capturedUtc":"2026-05-18T21:56:40.6748147+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e8b887707450493aadd895e4dea067e6"}} +{"capturedUtc":"2026-05-18T21:56:40.7518206+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"72cba1064b7f42bcac200201b80daf60"}} +{"capturedUtc":"2026-05-18T21:57:01.0145+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8f8c9b201ba94b46bfa9263ee40be631"}} +{"capturedUtc":"2026-05-18T21:57:01.2161774+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"1f05c1926ad64d20a9282bc5092d5273"}} +{"capturedUtc":"2026-05-18T22:03:53.9992609+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0e9515a33c14e1ca848acfdfa416a42"}} +{"capturedUtc":"2026-05-18T22:10:42.9719938+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9e85b8c482f4101a60048570b8b6a63"}} +{"capturedUtc":"2026-05-18T22:10:43.1268525+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6f02e9179bfe4ce3910c2fd3af0844be"}} +{"capturedUtc":"2026-05-18T22:26:41.1367262+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4d766dc11f9b439c973d0c7f7142ba4a"}} +{"capturedUtc":"2026-05-18T22:26:41.1899684+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c3ae5926baf24f9880be91564b26858a"}} +{"capturedUtc":"2026-05-18T22:27:08.2256601+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5561959415e14158935d4b3315650051"}} +{"capturedUtc":"2026-05-18T22:27:08.4530125+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"6bde425665bc47c49054c4428f148d82"}} +{"capturedUtc":"2026-05-18T22:56:41.2957102+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20540d7f6401473aac05a5e7480f87b4"}} +{"capturedUtc":"2026-05-18T22:56:41.3685501+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0376eb44862e4951bc3611a11f0f7eff"}} +{"capturedUtc":"2026-05-18T22:57:16.364369+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1464b63861104bee995c1295a3dbda1b"}} +{"capturedUtc":"2026-05-18T22:57:16.5378185+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"a22b40d3844c42a3aaa655d42344b73b"}} +{"capturedUtc":"2026-05-18T23:04:44.2754695+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42f9e343da374797be36d3e99b7d7018"}} +{"capturedUtc":"2026-05-18T23:26:42.3854693+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95adeffea3b3470cb4d3b71653c34e4d"}} +{"capturedUtc":"2026-05-18T23:26:43.5824473+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"de80ac993f1c4442ba7a6d6094cd453f"}} +{"capturedUtc":"2026-05-18T23:27:24.496686+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ccf33f82e14416eac6ec31525d03058"}} +{"capturedUtc":"2026-05-18T23:27:24.7328625+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"e9574771fc924a5c88399223be03159e"}} +{"capturedUtc":"2026-05-18T23:56:44.4771181+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"143ee9c30ba94cc0b448a9ee9c9873c8"}} +{"capturedUtc":"2026-05-18T23:56:44.5357693+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d7ab2fd20452400ea6d7f53ca02d945a"}} +{"capturedUtc":"2026-05-18T23:57:35.5689489+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6cdc8ac4a8a84b919136756e0a53bb50"}} +{"capturedUtc":"2026-05-18T23:57:35.7897298+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"169b51edf3af46d6a9e9d93f0cb3b153"}} +{"capturedUtc":"2026-05-19T00:00:25.0198564+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"529f9d1f8dd64507855b25931f7b47a6"}} +{"capturedUtc":"2026-05-19T00:09:22.1850331+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1ed05b0b9c204fe29f862fb9b597d81f"}} +{"capturedUtc":"2026-05-19T00:10:43.4298818+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c34a2ccc3e3d4c10b919a082f392701d"}} +{"capturedUtc":"2026-05-19T00:10:43.430356+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0b7a4312c8b492b822838d681238e93"}} +{"capturedUtc":"2026-05-19T00:11:18.5381748+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"53ddfcc180084d9ba89c8b7ee6746201"}} +{"capturedUtc":"2026-05-19T00:26:44.613652+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"96e63aabebab4df7ad3413647c3946bd"}} +{"capturedUtc":"2026-05-19T00:26:44.6853634+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3d2e4ecc8ead4c5abef4098859483c95"}} +{"capturedUtc":"2026-05-19T00:27:45.7733981+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8abbe9dda4124430a4679feeda9a476b"}} +{"capturedUtc":"2026-05-19T00:27:45.9752607+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"d82810ea13254f5ea460eff158fe30ea"}} +{"capturedUtc":"2026-05-19T00:56:44.7538702+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc3e4583e4ca46dd883791d6fbf4b40d"}} +{"capturedUtc":"2026-05-19T00:56:44.8244383+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4ba61a85f83241b39401d50a99f9a23d"}} +{"capturedUtc":"2026-05-19T00:57:57.8299402+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5fa39b076bdf4f1daf0798587583cd2b"}} +{"capturedUtc":"2026-05-19T00:57:58.0029176+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"fd7d4b6353eb450ea6d4c1e1f791db03"}} +{"capturedUtc":"2026-05-19T01:01:42.3509288+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2c3ee6c8e3e94dfbb05b7311edf756c5"}} +{"capturedUtc":"2026-05-19T01:09:33.5023574+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Account_20151111","operation":"CreateHubToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"91191c890c964ad38e686f525670697a"}} +{"capturedUtc":"2026-05-19T01:13:04.8265238+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Update_20160301","operation":"GetUpdateFrom","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff6f824074dd46199c1dcd287b412871"}} +{"capturedUtc":"2026-05-19T01:14:58.0534989+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b5174b1c19e44035a0aeab982021e490"}} +{"capturedUtc":"2026-05-19T01:15:04.0610563+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Update_20160301","operation":"GetUpdateFrom","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3c159f989d8e41eeb9e2c05c8fca274a"}} +{"capturedUtc":"2026-05-19T01:15:12.0717116+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Update_20160301","operation":"GetUpdateFrom","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11aa0fa523854a02a85a4c0c702e3f78"}} +{"capturedUtc":"2026-05-19T01:17:13.3309166+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Update_20160301","operation":"GetUpdateFrom","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"866bfb30300949b7ada943ae70ab0fae"}} +{"capturedUtc":"2026-05-19T01:26:45.5777992+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ba2a37804b14f4383f1a503008216e7"}} +{"capturedUtc":"2026-05-19T01:26:45.6580329+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41037a0fd9b54a7587ebaa031e43b04f"}} +{"capturedUtc":"2026-05-19T01:28:08.7434815+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ad75dd330e594dd28d0dc924bf550435"}} +{"capturedUtc":"2026-05-19T01:28:09.7400665+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"a6936515f36f4d6897bcf4876b84c715"}} +{"capturedUtc":"2026-05-19T01:56:45.7477274+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d83dc6fee0c404885636597dc2e1427"}} +{"capturedUtc":"2026-05-19T01:56:45.8379745+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7b6997a283a4ec28219a1efc4965414"}} +{"capturedUtc":"2026-05-19T01:58:20.9909112+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5c1b614f088046e6a3dd8c6d154ef1a3"}} +{"capturedUtc":"2026-05-19T01:58:21.9681138+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"a81bef860182425c892e5adcfe07544c"}} +{"capturedUtc":"2026-05-19T02:02:11.4988994+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutAsrBinary","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e46f4b30b5244ae78029a7d92779e1ff"}} +{"capturedUtc":"2026-05-19T02:10:43.9317097+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"69bfcd96e3fe45c7917cf6d9e804c32d"}} +{"capturedUtc":"2026-05-19T02:10:43.9986745+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3fa436e543ab48339f573f38daf2f882"}} +{"capturedUtc":"2026-05-19T02:20:20.228915+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Account_20151111","operation":"CreateHubToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1ff13ded80e94f2494c247bfc98981b9"}} +{"capturedUtc":"2026-05-19T02:26:45.9233575+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6282f9ad468a4285b4c80543ddd7533c"}} +{"capturedUtc":"2026-05-19T02:26:45.9967864+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"581a8ce87f00402e9a9954cc09d39767"}} +{"capturedUtc":"2026-05-19T02:28:31.1527868+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d05d7e675a4411bbfe8a230557c90d2"}} +{"capturedUtc":"2026-05-19T02:28:32.1539163+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"2bbb59bda68e498385eefb97c053a3ca"}} +{"capturedUtc":"2026-05-19T02:56:46.9745655+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListIncomingRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc9f175d4a5345028c8a313d6c1ffa2a"}} +{"capturedUtc":"2026-05-19T02:56:47.9765223+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Key_20160201","operation":"ListBinaryRequests","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"830687a4c4f9448dbc414311900c2db2"}} +{"capturedUtc":"2026-05-19T02:58:39.2198065+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6caea0226b964c8d9e36faf7be07c129"}} +{"capturedUtc":"2026-05-19T02:58:40.2109323+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"edd61ccb0fe542c68d5a64284346fd94"}} +{"capturedUtc":"2026-05-19T10:20:31.0899677+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15146af2e95a4a3f82436dda44f484b4"}} +{"capturedUtc":"2026-05-19T10:20:39.9949483+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7027a35646b44eb8a47cec1880744c3e"}} +{"capturedUtc":"2026-05-19T10:20:40.9578649+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"6e54a9e1499445e7930a37b84a8354d5"}} +{"capturedUtc":"2026-05-19T10:20:46.9770084+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"03532f0d389c4381ad90d21efb28d603"}} +{"capturedUtc":"2026-05-19T10:20:54.9890199+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Account_20151111","operation":"Get","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12f1ee5e61084bf5bb21ea3c4a22b556"}} +{"capturedUtc":"2026-05-19T10:20:55.6724545+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"02f659b62ab946efb0fbb65635226b3f"}} +{"capturedUtc":"2026-05-19T10:20:56.0984627+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"abed96153c9f4862bcbf3295dfb2e3fe"}} +{"capturedUtc":"2026-05-19T10:20:56.2068958+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0497d973b9b749c2a7dc6c6693c8c0b1"}} +{"capturedUtc":"2026-05-19T10:21:03.7615886+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"ddbbc9d93ad34db19e9de1572f6cfc71"}} +{"capturedUtc":"2026-05-19T10:21:07.1101744+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5506efab57dd432b9b19487ca97e99d2"}} +{"capturedUtc":"2026-05-19T10:21:11.103988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"5f9c0c795965429aafda95875068c589"}} +{"capturedUtc":"2026-05-19T10:21:28.0419181+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"82f76929ffc4430d8ef9a5f08db991e8"}} +{"capturedUtc":"2026-05-19T10:21:29.3212559+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"UpdateRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"553bd81efd324f45a0fadf07b417be57"}} +{"capturedUtc":"2026-05-19T10:21:49.094832+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b19fc577f80d49ed8118891d3c0f1146"}} +{"capturedUtc":"2026-05-19T10:22:09.2009174+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"86f7e37822f24037accd8e72d5ec96fc"}} +{"capturedUtc":"2026-05-19T10:22:29.3419481+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3930a744f30d4fba90d32a587bad871d"}} +{"capturedUtc":"2026-05-19T10:22:50.3560752+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"23153582d27d48e2b45c96e88bd22a90"}} +{"capturedUtc":"2026-05-19T10:23:10.4886413+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e33425bdbbb54a13928c38bf6281045f"}} +{"capturedUtc":"2026-05-19T10:23:31.5192361+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"331a7bd3c8934effa1ff9242c1c6e786"}} +{"capturedUtc":"2026-05-19T10:23:52.4727458+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd659100c44548f4b6522d6a629f38db"}} +{"capturedUtc":"2026-05-19T10:24:12.5746704+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90c33f8ab9754d40b3e9f9d99bf4ce58"}} +{"capturedUtc":"2026-05-19T10:24:33.5477669+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b5b924b3d24d4ea9a24cf2470424b674"}} +{"capturedUtc":"2026-05-19T10:24:54.6277247+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9d92a8916f945f4ae5468465aecf15c"}} +{"capturedUtc":"2026-05-19T10:25:15.6596973+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0cd195ba665c4176ab4dfcbef75cfc3f"}} +{"capturedUtc":"2026-05-19T10:25:35.7875427+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a05665f04c5402dbf9ffda5262fa7f0"}} +{"capturedUtc":"2026-05-19T10:25:56.7790362+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"85626532b9554dc8aeb3c3cbc245627c"}} +{"capturedUtc":"2026-05-19T10:26:16.8955064+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ecaefd3a98434019ada6846fd19d060e"}} +{"capturedUtc":"2026-05-19T10:26:36.9729679+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae35cf477667471cb08e37de062cdde6"}} +{"capturedUtc":"2026-05-19T10:26:57.516252+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9225277be0d4c448179a3b15f2d96b0"}} +{"capturedUtc":"2026-05-19T10:27:49.6817663+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"86dac23bc23c46cdba23619d8f71ce68"}} +{"capturedUtc":"2026-05-19T10:27:54.1715186+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"010a7aa476e744418bc95bcd3eff3984"}} +{"capturedUtc":"2026-05-19T10:28:01.193709+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4d37c6bad7554be8ad2ffa33d1b84fe2"}} +{"capturedUtc":"2026-05-19T10:28:46.2475386+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"93feed59fabf4e118824d95805772a77"}} +{"capturedUtc":"2026-05-19T10:29:49.321908+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"254571a81dd045f89254c617f9df89c9"}} +{"capturedUtc":"2026-05-19T10:29:57.1318824+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b229ab2296064873a6dd4fdc46edda03"}} +{"capturedUtc":"2026-05-19T10:29:57.2857025+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"36d634ccaffd4d18abdfd3aabd319ce8"}} +{"capturedUtc":"2026-05-19T10:30:03.1677692+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92aef6ccd9ae481b80830edf19f22c56"}} +{"capturedUtc":"2026-05-19T10:30:12.1188369+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Account_20151111","operation":"Get","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c028185365034851b6cd2d6bbd0540fa"}} +{"capturedUtc":"2026-05-19T10:30:13.0998588+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"490ced4f8a88440f815bedf92f590192"}} +{"capturedUtc":"2026-05-19T10:30:13.1045397+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b537e92c00f34767aa5fe650724c9607"}} +{"capturedUtc":"2026-05-19T10:30:13.1135448+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a070c0bf975c46bfbad8401b08d8596f"}} +{"capturedUtc":"2026-05-19T10:30:19.0779727+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"da4deede4d364443ba11548965b4851c"}} +{"capturedUtc":"2026-05-19T10:30:24.0706028+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"68f964bea10b4353a4101c51857d191d"}} +{"capturedUtc":"2026-05-19T10:30:29.0960662+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"da8711967b8a4e07a4f48fee34ff999f"}} +{"capturedUtc":"2026-05-19T10:30:44.2597449+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4128d1f426484a608c0030e77e6759fd"}} +{"capturedUtc":"2026-05-19T10:30:51.2730688+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"UpdateRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1eb21185d0984002baa74b4761c6d9c5"}} +{"capturedUtc":"2026-05-19T10:31:05.2151523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bc08d330a5d2474c881e3f42ab4a2d78"}} +{"capturedUtc":"2026-05-19T10:31:25.3145764+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7578cb8ccf3241d79a5c6fac829622eb"}} +{"capturedUtc":"2026-05-19T10:31:46.2300938+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5135bf91c7e347ccb8d09ae617ec835d"}} +{"capturedUtc":"2026-05-19T10:32:06.4501722+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f2ba0adb7f7e481fbd6860898617768f"}} +{"capturedUtc":"2026-05-19T10:32:28.3911235+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a8db3b0a079437f93a57e33e51d720d"}} +{"capturedUtc":"2026-05-19T10:32:49.3583231+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7ea112a78a94e03875b708cde4287a4"}} +{"capturedUtc":"2026-05-19T10:33:10.4267213+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64981e412a5d4b9392ad6722090f690a"}} +{"capturedUtc":"2026-05-19T10:33:30.6165112+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39c7d8150b7c4a9ea39034fc3ab9e340"}} +{"capturedUtc":"2026-05-19T10:33:51.6470484+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"54b1611134a047aaa5842c09c80ac710"}} +{"capturedUtc":"2026-05-19T10:34:11.7957437+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8dcae7cb93ac4bfd8e453511b679c8c5"}} +{"capturedUtc":"2026-05-19T10:34:32.6630314+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f3ab95a85af749a8a120d738df251596"}} +{"capturedUtc":"2026-05-19T10:34:52.8919423+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a0b86c8dc154f319400549c691efcaf"}} +{"capturedUtc":"2026-05-19T10:35:13.7444509+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b9ea708ded24dce973af9717689d3be"}} +{"capturedUtc":"2026-05-19T10:35:33.9900467+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75e73fdec2a940ae9796726d159b441b"}} +{"capturedUtc":"2026-05-19T10:35:54.3392043+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4e22e28266354f9b8447921bd5c21337"}} +{"capturedUtc":"2026-05-19T10:36:14.8785206+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"89cf020469954ea1826b7b0476221196"}} +{"capturedUtc":"2026-05-19T10:36:35.1730398+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45fcfc7eb2f648c194c9b8a38cdb740c"}} +{"capturedUtc":"2026-05-19T10:36:55.9640471+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"82dd69610ea0428b88b2f804401ba77e"}} +{"capturedUtc":"2026-05-19T10:37:17.0219233+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2baec2e18f124dfcab0008153c8cbf5d"}} +{"capturedUtc":"2026-05-19T10:37:37.1379955+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1ac6bdda130744e3a546c1d5950d9082"}} +{"capturedUtc":"2026-05-19T10:37:58.1841603+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bee5809efd194895b366bdf86923f99f"}} +{"capturedUtc":"2026-05-19T10:38:19.185895+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2772f4badcf94540ad29ddd8347a308f"}} +{"capturedUtc":"2026-05-19T10:38:39.3735902+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"928d60af2a4c4d6796ef8b67e1693588"}} +{"capturedUtc":"2026-05-19T10:39:00.3358198+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"620ec83cbb084d46889c63ff70dc7218"}} +{"capturedUtc":"2026-05-19T10:39:20.4298236+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29fc1a93377d49e5bbc2b023dcc03e59"}} +{"capturedUtc":"2026-05-19T10:39:40.5392069+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0bf503dc9e144e6b8c013b84ec98a160"}} +{"capturedUtc":"2026-05-19T10:40:01.4814518+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8934161a80764b14b40f5eca4c325906"}} +{"capturedUtc":"2026-05-19T10:40:22.5330122+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f89559c54d9943cba8ac74b2e7b9512c"}} +{"capturedUtc":"2026-05-19T10:40:42.69363+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b6c1ab2fea614fd2bc4c966978e52c86"}} +{"capturedUtc":"2026-05-19T10:41:03.6219523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5b6a5144a08144f6b9fc60ca5302b7da"}} +{"capturedUtc":"2026-05-19T10:41:24.6388949+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0507d7891bda4fddb4d3e8e20d2ad381"}} +{"capturedUtc":"2026-05-19T10:41:44.8072984+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4656673aeca1441487e5b1c285679cec"}} +{"capturedUtc":"2026-05-19T10:42:05.8010993+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"52a027c0a18e4f9f966f153a953709e0"}} +{"capturedUtc":"2026-05-19T10:42:25.9055517+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"948e1fa4cbf74fa0a7e297947dcc7e84"}} +{"capturedUtc":"2026-05-19T10:42:46.8861772+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75362f5e990749ab885a72e21b44b644"}} +{"capturedUtc":"2026-05-19T10:43:07.9465626+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"148c1b6c1ba64796b573d476d4b35689"}} +{"capturedUtc":"2026-05-19T10:43:28.1445502+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"24c2e5ed02f1477c8fb17afbef242a0e"}} +{"capturedUtc":"2026-05-19T10:43:32.7393172+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f49d0a9ee1ce43f8b42816db360639f9"}} +{"capturedUtc":"2026-05-19T10:43:49.0772562+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"26dc720467fa452598bfe72dc63b5e6d"}} +{"capturedUtc":"2026-05-19T10:44:09.194017+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39aab7209ef54a2a9aa7511ff028b84d"}} +{"capturedUtc":"2026-05-19T10:44:30.1737042+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11f8c92329f44f84bf4d553216d2dbe2"}} +{"capturedUtc":"2026-05-19T10:44:50.2759473+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"890cda8e8dcb45619ece7f1aa732a9fb"}} +{"capturedUtc":"2026-05-19T10:45:11.247826+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a53aae3ca4640ed8683e938900e23f4"}} +{"capturedUtc":"2026-05-19T10:45:31.3828933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"00406a6330f4425cad9ab8a904ca7721"}} +{"capturedUtc":"2026-05-19T10:45:52.8514234+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c3d4b0a41d9487089ac1686dbe3b163"}} +{"capturedUtc":"2026-05-19T10:46:13.501961+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"32e7dfab23ec491ba1df7493f27517ce"}} +{"capturedUtc":"2026-05-19T10:46:33.5925758+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aab367ef8a4d4c4a979cc08923f27e7c"}} +{"capturedUtc":"2026-05-19T10:46:54.5687415+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf539e23b972406483f36dfdc27cae15"}} +{"capturedUtc":"2026-05-19T10:47:14.6469992+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1675b2cf1ecd446295c605fb99ee5b52"}} +{"capturedUtc":"2026-05-19T10:47:35.7796435+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c299edb15ae24de6a1628563b85e363c"}} +{"capturedUtc":"2026-05-19T10:47:57.7593772+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8eabc80464274a68aee8030c6bb0afbd"}} +{"capturedUtc":"2026-05-19T10:48:17.8805076+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9ba843a78ec4e3bb0f41fe3483101fc"}} +{"capturedUtc":"2026-05-19T10:48:38.8556746+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2e89534f4080472ab13affcb4e68d8a2"}} +{"capturedUtc":"2026-05-19T10:48:59.0370232+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f89620bfaa7464eb156ea688929e26f"}} +{"capturedUtc":"2026-05-19T10:49:19.9751814+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fee1759b497f4d0c94c31d5959d9e50c"}} +{"capturedUtc":"2026-05-19T10:49:40.1585813+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"32711da114254bc2a7000c15700a48d6"}} +{"capturedUtc":"2026-05-19T10:50:06.1045871+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71487d0af29d4a25882bb35be02c1658"}} +{"capturedUtc":"2026-05-19T10:50:26.2400413+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"82349f01025449a892e71a9da3653fae"}} +{"capturedUtc":"2026-05-19T10:50:47.218819+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"50bed1c62a984e9f89e6045d56dbdb9a"}} +{"capturedUtc":"2026-05-19T10:51:07.3158403+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e9e6409982a14d5f9d598e52f17e1940"}} +{"capturedUtc":"2026-05-19T10:51:27.4832536+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"30161934487348ad8603a68ae37f9b5d"}} +{"capturedUtc":"2026-05-19T10:51:48.3046636+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e51d82f27ec04318bd17009df81584ba"}} +{"capturedUtc":"2026-05-19T10:52:08.9274396+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"74c795f6c49e4277a6cb7cb666bc6d92"}} +{"capturedUtc":"2026-05-19T10:52:29.3665476+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2baacc442d444ba4a35fe70e92f79f8f"}} +{"capturedUtc":"2026-05-19T10:52:49.5109199+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b3000d47a5304142bd182b27bc5df4ba"}} +{"capturedUtc":"2026-05-19T10:53:10.5155459+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8091d8428e5d457cabdcb543b3e0d725"}} +{"capturedUtc":"2026-05-19T10:53:30.7871615+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc7b431fbb594548a310807108e54096"}} +{"capturedUtc":"2026-05-19T10:53:51.5380405+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1872d6c61b32414cabb370ab284aba8f"}} +{"capturedUtc":"2026-05-19T10:54:11.6525843+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5115f334032f459aa1119d2b9385223d"}} +{"capturedUtc":"2026-05-19T10:54:32.6060659+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"94fd3dca27364763b60bd4c70446236d"}} +{"capturedUtc":"2026-05-19T10:54:52.6934878+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"01de4c5a797f4044a1bf4f8b4a6d1147"}} +{"capturedUtc":"2026-05-19T10:55:12.7891264+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56a6fa6e76114f669f95e54d8366f9a9"}} +{"capturedUtc":"2026-05-19T10:55:33.3624592+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e6b1a50abf949adb42fc2bb1a5aecbf"}} +{"capturedUtc":"2026-05-19T10:55:53.4634652+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8d81898b2e9e4ae6bee6ef36b9c9c39d"}} +{"capturedUtc":"2026-05-19T10:56:14.8323168+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9533d3f4af404a0885184061649cc37d"}} +{"capturedUtc":"2026-05-19T10:56:35.9239375+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d709f4b4bb984bb28f7f126e0266ecdf"}} +{"capturedUtc":"2026-05-19T10:56:56.1145372+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0ea1d9956a854b838c6f5b215ef46309"}} +{"capturedUtc":"2026-05-19T10:57:17.0159735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"291b4f0a85f44fc8ba8dce1f9c0b121f"}} +{"capturedUtc":"2026-05-19T10:57:37.2663116+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a555da2a308e4fdcb68aaa486bc82730"}} +{"capturedUtc":"2026-05-19T10:57:58.1589549+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bda1d39691124bfd854b7f8931422964"}} +{"capturedUtc":"2026-05-19T10:58:19.2544957+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"65347797006a4a108952164c2cb77d11"}} +{"capturedUtc":"2026-05-19T10:58:39.4094187+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"292e67ed0eb44b988584db51a353f331"}} +{"capturedUtc":"2026-05-19T10:59:00.3505448+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a7c88c43f4c4d4a9d5ebe57893921d1"}} +{"capturedUtc":"2026-05-19T10:59:20.4735193+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7f9b4d287dc74448956e91b4a8a2db5c"}} +{"capturedUtc":"2026-05-19T10:59:40.5704491+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8d20b81bf4049ab9801259323c180a9"}} +{"capturedUtc":"2026-05-19T11:00:01.48992+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"62d4f7d3f771496b989756c72d0d2eb9"}} +{"capturedUtc":"2026-05-19T11:00:06.5045314+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b2481971699142ceacae9af3610a4bfd"}} +{"capturedUtc":"2026-05-19T11:00:06.7582659+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"38c3f3042fd048b496c242f73115d81e"}} +{"capturedUtc":"2026-05-19T11:00:22.5497941+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d76498b18f2a46559bc1e133d9b35fb1"}} +{"capturedUtc":"2026-05-19T11:00:42.6315567+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f997c8bf32f9465b8ae0f7b9d15404aa"}} +{"capturedUtc":"2026-05-19T11:01:03.4679691+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a1f722ff86c04df280f83bc71528e8af"}} +{"capturedUtc":"2026-05-19T11:01:23.6798706+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f53c68a6aa874f178e40cf677a73646e"}} +{"capturedUtc":"2026-05-19T11:01:43.7674935+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c886fa15d9ae4055a37ca2e1ea2df390"}} +{"capturedUtc":"2026-05-19T11:02:03.9475073+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2c1b55aac1994616a8c8e58bada2e708"}} +{"capturedUtc":"2026-05-19T11:02:28.8667213+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39ba241e988f4898a58555746535a9e2"}} +{"capturedUtc":"2026-05-19T11:02:48.9654932+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e748ae2bcec84ebf8041e514260a62a1"}} +{"capturedUtc":"2026-05-19T11:03:09.0489982+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a584feabf8e84d8baeec531b0efad988"}} +{"capturedUtc":"2026-05-19T11:03:29.1268489+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0ad4aa9f88224c45a1c4d9ebe9f9c437"}} +{"capturedUtc":"2026-05-19T11:03:49.4915476+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f2fc9baa170c4e4d9f4e5ab27aef36fc"}} +{"capturedUtc":"2026-05-19T11:04:10.1113032+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c3a94cf2e42b43db81f918756c4b6938"}} +{"capturedUtc":"2026-05-19T11:04:32.2384127+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"056b6d3ff92d41f6b5d8ff4f18d4e13e"}} +{"capturedUtc":"2026-05-19T11:04:53.3165603+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e3f0a27f06240c49ca4d797e60739ba"}} +{"capturedUtc":"2026-05-19T11:05:13.4030997+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e8abdfa85114cca8d80b20e233ba31e"}} +{"capturedUtc":"2026-05-19T11:05:33.5149832+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"61350803b1454f9db9794f8f4889d77d"}} +{"capturedUtc":"2026-05-19T11:05:54.4284784+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1a36a0a424414fd6a74cbfeb1d05a470"}} +{"capturedUtc":"2026-05-19T11:06:14.5769548+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"88a51a2dc59244659b4e4cf096a031ca"}} +{"capturedUtc":"2026-05-19T11:06:40.6059466+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3822d463d75045a5b2d1335d6ed245e3"}} +{"capturedUtc":"2026-05-19T11:07:00.6899788+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e77884ef0f214397a296bf34f706a9e0"}} +{"capturedUtc":"2026-05-19T11:07:21.6396903+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"118d2f5d22114c37a58739f37ca4169f"}} +{"capturedUtc":"2026-05-19T11:07:41.7165057+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b0fc65f8a2f48efa8061a7143a09c4d"}} +{"capturedUtc":"2026-05-19T11:08:01.8117826+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0501aecffd5f4fa9aa9a55931b8e19a6"}} +{"capturedUtc":"2026-05-19T11:08:21.9199921+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"78120bd74ad64572af3641bee70657ae"}} +{"capturedUtc":"2026-05-19T11:08:42.9774653+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7f27ff9b729f4499b239a39cd45f5336"}} +{"capturedUtc":"2026-05-19T11:09:03.0698916+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14ef6c7132ca47d88be30bb6a3eab8cc"}} +{"capturedUtc":"2026-05-19T11:09:23.4190098+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0fccdb50955f412bac673f0d99767f14"}} +{"capturedUtc":"2026-05-19T11:09:43.5831805+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"28090f544a2d48d98d0bbc7ba75c6cff"}} +{"capturedUtc":"2026-05-19T11:10:04.1407917+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fd3f8f7f15df4dfbaf4b054be405ad46"}} +{"capturedUtc":"2026-05-19T11:10:24.3237635+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"21de2412ec8040eaa319a8aa98b4c9f0"}} +{"capturedUtc":"2026-05-19T11:10:47.3512329+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a46db521bf5d4c4ab9e5351042629e22"}} +{"capturedUtc":"2026-05-19T11:11:07.495944+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d2c5f7bef7940fb8da66017ec29eea5"}} +{"capturedUtc":"2026-05-19T11:11:28.4519819+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a5f9bc81dc543c9962258da9e9ea6bd"}} +{"capturedUtc":"2026-05-19T11:11:48.552861+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e25cfa85910748bfb36f273404170c6f"}} +{"capturedUtc":"2026-05-19T11:12:09.5396128+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aff69bb90a50472ba8887386777abfb8"}} +{"capturedUtc":"2026-05-19T11:12:29.6085317+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be664ba634244190948233f97aa3d071"}} +{"capturedUtc":"2026-05-19T11:12:51.7198787+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a94d124cf2a41799445cafd88eb1ac2"}} +{"capturedUtc":"2026-05-19T11:13:12.0906867+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"724724694d444f5b973bc337fd5f29d4"}} +{"capturedUtc":"2026-05-19T11:13:32.7685256+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b3b108a27e5e40d7881fe2cf254a81ff"}} +{"capturedUtc":"2026-05-19T11:13:52.9455747+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"647deebd25cd442e900d03674554bd14"}} +{"capturedUtc":"2026-05-19T11:14:13.4448933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3c947977c7814d15b7bbad1bf1ffa292"}} +{"capturedUtc":"2026-05-19T11:14:33.5248522+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d6ca7fba28e9406ebac3e3858e210305"}} +{"capturedUtc":"2026-05-19T11:14:54.0176559+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c796129ebbc4fd9bdba9fffdc40b0a2"}} +{"capturedUtc":"2026-05-19T11:15:15.0408895+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7adbe2bc04d744b3aa7a7cdfca83dcb0"}} +{"capturedUtc":"2026-05-19T11:15:36.0785279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"72783ace325d45b1b703b4152c205f67"}} +{"capturedUtc":"2026-05-19T11:15:56.1379405+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b38078c2b4c049208c734ab38efd8488"}} +{"capturedUtc":"2026-05-19T11:16:16.2160253+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d80a8ef72252426093430f726f492a7a"}} +{"capturedUtc":"2026-05-19T11:16:36.2947181+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fa2beb493bbf47589eff8f87d47032ea"}} +{"capturedUtc":"2026-05-19T11:16:57.3818371+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6fa9d6ee01ea4bb39b504d7ae92261a4"}} +{"capturedUtc":"2026-05-19T11:17:17.4642682+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5af7b0ef68024c3abf85b4b25d249cdd"}} +{"capturedUtc":"2026-05-19T11:17:37.5918802+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11d6436a49d842759183a4205627bc8a"}} +{"capturedUtc":"2026-05-19T11:17:58.4189344+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b217827297b8418e93559dcd01aaad3c"}} +{"capturedUtc":"2026-05-19T11:18:18.4892649+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6041a7c263a84addb603aaddd0ce6748"}} +{"capturedUtc":"2026-05-19T11:18:38.5699561+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd61cd3eea1b490f94a9065e6d94fcf8"}} +{"capturedUtc":"2026-05-19T11:18:59.5419141+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e2c68c920d084e3bb97f6ed617c38608"}} +{"capturedUtc":"2026-05-19T11:19:19.7790133+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce16adc09ac646b797d9223b41369a63"}} +{"capturedUtc":"2026-05-19T11:19:40.6664389+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb0dc1d3262f4e59853871a90df97b6c"}} +{"capturedUtc":"2026-05-19T11:20:00.7518283+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e212c9660da14627ac5dc108ef87d55f"}} +{"capturedUtc":"2026-05-19T11:20:20.8325576+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d58a947c8ed4098ad51e428237065c2"}} +{"capturedUtc":"2026-05-19T11:20:40.9085973+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"46bbf0826a494b93b7bc2b92417e191c"}} +{"capturedUtc":"2026-05-19T11:21:01.8822882+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"34d8d307542f444bbe358aa148d8586a"}} +{"capturedUtc":"2026-05-19T11:21:21.9834943+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c6f1c80f5e74b09b160e0941ff04be6"}} +{"capturedUtc":"2026-05-19T11:21:42.0845924+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"73f6a101f56e4ef5b7307ba2c172d4e2"}} +{"capturedUtc":"2026-05-19T11:22:02.1979527+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"034747d5bd7f4e0096402c2beb5516ad"}} +{"capturedUtc":"2026-05-19T11:22:23.0947842+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"575201e8282d4965a5ef1e6be206519c"}} +{"capturedUtc":"2026-05-19T11:22:43.1840575+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7fd7c8d35b45404c9a09d695be2181c9"}} +{"capturedUtc":"2026-05-19T11:23:03.4778842+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c02d9589c7a945a5adf3cc1ac3cba261"}} +{"capturedUtc":"2026-05-19T11:23:23.5456913+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6bdd8db9ff70478db74fd00d9a94b79e"}} +{"capturedUtc":"2026-05-19T11:23:44.285926+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8a43a49a174e4973a14668a9de213ab2"}} +{"capturedUtc":"2026-05-19T11:24:07.4093575+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4c840b41b4a4c789b6ef98d4226494c"}} +{"capturedUtc":"2026-05-19T11:24:28.4322841+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e67deb0f4a034cefab31928983884360"}} +{"capturedUtc":"2026-05-19T11:24:48.5309687+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90531bb9349d4d31b090dea47452a199"}} +{"capturedUtc":"2026-05-19T11:25:09.5139292+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2050a295977b43238cd96cb04272898b"}} +{"capturedUtc":"2026-05-19T11:25:29.5849466+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"10857a88efdc4fff85af2ee34103d6b0"}} +{"capturedUtc":"2026-05-19T11:25:49.6838705+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"22a9f51c160a4f3db6f3eb32448f6c27"}} +{"capturedUtc":"2026-05-19T11:26:09.8437585+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c13ea709933d49a881934f4ce1040317"}} +{"capturedUtc":"2026-05-19T11:26:30.8138628+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a28e0bace534563b28b03827930df44"}} +{"capturedUtc":"2026-05-19T11:26:50.91684+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29858bf3e953403dbb23522d551f0da9"}} +{"capturedUtc":"2026-05-19T11:27:11.8833718+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bdaf3de93412487ba7c5c16cb41aaa10"}} +{"capturedUtc":"2026-05-19T11:27:32.1568681+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e507cf94101c47c9816a6e56e851660f"}} +{"capturedUtc":"2026-05-19T11:27:53.011967+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"535d27831eb149eda480caaa6ad675d6"}} +{"capturedUtc":"2026-05-19T11:28:13.1956369+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ceb3054ccfb44fdf929c074d084c6787"}} +{"capturedUtc":"2026-05-19T11:28:33.5014064+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d313ebe848a24758ac46ca2d617d514f"}} +{"capturedUtc":"2026-05-19T11:28:53.5905939+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cfc1f265ae7b45bcbc18adc99f387111"}} +{"capturedUtc":"2026-05-19T11:29:14.1573204+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce7a97df8f3b441eafae9dea94e48ff8"}} +{"capturedUtc":"2026-05-19T11:29:34.2339916+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f19950037d4d4e05b9e64cfb1387259f"}} +{"capturedUtc":"2026-05-19T11:29:55.2799335+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fedbca41abe4463aa9652ad856e4a02c"}} +{"capturedUtc":"2026-05-19T11:30:19.4471842+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"743c03d73f4240de9f64d71e573004ff"}} +{"capturedUtc":"2026-05-19T11:30:19.474739+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"655183188d0241c191090cec2db55794"}} +{"capturedUtc":"2026-05-19T11:30:19.6716035+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"0c54e0ed76f64efebc5aed553cb334c5"}} +{"capturedUtc":"2026-05-19T11:30:39.5464386+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"62377461a06047bc937e461a1a629e69"}} +{"capturedUtc":"2026-05-19T11:30:59.6169137+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c4198cbaf3ff46f796170e6a70cb54ae"}} +{"capturedUtc":"2026-05-19T11:31:20.5819685+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e4a66ef96744fd1b524653606926c29"}} +{"capturedUtc":"2026-05-19T11:31:41.6135444+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3354b009e1bb42169251e6e3a54102b4"}} +{"capturedUtc":"2026-05-19T11:32:01.7049484+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f39405c933854ac2a47c131e393e5c80"}} +{"capturedUtc":"2026-05-19T11:32:22.6984432+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"24b094f1c1c04b9281bc3b2d0de4fa87"}} +{"capturedUtc":"2026-05-19T11:32:42.8119621+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a33e5ca0d47d4db6a7c1e3fcfd3fe440"}} +{"capturedUtc":"2026-05-19T11:33:03.5166443+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d7af23b8f7b847449f64b29af79ee2c8"}} +{"capturedUtc":"2026-05-19T11:33:23.6397221+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"69b8a01f13634bb1a0cbc558c9383257"}} +{"capturedUtc":"2026-05-19T11:33:43.9803347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d9d8681d56104fc79b8b30c32f75d126"}} +{"capturedUtc":"2026-05-19T11:34:04.9935436+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"30b328c143df4ccb808cd63b2f4f5564"}} +{"capturedUtc":"2026-05-19T11:34:25.0588979+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cb2804cb0e804397bd1900431cc76a75"}} +{"capturedUtc":"2026-05-19T11:34:46.1039603+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"208fba2ef1cf42dfaa1ccb30b6ed3fcd"}} +{"capturedUtc":"2026-05-19T11:35:06.1879426+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4cb4d65ac076467ba7ae8e9796f12e2a"}} +{"capturedUtc":"2026-05-19T11:35:26.2595871+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6edbd41150a44a038fac4285fbc6fdc1"}} +{"capturedUtc":"2026-05-19T11:35:47.2525271+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"80b5bd2dfed14cbab9ae8f9b78913515"}} +{"capturedUtc":"2026-05-19T11:36:07.3359805+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e6df5110c2e4c63b06cf38dd2139030"}} +{"capturedUtc":"2026-05-19T11:36:27.419563+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8261fac7b8c3423999a0c7db9e2918b0"}} +{"capturedUtc":"2026-05-19T11:36:48.3772192+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ff0f2ebb18f454cb6e7a17200284cbf"}} +{"capturedUtc":"2026-05-19T11:37:09.4637591+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"74dd79bb43b3408b93d97cc474cd1a84"}} +{"capturedUtc":"2026-05-19T11:37:29.5558271+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b2ac8eecbaa4c0c85eb6da19ee10912"}} +{"capturedUtc":"2026-05-19T11:38:20.5449448+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2de92d47ec604e80842d63f5d0891615"}} +{"capturedUtc":"2026-05-19T11:38:40.6288237+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35ff3b10906a48dfbfbd7828bab9301b"}} +{"capturedUtc":"2026-05-19T11:39:01.509485+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff556b4d9c844084a9cfc0e0dd1a8064"}} +{"capturedUtc":"2026-05-19T11:39:21.636533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce0fbb5faf7a4811861600d69e2f61df"}} +{"capturedUtc":"2026-05-19T11:39:42.6279438+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"760bcef6c6db46a7881e565a7e2fb9b2"}} +{"capturedUtc":"2026-05-19T11:40:02.7276755+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b9811fc19b747a3bf807a21ad771506"}} +{"capturedUtc":"2026-05-19T11:40:23.5758377+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0d477e62cad64036940126cdf03a7c1d"}} +{"capturedUtc":"2026-05-19T11:40:43.7104535+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8dca7863f444669acacf4320c33bb03"}} +{"capturedUtc":"2026-05-19T11:41:03.9240222+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6cf15fc70a624d06b7e1b4740d260908"}} +{"capturedUtc":"2026-05-19T11:41:24.8169676+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e012cd48fa6845619b515c5fe74b7fab"}} +{"capturedUtc":"2026-05-19T11:41:44.9019071+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"edb41427089d48f18df9bd44a285e2f8"}} +{"capturedUtc":"2026-05-19T11:42:05.079994+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a016231bcb24c07bb1a17d4bdc681ee"}} +{"capturedUtc":"2026-05-19T11:42:26.039599+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"94599e91ae184db0ad25ece19700444a"}} +{"capturedUtc":"2026-05-19T11:42:46.4378756+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9e5c97b4065544aa853464340da5fb8a"}} +{"capturedUtc":"2026-05-19T11:43:06.5285168+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15a741dc68584edd9dd76ef08526a601"}} +{"capturedUtc":"2026-05-19T11:43:27.6689175+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3e453bbb7a94496f9856a7e6f28f6326"}} +{"capturedUtc":"2026-05-19T11:43:48.6958877+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5725307dacdd40258e46679c3e0e7229"}} +{"capturedUtc":"2026-05-19T11:44:09.8133496+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac3bb9396bcf4f5c80a1143213dd40b6"}} +{"capturedUtc":"2026-05-19T11:44:40.8638937+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cceba96821924003b55bac9ef3201557"}} +{"capturedUtc":"2026-05-19T11:45:01.8769774+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b142ce0d03a44c8e83e55ca4a793ddd1"}} +{"capturedUtc":"2026-05-19T11:45:22.0079384+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1a0625f101e64abc9f6ab4d2e46c1937"}} +{"capturedUtc":"2026-05-19T11:45:43.0296173+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c33a5389ac64614b1ce608c8d92c257"}} +{"capturedUtc":"2026-05-19T11:46:03.1511558+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"192f99fdb51a493d984c7793512f5f5f"}} +{"capturedUtc":"2026-05-19T11:46:23.2296982+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bf483ae4505543038f7e5a3b38d9fbf8"}} +{"capturedUtc":"2026-05-19T11:46:43.5759243+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1296c62800d94c0bb5d2fc5bbb5c9a7e"}} +{"capturedUtc":"2026-05-19T11:47:09.3487987+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e5b0dd97b32d461fbeeaf36c69d64ad3"}} +{"capturedUtc":"2026-05-19T11:47:30.5325236+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9531fe6db084bf0a485e83364f729da"}} +{"capturedUtc":"2026-05-19T11:47:51.4397983+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a98c973bf61f4dd0acdaeedee2fd89cb"}} +{"capturedUtc":"2026-05-19T11:48:11.6498556+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"34fd4e61467242f183cad2a0ac382f14"}} +{"capturedUtc":"2026-05-19T11:48:32.5300029+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae519b64cd3746aa941bdf11f05045fe"}} +{"capturedUtc":"2026-05-19T11:48:52.6690091+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4ccb7949ceeb4096a68be6797ceacc1f"}} +{"capturedUtc":"2026-05-19T11:49:13.5978767+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"26ee3ecb45eb4b4fa46f33cbe6c19d39"}} +{"capturedUtc":"2026-05-19T11:49:33.7197987+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d99d28191ac3457786529a4e33585c4a"}} +{"capturedUtc":"2026-05-19T11:49:53.8549836+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df5a0f031a6449c9a345f94e7a3fa657"}} +{"capturedUtc":"2026-05-19T11:50:14.8579577+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b26a205b3274165a0997ada290b43a9"}} +{"capturedUtc":"2026-05-19T11:50:35.0050189+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d42b8db6d9434c4e977ab0501e7552df"}} +{"capturedUtc":"2026-05-19T11:50:55.9362457+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b365367d7f6347e8867e138875e8a68b"}} +{"capturedUtc":"2026-05-19T11:51:16.050616+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d0d25ddf2c1d47cca978f383cb03683b"}} +{"capturedUtc":"2026-05-19T11:51:36.1287063+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"21a4db3b2b824cf8bd2fff5e41d738ae"}} +{"capturedUtc":"2026-05-19T11:51:57.1677957+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d7a1a5843d8244aab2f23dce3c827cfc"}} +{"capturedUtc":"2026-05-19T11:52:17.2655494+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3d9de6ef8bc549249d05fdc27a9accb5"}} +{"capturedUtc":"2026-05-19T11:52:37.3526967+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"09f10267378f46558f0608b06f532560"}} +{"capturedUtc":"2026-05-19T11:52:58.3697988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"207e78f1b27f40c2bd11a0d67defcf9a"}} +{"capturedUtc":"2026-05-19T11:53:18.5407293+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0a754e93bd946f98064d9eff4025691"}} +{"capturedUtc":"2026-05-19T11:53:38.6219274+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0670189ea4774907999a7a3c9cfca86b"}} +{"capturedUtc":"2026-05-19T11:53:59.6189456+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"91a42b1aad104022b9bc93759c023305"}} +{"capturedUtc":"2026-05-19T11:54:19.7678778+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2b40aa1e014e40589e4b7dea0c9c3341"}} +{"capturedUtc":"2026-05-19T11:54:39.8545454+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"885c2b5e32df4cad8a15eaf0ea288504"}} +{"capturedUtc":"2026-05-19T11:55:00.8116988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee67b0e057e3465bb395b591c3bf6de8"}} +{"capturedUtc":"2026-05-19T11:55:20.9236849+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1ab9afdd813c466cb960a1a8cb6ecd6e"}} +{"capturedUtc":"2026-05-19T11:55:41.8925903+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a6700d8547ac42aab8ec2b1917e2dbaf"}} +{"capturedUtc":"2026-05-19T11:56:01.9735851+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0250a99669f74174a2fab3a8d44aad67"}} +{"capturedUtc":"2026-05-19T11:56:23.6012042+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4cafd85e9bd140b1846521c11c68ebc7"}} +{"capturedUtc":"2026-05-19T11:56:46.0804196+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2a03b36047f5423dbc34c2bd9224f2a6"}} +{"capturedUtc":"2026-05-19T11:57:07.0910802+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"61c321a7892541dbace5894bb4f9eef4"}} +{"capturedUtc":"2026-05-19T11:57:28.1717354+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4fdadfd552b642c384be24e06dcda7f5"}} +{"capturedUtc":"2026-05-19T11:57:49.1929779+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cb1224a7fb8d499386e96f8d6c1630dc"}} +{"capturedUtc":"2026-05-19T11:58:10.2237118+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e843e989592c4a95a2d6897643776bf4"}} +{"capturedUtc":"2026-05-19T11:58:30.3218247+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"96c5e580a7ad4f3192962a9fc7370743"}} +{"capturedUtc":"2026-05-19T11:58:50.62463+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b80f0721b6542e89682fc857851c195"}} +{"capturedUtc":"2026-05-19T11:59:11.5837405+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"654900c6b535440c86469ccef26f0b0a"}} +{"capturedUtc":"2026-05-19T11:59:31.6899008+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9ddd207a27a447e9a386fff414542678"}} +{"capturedUtc":"2026-05-19T11:59:52.6558074+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b7c34ca1740a49c69788ad2ef8ea7151"}} +{"capturedUtc":"2026-05-19T12:00:12.7437571+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"813059d022e24c8b892993d237b9617e"}} +{"capturedUtc":"2026-05-19T12:00:28.7888757+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc9f416f78fc4e20b4a8769f51d7b5a1"}} +{"capturedUtc":"2026-05-19T12:00:30.4189039+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"b52cd9394c014c418fb395e0d57f5b86"}} +{"capturedUtc":"2026-05-19T12:00:33.6295158+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e9622ba39faf4356a74954e0986b6975"}} +{"capturedUtc":"2026-05-19T12:00:53.6969094+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"baffced7224644799dafe9e8ecfd2ee8"}} +{"capturedUtc":"2026-05-19T12:01:13.7766055+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6625a35dc45a472bbf06b235ea41387b"}} +{"capturedUtc":"2026-05-19T12:01:33.8789184+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"72c4949c73bc43deb3e78cb14ac8ae76"}} +{"capturedUtc":"2026-05-19T12:01:54.9159461+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a8503e0134045838763151beb208386"}} +{"capturedUtc":"2026-05-19T12:02:15.0166964+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"957c6950fc844892b8ced3de62bd4d44"}} +{"capturedUtc":"2026-05-19T12:02:36.3230972+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1828dece90e64e14a6bedc8685c1d1ca"}} +{"capturedUtc":"2026-05-19T12:02:57.1029582+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1082fab270e44dbd9c4f469a736f2695"}} +{"capturedUtc":"2026-05-19T12:03:17.2569485+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20040e1394ba4fa784f7414067a5a7bc"}} +{"capturedUtc":"2026-05-19T12:03:38.164796+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7bf94e010e69492382c7550e638755bc"}} +{"capturedUtc":"2026-05-19T12:03:58.410443+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"87f261b58b8e4c51aad30e445310e69e"}} +{"capturedUtc":"2026-05-19T12:04:19.2474076+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e490ab2ee17f45f39c246168aab08103"}} +{"capturedUtc":"2026-05-19T12:04:40.4275269+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a148fc3ed06049d3b4c93e041bb2f637"}} +{"capturedUtc":"2026-05-19T12:05:02.4844085+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c38c786a19c2417bb811973d108c6c81"}} +{"capturedUtc":"2026-05-19T12:05:22.6500066+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"46465db340a9463997afd95dbb0ea612"}} +{"capturedUtc":"2026-05-19T12:05:43.5519596+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"43119fb7f82d452c9ba0ac6c381b8701"}} +{"capturedUtc":"2026-05-19T12:06:03.6526408+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e84690f382024510b1039e3792858b4a"}} +{"capturedUtc":"2026-05-19T12:06:23.7376798+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"716e659bda5247deb68480cb90e81e9b"}} +{"capturedUtc":"2026-05-19T12:06:45.2287989+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2cb9a3c1713a44deaa3bd1dda307b89f"}} +{"capturedUtc":"2026-05-19T12:07:05.8297013+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e52e92aecc7f485a8e40aa1ce4b7e8bd"}} +{"capturedUtc":"2026-05-19T12:07:25.9959261+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c9d814fb92443e08907959ae1c80ea5"}} +{"capturedUtc":"2026-05-19T12:07:46.1764314+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9b60622d1f34955b02a14c264e0a5e5"}} +{"capturedUtc":"2026-05-19T12:08:12.0709156+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f0da6ed5a9d34ad087e142e230bb21ad"}} +{"capturedUtc":"2026-05-19T12:08:32.1644999+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd161389161f4a36874cc0d6a81949c8"}} +{"capturedUtc":"2026-05-19T12:08:53.1767024+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"171e9bb10a2d4287ae65784f3efdd8e9"}} +{"capturedUtc":"2026-05-19T12:09:13.7169646+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f41fd3b3a27f4038ae1560a6ce082196"}} +{"capturedUtc":"2026-05-19T12:09:34.2775306+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f68d174b3bad482c9fb48876fbd64359"}} +{"capturedUtc":"2026-05-19T12:09:54.3866666+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1fe32458e82b42e5bc0f4c2d254e484d"}} +{"capturedUtc":"2026-05-19T12:10:15.3425494+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20dda8c1876b40bf9940170361c16562"}} +{"capturedUtc":"2026-05-19T12:10:36.3597092+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d43f9cb423954f0f8449e2c6ebe0de37"}} +{"capturedUtc":"2026-05-19T12:10:56.4616367+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8251318cd8d849cb8cb814654c16b654"}} +{"capturedUtc":"2026-05-19T12:11:16.5349789+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b06b7914eee64013a4e7383bfbd0a31a"}} +{"capturedUtc":"2026-05-19T12:11:37.5644334+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"362d927815944bb2b5eab5bd37fdc90d"}} +{"capturedUtc":"2026-05-19T12:11:58.5919848+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a896992df83f4331a1415d4d0e81e4d7"}} +{"capturedUtc":"2026-05-19T12:12:18.7778708+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0081efa23de94c98bf24a98b7572da74"}} +{"capturedUtc":"2026-05-19T12:12:39.670961+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6f84f18b51e143cc96efa8698d833be8"}} +{"capturedUtc":"2026-05-19T12:13:00.7485305+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"422da33b9e5f497e8b43322ee82013e6"}} +{"capturedUtc":"2026-05-19T12:13:21.8184989+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f082f62cb80e4aac9f4139af7201737e"}} +{"capturedUtc":"2026-05-19T12:13:41.9355379+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"683371096be94077b1413855325d1242"}} +{"capturedUtc":"2026-05-19T12:14:02.8936977+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c903cadd480424c8e12816eab6e125d"}} +{"capturedUtc":"2026-05-19T12:14:23.0585668+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"908b27f6754a4d52898244cef7c62f76"}} +{"capturedUtc":"2026-05-19T12:14:43.6859315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd0494aa39214a8eae2adf1b4af8a76d"}} +{"capturedUtc":"2026-05-19T12:15:05.0830036+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29a89ff732ea4b32ae75ae8cb39f7c44"}} +{"capturedUtc":"2026-05-19T12:15:25.1793545+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e9ec283f00084570845ef0a250eea64e"}} +{"capturedUtc":"2026-05-19T12:15:46.2059377+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f0fa06b00de408bbfb964ad6f6b4f12"}} +{"capturedUtc":"2026-05-19T12:16:06.3560483+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"069fe520816c40e095d95e892dfe8555"}} +{"capturedUtc":"2026-05-19T12:16:27.2679071+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39af5d8871fb415b80597881ce3b581c"}} +{"capturedUtc":"2026-05-19T12:16:47.3928524+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2b7b4005e52c42f2a03cf6cf702d4794"}} +{"capturedUtc":"2026-05-19T12:17:09.342669+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be2b7cc95d884282a690b5cbef36d580"}} +{"capturedUtc":"2026-05-19T12:17:30.5426164+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5779017607c34d32971003cf92c71c43"}} +{"capturedUtc":"2026-05-19T12:17:51.511041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"82d9c45caab34df892fdd2f5d9bd4f36"}} +{"capturedUtc":"2026-05-19T12:18:12.8415988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"666e17090e894e5e92bfcea92000777a"}} +{"capturedUtc":"2026-05-19T12:18:33.5599619+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee390b2cc14a421a9f01ce7cb3011d4e"}} +{"capturedUtc":"2026-05-19T12:18:53.8363056+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b2aa19dc4e6b48a4a49ce66018fbdf10"}} +{"capturedUtc":"2026-05-19T12:19:14.7184832+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae344b7056034b129675694b08d01e23"}} +{"capturedUtc":"2026-05-19T12:19:34.7968933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c461f5b5b46840e5984f388898295c63"}} +{"capturedUtc":"2026-05-19T12:19:55.7965401+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e1ac80cd60d4063ab3fb3d422bab3fc"}} +{"capturedUtc":"2026-05-19T12:20:16.8165611+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3874c8ca81894d4ca50940bbae05ffda"}} +{"capturedUtc":"2026-05-19T12:20:37.8427279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e8d8d53897f4817b950d7f12930f70f"}} +{"capturedUtc":"2026-05-19T12:20:57.9954499+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b28d585e06444c378ea0d47f9696def9"}} +{"capturedUtc":"2026-05-19T12:21:18.9870411+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9c58183e3404c458a7dad76fee6efcf"}} +{"capturedUtc":"2026-05-19T12:21:39.1213051+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1d86fda21fc84f53aae3d9dc5f2401ad"}} +{"capturedUtc":"2026-05-19T12:22:00.097444+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5074cab32cfd40338af22d6c5bd0442b"}} +{"capturedUtc":"2026-05-19T12:22:20.19169+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a52a461980a6496e94de9826b3c86792"}} +{"capturedUtc":"2026-05-19T12:22:40.250862+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d55e29dce6d14047ab57720aa6b69851"}} +{"capturedUtc":"2026-05-19T12:22:40.256621+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eee712ded2ae4d9497fc4b65bb078cd9"}} +{"capturedUtc":"2026-05-19T12:23:01.2829531+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d1ed2c4be96444799d81668c3026e53d"}} +{"capturedUtc":"2026-05-19T12:23:26.4878168+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7ee0a0cf01a246fab453ebddda823f0b"}} +{"capturedUtc":"2026-05-19T12:23:47.3896633+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a987c579d9d48c49feebd7149f43445"}} +{"capturedUtc":"2026-05-19T12:24:07.4800259+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"94e82586818b4d198a317d8cfd2977b0"}} +{"capturedUtc":"2026-05-19T12:24:27.5668877+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16fe06f9e3bf4f93be5113f015beb292"}} +{"capturedUtc":"2026-05-19T12:24:48.5264212+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1602778d7dbe4426868f9889bcc29dac"}} +{"capturedUtc":"2026-05-19T12:25:08.6089527+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b7dadd1f42b54a828baf9d58e9c8fc7d"}} +{"capturedUtc":"2026-05-19T12:25:28.6868854+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee6ceefcfeac40c1b9175f4d9386a56d"}} +{"capturedUtc":"2026-05-19T12:25:48.7694557+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b975e321cd3d416a9e9f6caf6291133e"}} +{"capturedUtc":"2026-05-19T12:26:09.7279222+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae21e6e33faa4c31a64c5b3a3c6b30fc"}} +{"capturedUtc":"2026-05-19T12:26:29.810977+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"791e06823cde4600bd828c3abb4cd763"}} +{"capturedUtc":"2026-05-19T12:26:50.7925069+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bdb41464524c4434965b472e8cb24f0d"}} +{"capturedUtc":"2026-05-19T12:27:10.8819967+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b22bbb84ad9c4d11a42b5045192090ac"}} +{"capturedUtc":"2026-05-19T12:27:31.4894297+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a8cbd93535d486c93115c8ed535aa56"}} +{"capturedUtc":"2026-05-19T12:27:52.0181192+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4933a06e92a24bcd9b131a9e8efdfa78"}} +{"capturedUtc":"2026-05-19T12:28:12.1139759+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75f1dc0ebe3743f388f8bd1d04e44809"}} +{"capturedUtc":"2026-05-19T12:28:32.1789219+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a13496e98e4848d89b3e19e6b25b04bb"}} +{"capturedUtc":"2026-05-19T12:28:53.194447+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f8887a6b75434c6db8e26655ed9dcf8b"}} +{"capturedUtc":"2026-05-19T12:29:13.815573+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90ef2623ac224ae8998dae3050024ae4"}} +{"capturedUtc":"2026-05-19T12:29:39.2849643+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"37f9a1a493ee4f2cb56dd408e90e8a07"}} +{"capturedUtc":"2026-05-19T12:29:59.4269785+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42574afc2f00473298b04756a0cf763d"}} +{"capturedUtc":"2026-05-19T12:30:13.594147+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6be30c8e022e4f0f8496d1c398a72fd4"}} +{"capturedUtc":"2026-05-19T12:30:13.7873364+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb538a7cb88c4a98aaf7d763cb7930e1"}} +{"capturedUtc":"2026-05-19T12:30:19.5898876+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7dc077d30de14d829a9c330659643948"}} +{"capturedUtc":"2026-05-19T12:30:40.4088923+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b491d72eb89041d7be7189011ef3f8cc"}} +{"capturedUtc":"2026-05-19T12:30:40.4363175+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92f2ba10f82347c8ab82bff96f0f27dc"}} +{"capturedUtc":"2026-05-19T12:30:40.6435993+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"3fa51bd21b9e48269ebf9bc47948dfe4"}} +{"capturedUtc":"2026-05-19T12:31:00.5519131+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd5129bcc9fe4457ab4d8d8053bc3abf"}} +{"capturedUtc":"2026-05-19T12:31:21.5174735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4781bc52b58f44e39873b7c3a5e67361"}} +{"capturedUtc":"2026-05-19T12:31:41.745934+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b4d146ecb5c4fc4952e89ae97e9e8f6"}} +{"capturedUtc":"2026-05-19T12:32:02.6025338+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b383ee1fa44849708b5800e4a2a5deee"}} +{"capturedUtc":"2026-05-19T12:32:22.7545625+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"651f696e269c44a795aa2eae95a6a608"}} +{"capturedUtc":"2026-05-19T12:32:43.6867453+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c17575b518654c03beaeccf48e744c0e"}} +{"capturedUtc":"2026-05-19T12:33:03.7854452+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"445157b7c8d2468da2e94f28be73467c"}} +{"capturedUtc":"2026-05-19T12:33:23.8759309+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"87b965e8edeb40a8ba7ccb80b6d90ce9"}} +{"capturedUtc":"2026-05-19T12:33:44.8180447+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41428b1a27714fcb846d6470aa0eb497"}} +{"capturedUtc":"2026-05-19T12:34:04.9129306+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1c710bc54d5c4330ab09589c14766dd9"}} +{"capturedUtc":"2026-05-19T12:34:25.8849161+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"77ad1d89282242a89833c32825b30721"}} +{"capturedUtc":"2026-05-19T12:34:45.9645661+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1126ddf4ef424b92abfe4648345683ff"}} +{"capturedUtc":"2026-05-19T12:35:06.1479437+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"51e04c65f82d4e93bdb4a0e3ef6af484"}} +{"capturedUtc":"2026-05-19T12:35:27.0168687+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"34dcd9453ce94733aee501c76a22bbec"}} +{"capturedUtc":"2026-05-19T12:35:47.6681021+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8a41de07a34343529273a459edaee30e"}} +{"capturedUtc":"2026-05-19T12:36:08.1659088+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee7fb053140047aeb3c29772774fb75c"}} +{"capturedUtc":"2026-05-19T12:36:29.2318593+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1b0a3e6330144d1c8395c9a76170f573"}} +{"capturedUtc":"2026-05-19T12:36:49.3449135+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ab0127e70bc4f898e8b710c694e69f4"}} +{"capturedUtc":"2026-05-19T12:37:09.4090197+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"72408f2af4f849c8a3a8cb4ec47038b4"}} +{"capturedUtc":"2026-05-19T12:37:30.3269461+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ae04282a4ec4d12bad7f09e46382b86"}} +{"capturedUtc":"2026-05-19T12:37:51.420434+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14803ad5a69d4321a3ad2d28878bfd7b"}} +{"capturedUtc":"2026-05-19T12:38:12.2864407+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8d55301ac1c4689b9e49ff24ab7bfdc"}} +{"capturedUtc":"2026-05-19T12:38:32.5485157+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35d77748781e41e7a989982f8075b8db"}} +{"capturedUtc":"2026-05-19T12:38:53.5444351+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"475f0ad72c27404a86dd2322081a1b9e"}} +{"capturedUtc":"2026-05-19T12:39:13.621519+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"195fea11b3f74229bfd5dd2ca92ee05f"}} +{"capturedUtc":"2026-05-19T12:39:33.6999598+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f487ec03525418997631c102babba2b"}} +{"capturedUtc":"2026-05-19T12:39:55.772712+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a12c4b07a7c34f1095f998f9be65f14f"}} +{"capturedUtc":"2026-05-19T12:40:16.7754622+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a81ab2953c049c2ac06e29885f86ee1"}} +{"capturedUtc":"2026-05-19T12:40:36.9009736+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff4f31748244451e9ab105639cc51411"}} +{"capturedUtc":"2026-05-19T12:40:57.9900347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba5f2d1562fd4c41a3d78b124c9bfc03"}} +{"capturedUtc":"2026-05-19T12:41:18.9649274+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"93d184aff99d42f784190be3fd6d9fd6"}} +{"capturedUtc":"2026-05-19T12:41:39.9449969+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"36f2e38a041f47939b289e35c496e12a"}} +{"capturedUtc":"2026-05-19T12:42:01.4516392+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8f3b023f680848cba594cd5986d739c2"}} +{"capturedUtc":"2026-05-19T12:42:22.0653371+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5b36c8007b524066acdf6f1e15d57bbf"}} +{"capturedUtc":"2026-05-19T12:42:42.1605648+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71ee714cd96f45bbb70f096518213a3b"}} +{"capturedUtc":"2026-05-19T12:43:03.1631296+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"49a5afaf84f94bc295071a492a57c1a1"}} +{"capturedUtc":"2026-05-19T12:43:23.985899+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4272a7d06276474eb34327ff71a1212a"}} +{"capturedUtc":"2026-05-19T12:43:44.056731+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"558d9d84491c4f0c8a0a312b255bcc32"}} +{"capturedUtc":"2026-05-19T12:44:04.5730805+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4e5f7adecd4b437c84d4f87992d8ef59"}} +{"capturedUtc":"2026-05-19T12:44:25.3236131+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4b1e2df0f9b1456dabf8b407042ab8fc"}} +{"capturedUtc":"2026-05-19T12:44:46.970238+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f482e88935584fb98aa213891816827c"}} +{"capturedUtc":"2026-05-19T12:45:07.4027118+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2e9b6f1c00d341fc8a8c376357eb2549"}} +{"capturedUtc":"2026-05-19T12:45:27.5037429+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75d3afdb68f74705aed049837e5575d6"}} +{"capturedUtc":"2026-05-19T12:45:48.4800035+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f1dc4f18029a41a39a759001788959af"}} +{"capturedUtc":"2026-05-19T12:46:09.9146466+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"586f32da437e409f8d97857b2c27fe46"}} +{"capturedUtc":"2026-05-19T12:46:30.568613+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"203e168d0c6a456ba03080f5535b4ced"}} +{"capturedUtc":"2026-05-19T12:46:50.6420766+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fbe1bd6235b2451186df4858fe3c421a"}} +{"capturedUtc":"2026-05-19T12:47:10.7199597+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"539cf0340cd14d0da26932cffb1649bd"}} +{"capturedUtc":"2026-05-19T12:47:31.6965547+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"978318cc3401459dacf6fb27730ad977"}} +{"capturedUtc":"2026-05-19T12:47:51.7747637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff7dba3e6ee44d6c96d4c1d644f4ba05"}} +{"capturedUtc":"2026-05-19T12:48:13.6867324+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1696c06aaf93423b803b63308915c8c6"}} +{"capturedUtc":"2026-05-19T12:48:33.8807043+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d6c263fdfc524d14a15413f593d2e0bb"}} +{"capturedUtc":"2026-05-19T12:48:53.9496291+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9bbdcd23bcc54a658f9a39544110d45f"}} +{"capturedUtc":"2026-05-19T12:49:14.0991025+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"de4c470662714913813de45d9130d8ee"}} +{"capturedUtc":"2026-05-19T12:49:34.2028242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c4561652e7934f8b9def617d39318221"}} +{"capturedUtc":"2026-05-19T12:49:54.2969871+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6760642cfedf4e19b71d8917b9135a03"}} +{"capturedUtc":"2026-05-19T12:50:15.0719788+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"31ed007275e748499dbabd418a188795"}} +{"capturedUtc":"2026-05-19T12:50:35.1878284+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5eae23a8ecc346b7a7d61163af5ee16f"}} +{"capturedUtc":"2026-05-19T12:50:55.2646536+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0406e2ffbab14112be02ad2dd8313f6a"}} +{"capturedUtc":"2026-05-19T12:51:16.2615458+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2c57ec0405f94e8c9422cfa529f5721b"}} +{"capturedUtc":"2026-05-19T12:51:36.3607463+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95aa3b4a661c4a86bdf50795f7de3d25"}} +{"capturedUtc":"2026-05-19T12:51:56.4641008+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5fd1a21a400e4b119dc176be4149ba99"}} +{"capturedUtc":"2026-05-19T12:52:17.3846509+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c521a1635a80445c9daec36629d9539f"}} +{"capturedUtc":"2026-05-19T12:52:37.4819914+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b1f22ff858a044e78ca2536257f22610"}} +{"capturedUtc":"2026-05-19T12:52:57.5634881+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd8c42fe140d4f9589ac2663829862e4"}} +{"capturedUtc":"2026-05-19T12:53:18.5310383+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd235e7f8ae844ba9aeb729c55dfab2e"}} +{"capturedUtc":"2026-05-19T12:53:39.5690617+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d373a622fcb742f8b10d2a71a3cd4717"}} +{"capturedUtc":"2026-05-19T12:53:59.6510844+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9d1f29eabe74144aeb7a78499259719"}} +{"capturedUtc":"2026-05-19T12:54:20.636025+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"564606f2ee39491487e2bf710b9f63e3"}} +{"capturedUtc":"2026-05-19T12:54:40.7209234+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9ae36b862fdf44478176e2ca398b04e7"}} +{"capturedUtc":"2026-05-19T12:55:00.8307284+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"367341874acf4abc890621b5fa7dbee0"}} +{"capturedUtc":"2026-05-19T12:55:21.815972+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2882bc41453f4603809d6e848d2ff78d"}} +{"capturedUtc":"2026-05-19T12:55:41.9098022+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a127a9b6a8ad41f49bffffd82f57f51a"}} +{"capturedUtc":"2026-05-19T12:56:02.8629587+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2047623875304e4db5e81431e570c2f8"}} +{"capturedUtc":"2026-05-19T12:56:22.932892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90433c835b384a3e8da792f9716df148"}} +{"capturedUtc":"2026-05-19T12:56:43.0428866+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a27f7be75d84f8f8e95541fb11f0d02"}} +{"capturedUtc":"2026-05-19T12:57:04.0634812+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"905aeff450bf4ee6823d728a3aa90507"}} +{"capturedUtc":"2026-05-19T12:57:24.1619165+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c162c589bbe7407eb891bc9efa8bf1f6"}} +{"capturedUtc":"2026-05-19T12:57:49.4899714+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"31a33d537e564e6bab19f6c1cfc4dc63"}} +{"capturedUtc":"2026-05-19T12:58:11.1454122+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"745ac31642fa495d807b6890a726d8cd"}} +{"capturedUtc":"2026-05-19T12:58:31.2435291+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7192650f90048899059c425d831ad51"}} +{"capturedUtc":"2026-05-19T12:58:51.3475666+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2e0e317942c9450980e7bd4d9ce0a667"}} +{"capturedUtc":"2026-05-19T12:59:12.3226126+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6e8d973fcff4c038098cfe7121c76c4"}} +{"capturedUtc":"2026-05-19T12:59:32.5685565+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f49c13b2e45b4dbb9717f6bd524f350d"}} +{"capturedUtc":"2026-05-19T12:59:53.3995036+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8664dd131e7741818fac2f0f1b6f815c"}} +{"capturedUtc":"2026-05-19T13:00:13.4985674+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6e8babf3b81b40f880a86d7e9c4cd74a"}} +{"capturedUtc":"2026-05-19T13:00:33.5889485+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"65dd5851233048b2847feb9af87caa2e"}} +{"capturedUtc":"2026-05-19T13:00:51.5629387+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f8604784b9d4f8dac344b5c51211dbb"}} +{"capturedUtc":"2026-05-19T13:00:51.7619538+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"4c910519596a4c14a1ad56565f9fd25e"}} +{"capturedUtc":"2026-05-19T13:00:54.2637561+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45c39e022cb24c22bd2172aee377aad3"}} +{"capturedUtc":"2026-05-19T13:01:14.5758678+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6e0c53999d4b409aa862fa803c589b39"}} +{"capturedUtc":"2026-05-19T13:01:34.6526718+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"03ff3cbb8c034d1d827cc9ccfc966853"}} +{"capturedUtc":"2026-05-19T13:01:54.723827+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c67dc46c4a76406d8c119de33a3f2729"}} +{"capturedUtc":"2026-05-19T13:02:14.794432+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"43af163dae134b45813217252f686033"}} +{"capturedUtc":"2026-05-19T13:02:35.742955+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"54ca82f6ca324af192a3d015b9434d12"}} +{"capturedUtc":"2026-05-19T13:02:55.8706056+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f3a47e5e9364731a5b50ca36202f02b"}} +{"capturedUtc":"2026-05-19T13:03:15.9979696+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92d96825bd7c41ca89c23da7691a59f0"}} +{"capturedUtc":"2026-05-19T13:03:36.9436668+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f5cef70fc91a4bf38a469ae2b4ffe239"}} +{"capturedUtc":"2026-05-19T13:03:57.0234943+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7be9133b38fa41f3948e3f4dfd7829a4"}} +{"capturedUtc":"2026-05-19T13:04:17.1117269+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9e93c7082ca04d92bff7120ca0d78c4b"}} +{"capturedUtc":"2026-05-19T13:04:38.0624773+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f99d80c7cdc04fedbcb5c76e7a88a4df"}} +{"capturedUtc":"2026-05-19T13:04:58.1815763+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"018d602b75c944e0835d465e386bf67c"}} +{"capturedUtc":"2026-05-19T13:05:19.169643+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cc80d122610748ab80c9e00e1af9c232"}} +{"capturedUtc":"2026-05-19T13:05:40.1804492+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ad13e26a269442b39284544d352d30f3"}} +{"capturedUtc":"2026-05-19T13:06:00.3196213+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"493078b2684e4cb59a6e38ea75d5a1f4"}} +{"capturedUtc":"2026-05-19T13:06:21.2826655+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c5395d1ccc35442cbcef6f8226b6cdcc"}} +{"capturedUtc":"2026-05-19T13:06:41.3629492+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e452f03e2e5548e1bb80bea308cfd8e3"}} +{"capturedUtc":"2026-05-19T13:07:01.5014668+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"897470606e954c45a809045a54125645"}} +{"capturedUtc":"2026-05-19T13:07:22.4407892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"907eb1651e8143089d539795f292ebc0"}} +{"capturedUtc":"2026-05-19T13:07:42.5361021+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"78e9339337bd4fd8a2a9d54fe50a8394"}} +{"capturedUtc":"2026-05-19T13:08:03.526822+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ddd550965ac441cfa80db4b31365daf8"}} +{"capturedUtc":"2026-05-19T13:08:23.6038465+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b003612a23834a68adcefb08f0b78a28"}} +{"capturedUtc":"2026-05-19T13:08:43.7009435+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"783e92b1f270494e941d629278714426"}} +{"capturedUtc":"2026-05-19T13:09:03.7812614+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a710ec49a6a8490cbc0c8605c2d907df"}} +{"capturedUtc":"2026-05-19T13:09:24.2283185+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"85c74c2fa0e8413291a205d0f6c2b3e6"}} +{"capturedUtc":"2026-05-19T13:09:44.8450398+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3fe2a590f619453491b976e53a8f99e7"}} +{"capturedUtc":"2026-05-19T13:10:05.8699581+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"869c9c93a9314b07bcc44339a5b47f01"}} +{"capturedUtc":"2026-05-19T13:10:25.9654915+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a6f484f179b441949674bf24f586bbd4"}} +{"capturedUtc":"2026-05-19T13:10:46.8979714+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"794d897b37f94298a098f40d9d4d13c1"}} +{"capturedUtc":"2026-05-19T13:11:07.0335564+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"127ec503f3684da484cab403a21a9242"}} +{"capturedUtc":"2026-05-19T13:11:27.1795293+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d359ba1808ea49ae9aa735549b0788f7"}} +{"capturedUtc":"2026-05-19T13:11:48.1519285+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e412279782e349a4bbc25a7d92279b22"}} +{"capturedUtc":"2026-05-19T13:12:08.2309397+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75de9a57674747babdefbc4c42e0a1c4"}} +{"capturedUtc":"2026-05-19T13:12:28.3069366+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"474eab67336d433da8c1c86e410f5b77"}} +{"capturedUtc":"2026-05-19T13:12:49.2784254+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5d7aa25dc4bc47848aca0d6b7649d5dd"}} +{"capturedUtc":"2026-05-19T13:13:09.3496592+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7ba97e02ccb49ec881af17d391a9a15"}} +{"capturedUtc":"2026-05-19T13:13:30.348523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e49ccae35a146c8b2761bc0401c41b5"}} +{"capturedUtc":"2026-05-19T13:13:50.4269277+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"81e82b4bf0994c75aac921da50936a0b"}} +{"capturedUtc":"2026-05-19T13:14:11.4295107+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"00013fc048814e9eb1368b702001e3e5"}} +{"capturedUtc":"2026-05-19T13:14:32.47394+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3d0f1e85830f436893cbbbe51cb894aa"}} +{"capturedUtc":"2026-05-19T13:14:52.6266663+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11832cb646974293b201e52c554211ad"}} +{"capturedUtc":"2026-05-19T13:15:13.6220182+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a4142351b55425aa1aeb80320c27fd2"}} +{"capturedUtc":"2026-05-19T13:15:33.7915691+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd7893eb45d24a89b2f93fc7062992df"}} +{"capturedUtc":"2026-05-19T13:15:54.2655843+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"664b23aec2aa4bc6b017fdb1cf342db1"}} +{"capturedUtc":"2026-05-19T13:16:14.3558732+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7812d70359a646169ac0c67b7bd3745f"}} +{"capturedUtc":"2026-05-19T13:16:34.8319653+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"015d6390eb724af68a161fa0e2141826"}} +{"capturedUtc":"2026-05-19T13:16:54.9688982+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ad76607eabc7427582a8449c750f01a3"}} +{"capturedUtc":"2026-05-19T13:17:17.0160005+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c4cdd71f49a4c60ac8cb236b66e76b7"}} +{"capturedUtc":"2026-05-19T13:17:37.9939572+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12c686c01dc340e386c9229361e7df4d"}} +{"capturedUtc":"2026-05-19T13:17:59.0329509+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"01cbeb0d432d4d1992aeafe1b13f5e86"}} +{"capturedUtc":"2026-05-19T13:18:19.1437995+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"87ee2390e73b44578c7474a87c63ff47"}} +{"capturedUtc":"2026-05-19T13:18:40.1109283+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce3d720684ea42718318882ee8887e22"}} +{"capturedUtc":"2026-05-19T13:19:01.1499741+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"33aaae28b62b4d3c940ee740321b81f3"}} +{"capturedUtc":"2026-05-19T13:19:22.1875959+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df80a830884441b08700eefffc12869a"}} +{"capturedUtc":"2026-05-19T13:19:42.288788+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19768c6252cd49ada874bec3a2884768"}} +{"capturedUtc":"2026-05-19T13:20:02.3649462+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bf7e90645b4d4752896564250d3eb415"}} +{"capturedUtc":"2026-05-19T13:20:23.3085316+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f54b726adf104473bde48f9eccb03692"}} +{"capturedUtc":"2026-05-19T13:20:43.4078579+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"957cb08d13d64c6e971378077ecf731f"}} +{"capturedUtc":"2026-05-19T13:21:03.5573111+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b317ea75f0e44ffdac3e9e565799bf23"}} +{"capturedUtc":"2026-05-19T13:21:24.3595601+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b2fd0c34a1944b24ace6a7d1175dc72b"}} +{"capturedUtc":"2026-05-19T13:21:45.5669717+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a0a0e4e7e214832bd351c4e58977633"}} +{"capturedUtc":"2026-05-19T13:22:05.6486845+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3087d9fb9dfa412296142faa670e2a06"}} +{"capturedUtc":"2026-05-19T13:22:26.6436474+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"82253487f6f94f10bcdde1a1308cb036"}} +{"capturedUtc":"2026-05-19T13:22:46.716588+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d60c9ab55e04458cbd9b95560e2e0ebf"}} +{"capturedUtc":"2026-05-19T13:23:07.6756908+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd498b7abb1d4a58b3e432e3b1f5acee"}} +{"capturedUtc":"2026-05-19T13:23:29.663487+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64b8ffb1601c459aa1b8cbb65756c830"}} +{"capturedUtc":"2026-05-19T13:23:49.8919255+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35d4c10b01d249b0adfef70bece05c08"}} +{"capturedUtc":"2026-05-19T13:24:09.9910541+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1c683f2ca5344d73845ce839eee4c170"}} +{"capturedUtc":"2026-05-19T13:24:30.8916847+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"273004bc3cad46a58c133aeb2beca1ca"}} +{"capturedUtc":"2026-05-19T13:24:50.9619143+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9474d209deb4421392045298436697c6"}} +{"capturedUtc":"2026-05-19T13:25:11.0417817+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae587209dc6d498bb8ec9580bc76ba9a"}} +{"capturedUtc":"2026-05-19T13:25:32.3048998+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a8fb3f5b48940ae8026183ed9c24afa"}} +{"capturedUtc":"2026-05-19T13:25:53.0915673+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cbc526203f0b477ab97bc66734786ead"}} +{"capturedUtc":"2026-05-19T13:26:13.1970131+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f7a79170f9b4568b0e7c26daae182d5"}} +{"capturedUtc":"2026-05-19T13:26:34.177496+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"197fb68e01614633b08c770b22bec24f"}} +{"capturedUtc":"2026-05-19T13:26:54.2840024+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b20001f263da41f185054c6f14ea3541"}} +{"capturedUtc":"2026-05-19T13:27:15.303564+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b29f750dc7a144cf8b047ca5f479481d"}} +{"capturedUtc":"2026-05-19T13:27:37.2904979+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1df698414d544bb4a16b50dc0121e6e3"}} +{"capturedUtc":"2026-05-19T13:27:58.4010116+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b61fd1db2874b3bb9a0053f6ce6559a"}} +{"capturedUtc":"2026-05-19T13:28:19.3774757+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"549a65be1a6a4f03baf2f880f52a735b"}} +{"capturedUtc":"2026-05-19T13:28:39.4577951+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"591737378eb347dcab4c1f42ed0497fd"}} +{"capturedUtc":"2026-05-19T13:29:00.4689566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc4216b2b61f4d69a5a341d87442c609"}} +{"capturedUtc":"2026-05-19T13:29:20.5419954+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"40518bba08334b699ab3012c7240e227"}} +{"capturedUtc":"2026-05-19T13:29:41.8979319+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"938b90380ea541f68a26665b433a34d0"}} +{"capturedUtc":"2026-05-19T13:30:02.6048107+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d26aaac910c3489f80e1b16e94b4057d"}} +{"capturedUtc":"2026-05-19T13:30:22.6819076+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e4b460ca9fd24a748191f6b0eddb2126"}} +{"capturedUtc":"2026-05-19T13:30:42.7549835+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ab48c93c12734653b3249d490ffb92bc"}} +{"capturedUtc":"2026-05-19T13:31:01.7473429+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75f7bd87721847ba86beb837fe4dc49f"}} +{"capturedUtc":"2026-05-19T13:31:01.9515527+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"ff82b69cab72401a9323b90b71695a58"}} +{"capturedUtc":"2026-05-19T13:31:03.7353928+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9cffa6f9e96497695be4fd9871f62f3"}} +{"capturedUtc":"2026-05-19T13:31:23.8153821+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d86a2ed92aa947088ffead59f792e1e7"}} +{"capturedUtc":"2026-05-19T13:31:44.7839064+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee7881a762d9479d91f222c58677e628"}} +{"capturedUtc":"2026-05-19T13:32:05.0069021+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e4000c884b46442a964bc98220752750"}} +{"capturedUtc":"2026-05-19T13:32:25.9548297+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4d70df6c26384a8e9103d632b1dfcb40"}} +{"capturedUtc":"2026-05-19T13:32:46.0385133+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc70a22748e24016aa93e042129c5155"}} +{"capturedUtc":"2026-05-19T13:33:07.0963221+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e0564e07dccd4182912c5fa54920050f"}} +{"capturedUtc":"2026-05-19T13:33:27.1839704+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d0df7d9872024f08a99f31b49bbed4eb"}} +{"capturedUtc":"2026-05-19T13:33:49.481523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"01c05e1d57df43dfb698d5dc4d9cacef"}} +{"capturedUtc":"2026-05-19T13:34:10.1729899+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0cca4fc7fbad4ded9918ae8095f13bbd"}} +{"capturedUtc":"2026-05-19T13:34:30.2539329+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fcb613d4dcd84891817bcf3d2879eac0"}} +{"capturedUtc":"2026-05-19T13:34:51.2488869+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f95aa9c86285412e87e9559c32062d9c"}} +{"capturedUtc":"2026-05-19T13:35:11.3445113+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"85beda6be93d4dc3911fc3db3ba65f75"}} +{"capturedUtc":"2026-05-19T13:35:32.3468898+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"62d7f8b8876c4ca591b9c7bff4c04273"}} +{"capturedUtc":"2026-05-19T13:35:53.677311+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b96e2a7adb74c43bb73c5038b64bb6c"}} +{"capturedUtc":"2026-05-19T13:36:14.3505128+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0c10c3da0a76484c8d2b6752d78d4093"}} +{"capturedUtc":"2026-05-19T13:36:35.5136564+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7103a0e17f0f4f8389618d6c650914b2"}} +{"capturedUtc":"2026-05-19T13:36:55.5937469+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ffec8ec4b8614c028d21951163a1859c"}} +{"capturedUtc":"2026-05-19T13:37:15.67298+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d24996ba3e2f4a75a13a09038e3b27a6"}} +{"capturedUtc":"2026-05-19T13:37:35.7651687+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e7de774a9624a2aa01cf618e53ffeb9"}} +{"capturedUtc":"2026-05-19T13:37:56.7326609+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"03acbd16fa7d4642ba81df75422f1ca2"}} +{"capturedUtc":"2026-05-19T13:38:16.8857183+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d039bf89307041c79c43c557fd88a8e4"}} +{"capturedUtc":"2026-05-19T13:38:37.0714558+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d36f52311f9a4675aaf74065647e2ece"}} +{"capturedUtc":"2026-05-19T13:38:58.0376652+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f09559e89284f3f9224ec726252426f"}} +{"capturedUtc":"2026-05-19T13:39:18.1146946+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cb3e3ffe54b4474d968a1861494e1f09"}} +{"capturedUtc":"2026-05-19T13:39:43.2326433+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e37dc4a7087f4c8998b47ed96bdf16e3"}} +{"capturedUtc":"2026-05-19T13:40:04.4553626+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7d8acac31b44a63b2545f7901eb088d"}} +{"capturedUtc":"2026-05-19T13:40:25.1375429+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bbb08d8b61e049aaac76c3948ff1e26d"}} +{"capturedUtc":"2026-05-19T13:40:45.3009994+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"66e5779780014bf68e7e33a8eab7bb41"}} +{"capturedUtc":"2026-05-19T13:41:05.442564+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76db57e76aa64cee92488a20eccf150c"}} +{"capturedUtc":"2026-05-19T13:41:25.544656+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd934ef0486744cba3b35231e83c81dc"}} +{"capturedUtc":"2026-05-19T13:41:46.5329296+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b6c2662596c04e2b8298b295a0e73b22"}} +{"capturedUtc":"2026-05-19T13:42:11.6116154+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d2984ee98930459c8705ed8811e55dc2"}} +{"capturedUtc":"2026-05-19T13:42:31.7462305+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c621055b4e045bc9c0b37f577934939"}} +{"capturedUtc":"2026-05-19T13:42:52.6605142+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15cda66ea2694947b56e019760690f5a"}} +{"capturedUtc":"2026-05-19T13:43:12.7420129+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3613553ba9f04965bcfd077fa028fa3c"}} +{"capturedUtc":"2026-05-19T13:43:32.8319043+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7f53ad615afa4a4ea65b4df74cc39afa"}} +{"capturedUtc":"2026-05-19T13:43:53.7797245+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"952c5121c4b04458a234d82754a42fac"}} +{"capturedUtc":"2026-05-19T13:44:15.1134186+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"661d7a940b2b493e9c0c44ecb9bebbe6"}} +{"capturedUtc":"2026-05-19T13:44:36.0269744+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b78e7596326a42f39c3c20bec0fb18d8"}} +{"capturedUtc":"2026-05-19T13:44:56.9817264+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b4a75ab8821d431992c632e0de01e858"}} +{"capturedUtc":"2026-05-19T13:45:17.1239005+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"596b15e18d9b448d81ec6cf0eb284cb6"}} +{"capturedUtc":"2026-05-19T13:45:38.054527+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f0c7e1e53f8a42cb9ef91317b8e31d2f"}} +{"capturedUtc":"2026-05-19T13:45:58.2310431+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b83063c7b2d409d91b87649cb7839f0"}} +{"capturedUtc":"2026-05-19T13:46:19.1628668+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05576efda7294f5fa90a34fbaaaaface"}} +{"capturedUtc":"2026-05-19T13:46:39.2937685+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"799c81466ee24fda877e561d54361256"}} +{"capturedUtc":"2026-05-19T13:47:00.2468803+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7f52dd5ccb104de1a85467c3a2d40428"}} +{"capturedUtc":"2026-05-19T13:47:20.3449041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b703bce3eca04d1c9342bddc1299ac2e"}} +{"capturedUtc":"2026-05-19T13:47:41.3237569+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8cc97aa9e4264f89a90a768dd00e3766"}} +{"capturedUtc":"2026-05-19T13:48:01.423913+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0077d759f34c4078a625722ae22c14dc"}} +{"capturedUtc":"2026-05-19T13:48:23.43384+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6dee4aa53706428c959e47ca6b0969c1"}} +{"capturedUtc":"2026-05-19T13:48:43.5524724+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"faff061b74c1401a80758d0a9dda1513"}} +{"capturedUtc":"2026-05-19T13:49:04.391476+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5fc41429829c4513865f862c792df033"}} +{"capturedUtc":"2026-05-19T13:49:24.5689778+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"327c99b6f3f142bdb3fc446610569c26"}} +{"capturedUtc":"2026-05-19T13:49:44.678462+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff0beb3ba75341be89e949683002da33"}} +{"capturedUtc":"2026-05-19T13:50:05.6385945+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae7fae53bed744afb2da112d166c3864"}} +{"capturedUtc":"2026-05-19T13:50:30.6888513+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a61adc235724528801a6b17ef29aec3"}} +{"capturedUtc":"2026-05-19T13:50:50.8085553+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19209fd98b4e448da385003e25bbb9de"}} +{"capturedUtc":"2026-05-19T13:51:11.7766407+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"03529872172d4c8dab1c67a75febc7c9"}} +{"capturedUtc":"2026-05-19T13:51:31.9625098+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"93f481a8db194dc797131499aeb271a3"}} +{"capturedUtc":"2026-05-19T13:51:52.8617446+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1f9cb134846a4f7aa82827ce75955d01"}} +{"capturedUtc":"2026-05-19T13:52:12.9979274+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0d601957dd7a4260a2c2b811ff152988"}} +{"capturedUtc":"2026-05-19T13:52:33.0869782+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"63836aa30dd84e51a2caaa16c9355f93"}} +{"capturedUtc":"2026-05-19T13:52:54.0395166+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ab1c3471c74f4e50bc12afa581044357"}} +{"capturedUtc":"2026-05-19T13:53:14.1579155+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"878cd8bb71254170a7b656cec9833cb3"}} +{"capturedUtc":"2026-05-19T13:53:34.4259573+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d15aa18b1c9c430e9c31c2bc46958af0"}} +{"capturedUtc":"2026-05-19T13:53:54.5204786+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aae56a4d0a154535a1c9ab40a843878d"}} +{"capturedUtc":"2026-05-19T13:54:15.2015729+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1193af9b881c4d8ebca37defcfe9f62b"}} +{"capturedUtc":"2026-05-19T13:54:36.2787653+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a1936c0db5e34dc2982e08762c5a8dc7"}} +{"capturedUtc":"2026-05-19T13:54:56.3727182+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b5f85ada913642e09817fc926cc9b15e"}} +{"capturedUtc":"2026-05-19T13:55:17.3444374+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c0575c2ad2f439ba6421eab72471d25"}} +{"capturedUtc":"2026-05-19T13:55:37.4755432+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a91c79a16244442f9e92414734e47b21"}} +{"capturedUtc":"2026-05-19T13:55:58.4567482+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"324f345012b34af6a1cc9f9d269173d1"}} +{"capturedUtc":"2026-05-19T13:56:18.5710318+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"17d23b3991ef48b38928e98f8d0777b2"}} +{"capturedUtc":"2026-05-19T13:56:38.857737+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df85c18b2e06468487ffac11be29c85c"}} +{"capturedUtc":"2026-05-19T13:56:59.6241362+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a7ee73dc29cc4e9ea5b815ba30ced474"}} +{"capturedUtc":"2026-05-19T13:57:20.6548175+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0a0a95843db4a8583f8e0696e2ae86f"}} +{"capturedUtc":"2026-05-19T13:57:41.7499156+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c24a7a4e9ffa40bfb458b88e1b5ede66"}} +{"capturedUtc":"2026-05-19T13:58:02.7137282+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3625729aedd64daa9338754b4539df0c"}} +{"capturedUtc":"2026-05-19T13:58:23.757024+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6984386076bb4b53af11381fcd1e5f2f"}} +{"capturedUtc":"2026-05-19T13:58:44.7396278+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e2955e2ee5cc4d37ba1861c94c201ca6"}} +{"capturedUtc":"2026-05-19T13:59:04.8487869+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6b49a34495d43fe9f72a6ace500204b"}} +{"capturedUtc":"2026-05-19T13:59:24.9225388+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c1c9e65b08ba4d8e946adede3f376de3"}} +{"capturedUtc":"2026-05-19T13:59:45.0070157+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e351e242c64846dd898030e302da8a75"}} +{"capturedUtc":"2026-05-19T14:00:05.9767659+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64b9044519be4d7fbf7dec901c9da39e"}} +{"capturedUtc":"2026-05-19T14:00:27.0205171+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"594476efa3b14539b8c1e432228dc461"}} +{"capturedUtc":"2026-05-19T14:00:31.026959+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e5105ad5f96a4d7cb4ada2293a22d1e9"}} +{"capturedUtc":"2026-05-19T14:00:49.0231112+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"94034400a1ff40d7b1c028a23a9efbd6"}} +{"capturedUtc":"2026-05-19T14:01:09.1014387+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dac3a81e4a3f42fcb08a626f189c08fb"}} +{"capturedUtc":"2026-05-19T14:01:12.2854615+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6baa82184394453a945c9cda2d361661"}} +{"capturedUtc":"2026-05-19T14:01:12.4873939+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"0c5d437944e9484cb7e3699143903314"}} +{"capturedUtc":"2026-05-19T14:01:29.2195999+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6b3c462fb67d4278a3864216348e7597"}} +{"capturedUtc":"2026-05-19T14:01:49.4988249+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1f5a57a12bfd441d8bb714798ebc8033"}} +{"capturedUtc":"2026-05-19T14:02:10.2216964+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"02de49d72fe54da29d6db41da33130d8"}} +{"capturedUtc":"2026-05-19T14:02:30.3057324+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b5f3f03524f24ec5a3e928875ea7b506"}} +{"capturedUtc":"2026-05-19T14:02:53.3530585+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"98b712b26fd04da9b277e806d340f47f"}} +{"capturedUtc":"2026-05-19T14:03:13.5614523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2382aa95adb8474fb003548d251d4a76"}} +{"capturedUtc":"2026-05-19T14:03:34.4519299+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"78a1b9c81f6e4d8ab55c5870e5d5f820"}} +{"capturedUtc":"2026-05-19T14:03:54.5479741+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d40422db52e4437a828bc1275eeff775"}} +{"capturedUtc":"2026-05-19T14:04:14.7365004+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"afd6c918be6e42e998a6081c02d4d09b"}} +{"capturedUtc":"2026-05-19T14:04:35.6379219+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4561d190d5284898aa13c0926a47497b"}} +{"capturedUtc":"2026-05-19T14:04:58.7208669+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"750ef02f4b114e19b3dfd6abe4d16734"}} +{"capturedUtc":"2026-05-19T14:05:18.79101+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a08f1bd5446c44b18cb31b52f985a4b9"}} +{"capturedUtc":"2026-05-19T14:05:38.8819242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"feaf1a16f4cd4db1ba3d8da80b00bd76"}} +{"capturedUtc":"2026-05-19T14:05:59.8117203+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b20aba7818f74ae2a1b624ea4512ca7c"}} +{"capturedUtc":"2026-05-19T14:06:19.9065203+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aed7065ac01847b9a2302f67f8d5b0f5"}} +{"capturedUtc":"2026-05-19T14:06:40.0043129+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e75d5a2c1d564c859fc2476d76f102be"}} +{"capturedUtc":"2026-05-19T14:07:01.0177119+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4b90522d3dac402e90ebb9f75d08e440"}} +{"capturedUtc":"2026-05-19T14:07:22.0640469+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b6687c1be64a46938aaa64274c9f21e3"}} +{"capturedUtc":"2026-05-19T14:07:42.1517046+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"372f1610435d43c59363b2068b2f76eb"}} +{"capturedUtc":"2026-05-19T14:08:02.2309225+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39782bee43c24ea1bb7fa43d52e8aa1f"}} +{"capturedUtc":"2026-05-19T14:08:23.1688796+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75eaebbe0a9e48cd9f20e40e3f347b29"}} +{"capturedUtc":"2026-05-19T14:08:43.315304+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ce46518dc19425681cca803ba814abc"}} +{"capturedUtc":"2026-05-19T14:09:04.5036946+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf19bef9393746daa476673e6c3925ea"}} +{"capturedUtc":"2026-05-19T14:09:25.3209091+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7995ea7299f1423dbc08a304f93d44b9"}} +{"capturedUtc":"2026-05-19T14:09:45.4018009+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"642af1b583a543b8934dda07d3fd569b"}} +{"capturedUtc":"2026-05-19T14:10:06.3861039+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"85c2c2a6295c4f209d110cae29ec04c1"}} +{"capturedUtc":"2026-05-19T14:10:26.4718168+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b3012ee9d854d96a2770bf764ff3744"}} +{"capturedUtc":"2026-05-19T14:10:46.5718218+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8eab8175bd64d749d3cdbddcb3fed53"}} +{"capturedUtc":"2026-05-19T14:11:08.5604952+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f8636de47014fbf9e79afdac476ae95"}} +{"capturedUtc":"2026-05-19T14:11:28.6845757+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cee212d761b54172ae80e28b07dd84ce"}} +{"capturedUtc":"2026-05-19T14:11:48.7674323+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"366c48f8ded1490ab2fe6292f9c9875f"}} +{"capturedUtc":"2026-05-19T14:12:08.8695416+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7f7850f5c41747d090995f6615a321cf"}} +{"capturedUtc":"2026-05-19T14:12:29.8499135+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6605e725d6c44d119e1c4c5d07e5a5e1"}} +{"capturedUtc":"2026-05-19T14:12:50.8969605+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6938f2b4f024e098772fced292d27fb"}} +{"capturedUtc":"2026-05-19T14:13:12.776829+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f2caec8c3eb94be38b9c96f76e30efea"}} +{"capturedUtc":"2026-05-19T14:13:33.0849835+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"383afe50fd6045c0b2212e07b14e8f32"}} +{"capturedUtc":"2026-05-19T14:13:53.1866647+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39e90f95517d4bb3bfbbfd9544cd5c33"}} +{"capturedUtc":"2026-05-19T14:14:13.3210565+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be741e7cc15f4eeea6289b6d566d4819"}} +{"capturedUtc":"2026-05-19T14:14:33.4427371+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8243c91d485c40ea9797d4bc1f86d061"}} +{"capturedUtc":"2026-05-19T14:14:54.3840053+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3f35283d2d2244628bb1383fd33f82f0"}} +{"capturedUtc":"2026-05-19T14:15:14.5705159+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c85c015ce3ca457d98285a117691006b"}} +{"capturedUtc":"2026-05-19T14:15:34.6454929+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa5073ff557f454db5d35b4b37632034"}} +{"capturedUtc":"2026-05-19T14:15:54.7109412+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4b7e5a3739c48188abde5d9d6218742"}} +{"capturedUtc":"2026-05-19T14:16:15.5569287+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d004ec5ce62a4f128a1193113baaca5f"}} +{"capturedUtc":"2026-05-19T14:16:35.6592121+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"762b5ce2795b4fb9ab658557d16dff57"}} +{"capturedUtc":"2026-05-19T14:16:55.8369329+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"629a6f186abd4548b74823c285ae55a6"}} +{"capturedUtc":"2026-05-19T14:17:16.6800121+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ec6a4fadf414e61b888a29a1400065d"}} +{"capturedUtc":"2026-05-19T14:17:37.7456837+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"40bbdbcdbafb408ba89b5441c1f47b4b"}} +{"capturedUtc":"2026-05-19T14:17:57.9215172+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c1564c6748d0491bb4f09e51398bd1e6"}} +{"capturedUtc":"2026-05-19T14:18:18.8854835+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b796f35879624f7487fa365972a1330d"}} +{"capturedUtc":"2026-05-19T14:18:38.9999312+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"144c7fa9a3824d75a663aa7c40bb9f40"}} +{"capturedUtc":"2026-05-19T14:18:59.9569651+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1ac0e35813974d53a6625e8258e03083"}} +{"capturedUtc":"2026-05-19T14:19:20.0856335+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"32fe8b6ab85945649e79cb40acb82f45"}} +{"capturedUtc":"2026-05-19T14:19:41.0779687+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e5e1ab3ca603413686023924b65c4343"}} +{"capturedUtc":"2026-05-19T14:20:02.1051012+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1eee585a55a9417c86df0fecb42aa1e0"}} +{"capturedUtc":"2026-05-19T14:20:22.283688+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6e8a1aebf70471b8c5f7430b7a96209"}} +{"capturedUtc":"2026-05-19T14:20:43.1890474+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"99cd27339e0048b99d5375aeb8316a5c"}} +{"capturedUtc":"2026-05-19T14:21:03.3286108+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"958421c596874589a174c6b83d5b122c"}} +{"capturedUtc":"2026-05-19T14:21:24.28279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"01da2333c7694e5eaecad91a0a1fdc29"}} +{"capturedUtc":"2026-05-19T14:21:44.411831+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e0467f7a106a4996b623f08ccd34abc2"}} +{"capturedUtc":"2026-05-19T14:22:10.4169513+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dcd90ec680ff4a7fbe8edfd33035f698"}} +{"capturedUtc":"2026-05-19T14:22:31.4627442+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"70219f298d7449cca246c2c64aa37cb4"}} +{"capturedUtc":"2026-05-19T14:22:52.6010001+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d42921f2856642058aee8a233e2d1cd6"}} +{"capturedUtc":"2026-05-19T14:23:12.9810443+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0a7ba90863b14146a38f89ed7def980a"}} +{"capturedUtc":"2026-05-19T14:23:35.6586297+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5ac3e06a1b58492e9a5a69b10d3116f1"}} +{"capturedUtc":"2026-05-19T14:23:55.7788375+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e8e62022c0474ebba4c27fa2c112f42f"}} +{"capturedUtc":"2026-05-19T14:24:18.7908611+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec5e4872d2294ffc93e77eb6cb02cc92"}} +{"capturedUtc":"2026-05-19T14:24:38.8857385+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29362dbf88ae4ab79bc94191937bd0ef"}} +{"capturedUtc":"2026-05-19T14:24:59.8494355+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9832bccb37374a708eb07944abf15de0"}} +{"capturedUtc":"2026-05-19T14:25:19.946619+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"676851bab6ef4bb8988b72593aa0bd40"}} +{"capturedUtc":"2026-05-19T14:25:40.9645322+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a31241c3fd54441f88d1dfe688b1f4ff"}} +{"capturedUtc":"2026-05-19T14:26:02.0010706+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f8586dc25fe74661971c8541085a9d73"}} +{"capturedUtc":"2026-05-19T14:26:22.076548+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05a013ad940040f7bc13c6d37161255c"}} +{"capturedUtc":"2026-05-19T14:26:42.1574786+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e9037557b31143dfb83b9ee8ba65d0d5"}} +{"capturedUtc":"2026-05-19T14:27:02.2585054+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"caf5eb0dcf34416f9c132d1b3197adaf"}} +{"capturedUtc":"2026-05-19T14:27:23.2091659+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95983720db5745399ef673a5f0c7598e"}} +{"capturedUtc":"2026-05-19T14:27:44.5733616+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ddd0f60796a48a88b78a43a42a87399"}} +{"capturedUtc":"2026-05-19T14:28:04.6809626+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9b481576ef3147d6b45dfbace58d5cc7"}} +{"capturedUtc":"2026-05-19T14:28:25.451491+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0fe25c62906b4aa5ba599079154fc177"}} +{"capturedUtc":"2026-05-19T14:28:45.5289864+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ecb512255374c3f966b8d606dba33f7"}} +{"capturedUtc":"2026-05-19T14:29:05.6046554+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df06d120a796422ca0a6a04e7c8c191b"}} +{"capturedUtc":"2026-05-19T14:29:27.5690673+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e8a17434d5447db9a5ef46e6435bc39"}} +{"capturedUtc":"2026-05-19T14:29:49.4979315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"07435d297f2c4ab5af93cfe08162a438"}} +{"capturedUtc":"2026-05-19T14:30:09.7859741+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cc9958ff675a486caa9a60eec38dab80"}} +{"capturedUtc":"2026-05-19T14:30:14.7661041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d7376e76d7b4221b271e70def8cab8b"}} +{"capturedUtc":"2026-05-19T14:30:16.7327337+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"46f1ce3a0a534a369a34c2a51510a83a"}} +{"capturedUtc":"2026-05-19T14:30:30.7825016+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb64926a43984c3a86e3f2dbeec66a93"}} +{"capturedUtc":"2026-05-19T14:30:50.9452545+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0f024eb105ef4c17a2e1db9219d26ef0"}} +{"capturedUtc":"2026-05-19T14:31:11.9154557+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba9d2c6063be4822ad928d3403cf943f"}} +{"capturedUtc":"2026-05-19T14:31:22.0983209+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"98b9381271304c6c84253a5c9c769a5d"}} +{"capturedUtc":"2026-05-19T14:31:22.9545429+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"3b64afaf63c74b01ac4c54d505742374"}} +{"capturedUtc":"2026-05-19T14:31:32.050863+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3b2b25bed3c94dec973eed90c294a7dc"}} +{"capturedUtc":"2026-05-19T14:31:53.9753475+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8504187dbe1547398607ed2efcc640e3"}} +{"capturedUtc":"2026-05-19T14:32:14.133847+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7416be6b03bb4af5993ec518b0965d7b"}} +{"capturedUtc":"2026-05-19T14:32:34.6457827+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8c141c393a3d4114a58f49634dde1370"}} +{"capturedUtc":"2026-05-19T14:32:54.718527+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"260d730746294de5b1abcce612cf527b"}} +{"capturedUtc":"2026-05-19T14:33:14.800948+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"727182bb11da4b4289c00875988ebe95"}} +{"capturedUtc":"2026-05-19T14:33:35.1974565+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7db304e6b3b345de9a659ccb391c17e9"}} +{"capturedUtc":"2026-05-19T14:33:56.497826+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"70f655ba59614cd9ba056bc1f9a07bfc"}} +{"capturedUtc":"2026-05-19T14:34:17.2744947+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6dfe62fe335040adbf9253f5375f07ee"}} +{"capturedUtc":"2026-05-19T14:34:37.420073+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8e4ac2a4b9d049b1b20a2ac8a8b16c5c"}} +{"capturedUtc":"2026-05-19T14:34:58.3769277+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8792382b67c04ba28a3027a83c3159fd"}} +{"capturedUtc":"2026-05-19T14:35:18.474113+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75d2b6195c5344a49c152cb13cee9456"}} +{"capturedUtc":"2026-05-19T14:35:39.4740796+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c240851abef947e3bb40486556e7a2dd"}} +{"capturedUtc":"2026-05-19T14:36:01.4619124+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8d4ce2a5a2eb4ce5b36926d7e610e7d2"}} +{"capturedUtc":"2026-05-19T14:36:21.5985069+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a10e7c4c254e44bba838639344882951"}} +{"capturedUtc":"2026-05-19T14:36:42.3039146+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a6ff8e4f109415380a11cac1f7554e6"}} +{"capturedUtc":"2026-05-19T14:37:02.6659315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"405dbfb0c68f4f83866de9526a1f8973"}} +{"capturedUtc":"2026-05-19T14:37:22.7367583+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3e91adba25244c68635b04e1c5a4c78"}} +{"capturedUtc":"2026-05-19T14:37:42.8367842+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8cf8cf300e0247ce9188b5d140a3d07e"}} +{"capturedUtc":"2026-05-19T14:38:04.8013961+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9acb82be1df34aeab77f97f3f231719a"}} +{"capturedUtc":"2026-05-19T14:38:24.9466558+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fdd2867c76e944d483670853420c9918"}} +{"capturedUtc":"2026-05-19T14:38:45.049553+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3172c05f512440998e3492e508762672"}} +{"capturedUtc":"2026-05-19T14:39:05.1595211+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"314f3269e1fa461dbca986fd04495482"}} +{"capturedUtc":"2026-05-19T14:39:26.0264381+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa83eda55afe43f3a75ab4632bd49273"}} +{"capturedUtc":"2026-05-19T14:39:46.1228522+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d5cda447d234dc284e8866661e1d4ac"}} +{"capturedUtc":"2026-05-19T14:40:06.2015898+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e437b629b0204f348e4a9e7f68bf3e98"}} +{"capturedUtc":"2026-05-19T14:40:26.3406656+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b2277315930644ad9d1847dd2da7e3d3"}} +{"capturedUtc":"2026-05-19T14:40:47.2964897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc21b38f4774468b943e998e73d3ede6"}} +{"capturedUtc":"2026-05-19T14:41:07.3733766+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6993427012bf4ce595518db0a9ade2ce"}} +{"capturedUtc":"2026-05-19T14:41:27.4689615+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"223913c03c224b3ead15166072fd8c97"}} +{"capturedUtc":"2026-05-19T14:41:48.456948+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"780ff8aab9ae457db8b43c6ffe32ae9e"}} +{"capturedUtc":"2026-05-19T14:42:08.5196446+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f62fd0b260c49d2b374ccd839d5b9f8"}} +{"capturedUtc":"2026-05-19T14:42:30.8611363+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"87ac2bd4906c45e28acda65d44e4ed87"}} +{"capturedUtc":"2026-05-19T14:42:51.7129019+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a79a5cd29a7424d8070d6943072a1e5"}} +{"capturedUtc":"2026-05-19T14:43:11.7917657+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76b0d2c53f8c4ae980af4f48fb112aa9"}} +{"capturedUtc":"2026-05-19T14:43:32.7884294+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb6780364b834b4281fc24079e7d2712"}} +{"capturedUtc":"2026-05-19T14:43:52.9029404+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"406565f444f94be6bad5a2d0a4d26a3e"}} +{"capturedUtc":"2026-05-19T14:44:13.9075602+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4b727a855ebf42009b49a2db85cb3279"}} +{"capturedUtc":"2026-05-19T14:44:33.998909+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"31957fe4456c41b287239ba31a2d76cb"}} +{"capturedUtc":"2026-05-19T14:44:54.707525+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"17bdbd0632094d838c066c4b9a86c37d"}} +{"capturedUtc":"2026-05-19T14:45:14.827415+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b18f4050efe94aa4bf3dfbe97bbe1deb"}} +{"capturedUtc":"2026-05-19T14:45:34.9109638+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5fed9efb496244478136b203c05279a6"}} +{"capturedUtc":"2026-05-19T14:45:55.1111266+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16287717c9d04e8abfc95010085b35b2"}} +{"capturedUtc":"2026-05-19T14:46:15.2015401+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a67a82f8274344bb9e1f04eea9f4d45a"}} +{"capturedUtc":"2026-05-19T14:46:35.286928+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0d1389fb49742c39ede147287aeb58a"}} +{"capturedUtc":"2026-05-19T14:46:55.3664758+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7636dd84f02d4e51b3c16cfbba797827"}} +{"capturedUtc":"2026-05-19T14:47:16.2848133+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c4ce643811004c4ea40823661f3174a0"}} +{"capturedUtc":"2026-05-19T14:47:36.3769096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1baf9ff4a1d54279a91cfaeba7f2edd5"}} +{"capturedUtc":"2026-05-19T14:47:56.5550222+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce3937bbc28448d694666b03aafe8d01"}} +{"capturedUtc":"2026-05-19T14:48:17.4656152+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"10b44e43c71c47299fa7b21a661cb9fa"}} +{"capturedUtc":"2026-05-19T14:48:37.6331402+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05e9bd86a3a94791ac13829c7734d5ed"}} +{"capturedUtc":"2026-05-19T14:48:58.6276552+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"983fd7e422c84231b388b22fe1adc03a"}} +{"capturedUtc":"2026-05-19T14:49:19.6774964+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9cf7f5cfa70546e792bfe1a3d22a7a0f"}} +{"capturedUtc":"2026-05-19T14:49:39.8011705+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f3e8dc06b344d319adbae5996a1a02d"}} +{"capturedUtc":"2026-05-19T14:50:00.7665019+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be2b8a3a3f054fd297e33866ae8afcd2"}} +{"capturedUtc":"2026-05-19T14:50:21.7897448+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8987ddd1c4744d95b91f2af95194b9f2"}} +{"capturedUtc":"2026-05-19T14:50:41.9008029+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"33f62c3641054592bf875112f2875e2d"}} +{"capturedUtc":"2026-05-19T14:51:01.9802905+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0f5b60390354816b1f701d7df407007"}} +{"capturedUtc":"2026-05-19T14:51:22.0779762+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"08c42069b2ea4487a3ad03d9c88c381c"}} +{"capturedUtc":"2026-05-19T14:51:42.2886195+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c24bfa1a03a4d2089af29688ea65fb4"}} +{"capturedUtc":"2026-05-19T14:52:03.1698372+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9c5e60907ac4f52bfe48cd165e2be8b"}} +{"capturedUtc":"2026-05-19T14:52:24.1435206+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"039e25ef8c7f43d8b8c77947afa0399f"}} +{"capturedUtc":"2026-05-19T14:52:44.7866884+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4bb5b5ee026e49c5abf19b66d6aaf1a3"}} +{"capturedUtc":"2026-05-19T14:53:05.2127501+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ea7e0cb0b92443c99781d2029a55d770"}} +{"capturedUtc":"2026-05-19T14:53:26.2739926+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0266c732dd3f43f0bccd3b7a7fc5d613"}} +{"capturedUtc":"2026-05-19T14:53:47.7235858+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a285276802e4a2a8dcde0410b132668"}} +{"capturedUtc":"2026-05-19T14:54:08.3780054+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd73a107e10441f2b5352df92c040f40"}} +{"capturedUtc":"2026-05-19T14:54:28.4589279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8463f44257a8466a8b984288dafb7912"}} +{"capturedUtc":"2026-05-19T14:54:48.5549553+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c87873c3a54b476792fceca8f515d30e"}} +{"capturedUtc":"2026-05-19T14:55:09.4844956+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eebc796f8c714e439d025a283b3836bc"}} +{"capturedUtc":"2026-05-19T14:55:29.5848933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0f63e79c414246c6948ac54b7c40d78c"}} +{"capturedUtc":"2026-05-19T14:55:50.579869+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bb6d3aa13c874858bafab7e97edb066c"}} +{"capturedUtc":"2026-05-19T14:56:10.6579242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8c51cebb02be4661ad63c3b033ef3946"}} +{"capturedUtc":"2026-05-19T14:56:31.6537272+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4186836e62184bf3a22276516b272481"}} +{"capturedUtc":"2026-05-19T14:56:51.7326828+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"370932cbf61d498c9a9aac1c292ba620"}} +{"capturedUtc":"2026-05-19T14:57:12.7326906+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8e88fdb0fab84436a61e8249f3aa038b"}} +{"capturedUtc":"2026-05-19T14:57:32.8345353+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c3f40c2f544943cdb5574657feaa0791"}} +{"capturedUtc":"2026-05-19T14:57:52.9478228+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"80acb6740d8e4e2387fc488aeedd8a05"}} +{"capturedUtc":"2026-05-19T14:58:13.25447+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e65f87bf3934d748a23ab2eee444c67"}} +{"capturedUtc":"2026-05-19T14:58:34.0104711+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d32e020187ef4981a5581511099ecb8d"}} +{"capturedUtc":"2026-05-19T14:58:54.8569781+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"77046093845242aeb2b40479213637a4"}} +{"capturedUtc":"2026-05-19T14:59:15.133243+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12ae423736b04a5bb1785046df1cce57"}} +{"capturedUtc":"2026-05-19T14:59:36.1292981+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a72ed049a62e4815a15b735a00b8eb01"}} +{"capturedUtc":"2026-05-19T14:59:56.3769468+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe1e7969fddd467d9589d966851509af"}} +{"capturedUtc":"2026-05-19T15:00:16.5472836+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae3a9cb16c1847cc9779bad339c3d86d"}} +{"capturedUtc":"2026-05-19T15:00:37.4429593+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d52c52b6cc0341e280249c4d84ebb243"}} +{"capturedUtc":"2026-05-19T15:00:57.6309802+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e41acb6f60bb419290a5d71089efa2b5"}} +{"capturedUtc":"2026-05-19T15:01:18.5640006+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"51690c4a15384072910d2beae6b242bd"}} +{"capturedUtc":"2026-05-19T15:01:33.6139031+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"878b3433ceb148349b2c9d3be88c4a06"}} +{"capturedUtc":"2026-05-19T15:01:34.6294492+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"986bb14415974b329b071c9b06de24eb"}} +{"capturedUtc":"2026-05-19T15:01:39.6014701+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ff42cdb6f254b5da2201f5bf43e7de4"}} +{"capturedUtc":"2026-05-19T15:01:59.7345604+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be33d6fb83154e9597a8ed129a2ff1ca"}} +{"capturedUtc":"2026-05-19T15:02:20.6890032+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6d240c3ddb294a7691e783d611d6a46d"}} +{"capturedUtc":"2026-05-19T15:02:40.7629579+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8c86efc6213473fa8fcfa49353164d1"}} +{"capturedUtc":"2026-05-19T15:03:00.879973+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8dbf4d06b2cd41f9a788100c51d2c04c"}} +{"capturedUtc":"2026-05-19T15:03:21.8600776+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5b8b1dce6dbb4201bb921d63701e2c9a"}} +{"capturedUtc":"2026-05-19T15:03:41.9479233+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"99e4dd3637f64708ba2b0794717b16f3"}} +{"capturedUtc":"2026-05-19T15:04:02.9340229+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b21c371a63f74a06ba442c2b1fd0c529"}} +{"capturedUtc":"2026-05-19T15:04:23.0574074+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d687adbcb2b645b3805fc132c80a9ea7"}} +{"capturedUtc":"2026-05-19T15:04:44.0078337+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8a0c6d0a9a5a4a3e9cb421996cbd5d47"}} +{"capturedUtc":"2026-05-19T15:05:05.0538766+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"438eb5b11fce494286783c002613ac37"}} +{"capturedUtc":"2026-05-19T15:05:25.2490746+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c48f7271de4b4d0ab8f8f1c4540a1156"}} +{"capturedUtc":"2026-05-19T15:05:46.2398137+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1d1c557f08f142c0a67c4ef703b72b4a"}} +{"capturedUtc":"2026-05-19T15:06:06.3284535+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c5ba7dee1e34953975adba320a48a49"}} +{"capturedUtc":"2026-05-19T15:06:26.4229156+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"327fffa7f8804b8c9dbade8eb2004a5f"}} +{"capturedUtc":"2026-05-19T15:06:46.5170095+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41be8347ff2f40a2b9779da9bb46e44e"}} +{"capturedUtc":"2026-05-19T15:07:07.4940321+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"097effd20a8748b5abf955617f2bdc1b"}} +{"capturedUtc":"2026-05-19T15:07:28.6169935+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f18750177ac4b5fa3b4e4b15c8f824a"}} +{"capturedUtc":"2026-05-19T15:07:49.5675697+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f8f773a5d487431f852bd0bdfc0acf5b"}} +{"capturedUtc":"2026-05-19T15:08:09.6489913+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"59855e75a1394d14a7c8e92541afec28"}} +{"capturedUtc":"2026-05-19T15:08:30.6059902+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ecaa9dbdc2424985b348d79226e7b0a8"}} +{"capturedUtc":"2026-05-19T15:08:51.650722+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1d80bc5190f141d199018a2244ebe847"}} +{"capturedUtc":"2026-05-19T15:09:12.8050482+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a5189f52da9842a28efc9c7f82d04885"}} +{"capturedUtc":"2026-05-19T15:09:33.791697+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"053ae8e66e244f8caabd9bacb07eeaa9"}} +{"capturedUtc":"2026-05-19T15:09:54.828396+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"25fdacacaf934f64add5770670bb886d"}} +{"capturedUtc":"2026-05-19T15:10:14.9099975+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"073955b6a94545268aeb890f468c1d2f"}} +{"capturedUtc":"2026-05-19T15:10:35.0115189+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f1bf165eb4c94148a8f156a14ab10f76"}} +{"capturedUtc":"2026-05-19T15:10:55.9510325+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0ae1b62a27524a809a497b98016c37d7"}} +{"capturedUtc":"2026-05-19T15:11:17.483326+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"862afb0bbb3b4e54b9eb102eb6bc2bf7"}} +{"capturedUtc":"2026-05-19T15:11:38.095917+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"966afaad8ba741fb9e8c60ce0b7fa877"}} +{"capturedUtc":"2026-05-19T15:11:58.2086485+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a7eab61ad39240f3af251b6dc8dc37e0"}} +{"capturedUtc":"2026-05-19T15:12:19.2285091+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9511d0706fe74de18a0c9c07f56e47cb"}} +{"capturedUtc":"2026-05-19T15:12:40.2612387+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6efebba4014a4f0b892f9f9aecb5d040"}} +{"capturedUtc":"2026-05-19T15:13:00.3521728+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9b45ff0fdc44865ad0071940e123391"}} +{"capturedUtc":"2026-05-19T15:13:20.8183394+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6d1a5dc67b6b492e8c3d7128c32c78ea"}} +{"capturedUtc":"2026-05-19T15:13:41.3934568+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd9285e0fcb84cb8b4d01f83b978de94"}} +{"capturedUtc":"2026-05-19T15:14:01.4664646+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6b0868414cba46148f3c18544e3fd342"}} +{"capturedUtc":"2026-05-19T15:14:22.4218592+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6392d237bf1d427189e08feaf18a44bb"}} +{"capturedUtc":"2026-05-19T15:14:42.5338398+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f1f7a48432594d81a46bb92664a6fa37"}} +{"capturedUtc":"2026-05-19T15:15:02.6179505+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aaa91476492b4a08a125386210b3e9b6"}} +{"capturedUtc":"2026-05-19T15:15:23.5417294+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5897573a2dfc4cd99d7680496c44a304"}} +{"capturedUtc":"2026-05-19T15:15:43.6647314+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f329dcce8e1740cc947f2a7bc7cda21a"}} +{"capturedUtc":"2026-05-19T15:16:03.780364+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"57bb2183335b4d7ba6135e91355f99f8"}} +{"capturedUtc":"2026-05-19T15:16:24.6799141+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"478cbee67d524021ac08fd88829e173f"}} +{"capturedUtc":"2026-05-19T15:16:44.792841+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae571e82d44f490e85d133db5c99b2e4"}} +{"capturedUtc":"2026-05-19T15:17:04.96078+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b1dd3074cfb2456592658ffc79d60eb6"}} +{"capturedUtc":"2026-05-19T15:17:25.0425847+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a39dc21f7cd5491f8239541a37d735b7"}} +{"capturedUtc":"2026-05-19T15:17:45.9238956+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"769075d831e84269aec8ae2b59d5fa4c"}} +{"capturedUtc":"2026-05-19T15:18:06.017913+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"990b011699684c7cbf8405ad66cb9995"}} +{"capturedUtc":"2026-05-19T15:18:26.1285438+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5050b1e2869647d7b028d214cfd50840"}} +{"capturedUtc":"2026-05-19T15:18:47.087777+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e45f1f9c027a4fea95b0888bfc87a570"}} +{"capturedUtc":"2026-05-19T15:19:08.0969577+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5aca20d9934841d4a9ff2f497782d407"}} +{"capturedUtc":"2026-05-19T15:19:28.2174931+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8de33e13026b446f84e88e461115edea"}} +{"capturedUtc":"2026-05-19T15:19:49.207729+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0dfb345a58ff497b81f9a2368fef082b"}} +{"capturedUtc":"2026-05-19T15:20:09.2888412+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a677eff404a64e33886774ac70291825"}} +{"capturedUtc":"2026-05-19T15:20:31.2719817+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7f2ee144ec148d3b62a56a3810650e7"}} +{"capturedUtc":"2026-05-19T15:20:51.3779683+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6bbc568f6bdb49029e866e34dd32cb00"}} +{"capturedUtc":"2026-05-19T15:21:12.3694805+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c1e678fd6bd542ab9fe5215283a530ce"}} +{"capturedUtc":"2026-05-19T15:21:32.4498626+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a91f2dbf805e434c8d7ade81a9037d4a"}} +{"capturedUtc":"2026-05-19T15:21:52.6619536+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f04d5e96640f44a5b6acb2f2379e336a"}} +{"capturedUtc":"2026-05-19T15:22:13.3142937+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56a80389f98e42d8bb1d4750e72b2846"}} +{"capturedUtc":"2026-05-19T15:22:33.5585501+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa18f328ee7a4806aa5a88141ebadb23"}} +{"capturedUtc":"2026-05-19T15:22:53.6445647+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e9f4b5a5c4c407e87673a32dd2355d3"}} +{"capturedUtc":"2026-05-19T15:23:13.8765254+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"00a5f9fd4f80492bba7777b4f308a38a"}} +{"capturedUtc":"2026-05-19T15:23:34.702909+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cde28271cf7a4c4ab52f77a0339255e4"}} +{"capturedUtc":"2026-05-19T15:23:54.8181447+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"21fcd42c171c4902a0472232601b924f"}} +{"capturedUtc":"2026-05-19T15:24:15.0097435+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0aa7fde7a146436d8d89552f6275ae84"}} +{"capturedUtc":"2026-05-19T15:24:35.8337154+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7d93dc5f0e24125b2bcd894e31c5e9d"}} +{"capturedUtc":"2026-05-19T15:24:55.9192612+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb54775e7a3b4a1492bff9b45904a9cb"}} +{"capturedUtc":"2026-05-19T15:25:16.0060194+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e758cfe8bf2c485493b3ce1a1fdeaff8"}} +{"capturedUtc":"2026-05-19T15:25:36.9709124+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05b56b5da5ce41569411c60e723a7de4"}} +{"capturedUtc":"2026-05-19T15:25:57.1779682+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c5003747d3a14f62b767b09486f1eeea"}} +{"capturedUtc":"2026-05-19T15:26:18.0576042+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c7daa2500cf48d7abdad8f4a37b92c6"}} +{"capturedUtc":"2026-05-19T15:26:38.1988188+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aed8793dc3264e9ebc88a47ce0924026"}} +{"capturedUtc":"2026-05-19T15:26:59.1417453+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"337335ad9fd949329c393ba92f48ca3a"}} +{"capturedUtc":"2026-05-19T15:27:19.2165688+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9268936a08944270990be75116063216"}} +{"capturedUtc":"2026-05-19T15:27:40.2310322+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"271665ac0b434b9ab137c1f59efb3a55"}} +{"capturedUtc":"2026-05-19T15:28:00.3518594+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"623dbc98091d496ea1094c37763712ef"}} +{"capturedUtc":"2026-05-19T15:28:20.5145614+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"207d4d179df7437c8acf46d4f138738c"}} +{"capturedUtc":"2026-05-19T15:28:41.4296123+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9e39984577804c65bdc50fe6904a8c9e"}} +{"capturedUtc":"2026-05-19T15:29:01.5135029+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa5204710aa8461a99e66bc3bc1274d7"}} +{"capturedUtc":"2026-05-19T15:29:21.5965409+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ef8accb40be44409ba2c01ccabd7aba0"}} +{"capturedUtc":"2026-05-19T15:29:42.5675667+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f6b4d57aafff4738b749a67f329323ac"}} +{"capturedUtc":"2026-05-19T15:30:02.688986+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d0815ff2a9714777b1a3b4bb4e479f3b"}} +{"capturedUtc":"2026-05-19T15:30:22.7796125+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2d288ca993f3414685488054fcce1c6d"}} +{"capturedUtc":"2026-05-19T15:30:43.7615697+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"db239200814d43b8a5385b4d62f028fa"}} +{"capturedUtc":"2026-05-19T15:31:03.8470478+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"090dbafd79604bcea6eb49f84251e66d"}} +{"capturedUtc":"2026-05-19T15:31:23.9457328+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42800d93f2684e98be44927545b3a2cb"}} +{"capturedUtc":"2026-05-19T15:31:45.0184796+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b740e8005b4c49ad80d73d1c697a9e51"}} +{"capturedUtc":"2026-05-19T15:31:45.10659+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"89edb328c60a493eb348815feceab4e5"}} +{"capturedUtc":"2026-05-19T15:31:45.3464849+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"80594a5596de45ea896733a47cf8eeb1"}} +{"capturedUtc":"2026-05-19T15:32:06.0399993+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f2238daeb3e4407d9655dc375ffe8fd4"}} +{"capturedUtc":"2026-05-19T15:32:27.0257744+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"519e0140072a4a338bca18e7cc80052a"}} +{"capturedUtc":"2026-05-19T15:32:47.1024478+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f3a696257f3e45f78501f9d45aa9df91"}} +{"capturedUtc":"2026-05-19T15:33:08.1138838+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"38433610b1d845ab9ef82d5b58a5ffde"}} +{"capturedUtc":"2026-05-19T15:33:28.2700671+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8a4fffec58ef4efa9b368890c6eb38cf"}} +{"capturedUtc":"2026-05-19T15:33:49.2189591+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf3ca042ef4d4422a93f0810f31230f4"}} +{"capturedUtc":"2026-05-19T15:34:09.3139174+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f178417599cd4e31a83efccde6d66007"}} +{"capturedUtc":"2026-05-19T15:34:30.2739647+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"080bb7c83e21445c82d3a4ec08706b98"}} +{"capturedUtc":"2026-05-19T15:34:51.3078998+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bdfc0d3551e24b18be709691d3b74cb1"}} +{"capturedUtc":"2026-05-19T15:35:11.4318289+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"946ce9e0f4b54b7aab64e55b7f9d4ced"}} +{"capturedUtc":"2026-05-19T15:35:31.5138018+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a1f453894254d5ea8cabefe7d918e74"}} +{"capturedUtc":"2026-05-19T15:35:52.4219107+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bfaf35415d37460892b32bb1202a93c0"}} +{"capturedUtc":"2026-05-19T15:36:12.5136924+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19e3f4f471aa461d982476f39a4c1c8c"}} +{"capturedUtc":"2026-05-19T15:36:32.6129588+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e285267d8e1f4c989b54ad0c9680ae72"}} +{"capturedUtc":"2026-05-19T15:36:52.7086096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d14f6651ab2b436caffc7b1429838d99"}} +{"capturedUtc":"2026-05-19T15:37:13.6534454+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6aad59b33f9d4fa2aae6587ea88541a6"}} +{"capturedUtc":"2026-05-19T15:37:33.7779342+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b77bddcf8e914600b9cf2b6e5ac55fea"}} +{"capturedUtc":"2026-05-19T15:37:54.7704458+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"97ce9b48c2d542adb80ec62b5cef4695"}} +{"capturedUtc":"2026-05-19T15:38:14.8888252+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"04fbd150d4d64bc6be6de9dcc8308051"}} +{"capturedUtc":"2026-05-19T15:38:35.0139003+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"347ad924181c4e89a18e5e43a89eb824"}} +{"capturedUtc":"2026-05-19T15:38:55.1046837+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"128ececbd81542abb37fdb9fa748be20"}} +{"capturedUtc":"2026-05-19T15:39:15.9926118+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec50b1726d6d4c8588231c26b49a24da"}} +{"capturedUtc":"2026-05-19T15:39:37.0106026+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64f3115db4ef447db9ede5d3d4700608"}} +{"capturedUtc":"2026-05-19T15:39:57.1515894+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6dc4b548341041e6b8acf7d3337d1ca4"}} +{"capturedUtc":"2026-05-19T15:40:18.1789148+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1fa77e92cbd04e778920501105dc8730"}} +{"capturedUtc":"2026-05-19T15:40:38.2546082+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"db90a51baa6b433ca63eda93845bbabe"}} +{"capturedUtc":"2026-05-19T15:40:59.3166351+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aaf029c5cce64fd09ca73da54a14a552"}} +{"capturedUtc":"2026-05-19T15:41:19.3903594+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"49877853456b477d822242fe3aaa8dac"}} +{"capturedUtc":"2026-05-19T15:41:40.3109889+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6f9e6f2a58504507ad6f947c663c220a"}} +{"capturedUtc":"2026-05-19T15:42:01.3575004+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cb2d7750569b4354a7d8d7d5306f50af"}} +{"capturedUtc":"2026-05-19T15:42:23.4601332+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"49c633f412ba461fac558dfda339d116"}} +{"capturedUtc":"2026-05-19T15:42:43.5485408+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4d3ac6d0666847a6b0343259531ff7de"}} +{"capturedUtc":"2026-05-19T15:43:03.6404812+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6dfcab8392ee41f9a44f00b4d2f2e1d3"}} +{"capturedUtc":"2026-05-19T15:43:24.6086125+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d2036c30dba244ed8e148725c8bc9c5b"}} +{"capturedUtc":"2026-05-19T15:43:44.7031266+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7aa233e3633c4df7b4d666aefcf36334"}} +{"capturedUtc":"2026-05-19T15:43:49.5474897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2082ee9ad668489babaefe04959f118e"}} +{"capturedUtc":"2026-05-19T15:44:05.0350633+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f54bae23ee2e4bb7905d5a8fca1d6647"}} +{"capturedUtc":"2026-05-19T15:44:26.3149511+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7a2989f15254a3195697cd8c1670c9f"}} +{"capturedUtc":"2026-05-19T15:44:46.832739+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc7470fdd99f44f5b3740711de02cd2f"}} +{"capturedUtc":"2026-05-19T15:45:06.905892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7cea7e2f8c6a4a75b8069efac18ded33"}} +{"capturedUtc":"2026-05-19T15:45:27.0139927+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9964b1c4c18d46e78c07d99ecff81cb6"}} +{"capturedUtc":"2026-05-19T15:45:47.9718406+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8882deb07ae0491cb1e2d43293d65807"}} +{"capturedUtc":"2026-05-19T15:46:08.0858112+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"476c6546d0c044cb93338872d5c2b0ec"}} +{"capturedUtc":"2026-05-19T15:46:30.0749952+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ebe17a49127e4aa094a874994f956c64"}} +{"capturedUtc":"2026-05-19T15:46:51.1293068+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b78caf5c306f4a819c7c9478e7d72739"}} +{"capturedUtc":"2026-05-19T15:47:12.1580634+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b54ab1fd63e64e8fbed95de924218581"}} +{"capturedUtc":"2026-05-19T15:47:32.2451338+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b9a2ca867e546c08bddbe9091ce0f44"}} +{"capturedUtc":"2026-05-19T15:47:52.3319674+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e2adebbedd9a41899529fd487652f6d9"}} +{"capturedUtc":"2026-05-19T15:48:12.6699777+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c182776fcb514caf88c93f3c2d77311a"}} +{"capturedUtc":"2026-05-19T15:48:35.0806637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"68d2e7827a2c489396e456619748e598"}} +{"capturedUtc":"2026-05-19T15:48:55.1848054+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d94685a8e9574990bca14ddd11cb6141"}} +{"capturedUtc":"2026-05-19T15:49:15.5170566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e492e95af5b84bb7b562c3d2a771e5f7"}} +{"capturedUtc":"2026-05-19T15:49:35.6379359+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0969ef3b0ba34209aa4fd2b49c85e847"}} +{"capturedUtc":"2026-05-19T15:49:56.5969051+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2c72a26e496e466b8004345d03511004"}} +{"capturedUtc":"2026-05-19T15:50:16.6997284+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"296e396a41564059ac24b7b869cb62bf"}} +{"capturedUtc":"2026-05-19T15:50:38.1336374+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"69f4483f308d40649d2e3597e01b85a3"}} +{"capturedUtc":"2026-05-19T15:50:58.7466874+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aef1044c03274802b675deba7ad58450"}} +{"capturedUtc":"2026-05-19T15:51:18.8395099+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3b845fa1335e4a6a977275291d7d1847"}} +{"capturedUtc":"2026-05-19T15:51:39.0074923+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d31af76ef92f426bafe5a2fee49ba59c"}} +{"capturedUtc":"2026-05-19T15:51:59.9999986+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8ef4a888d0b472cb194d993244a2eeb"}} +{"capturedUtc":"2026-05-19T15:52:20.9709514+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16a320cc10314104ae1176ff76066bf3"}} +{"capturedUtc":"2026-05-19T15:52:41.985598+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a0ecd830f37e47f58990b7cc2514758c"}} +{"capturedUtc":"2026-05-19T15:53:02.1884903+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6235b5b27e54495b984dd64013454965"}} +{"capturedUtc":"2026-05-19T15:53:23.1469095+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee653fa4873847ad8febf3ce41fdfb25"}} +{"capturedUtc":"2026-05-19T15:53:44.1689528+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2031e3629f5e4a41962d786011e76241"}} +{"capturedUtc":"2026-05-19T15:54:04.2436312+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8a15fa47c82740eda324dd6a4647f9f5"}} +{"capturedUtc":"2026-05-19T15:54:24.3166413+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf85596685ae47b4aa5cf2a1b30f6347"}} +{"capturedUtc":"2026-05-19T15:54:45.1127322+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e01a3db523a74dfdaf957fee77617330"}} +{"capturedUtc":"2026-05-19T15:55:05.2109671+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e68c5af424e4c718878115564158c5f"}} +{"capturedUtc":"2026-05-19T15:55:25.4049569+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b181242ad2774067bc8ee685564d48a6"}} +{"capturedUtc":"2026-05-19T15:55:45.4954649+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d10f220961b4492ab6801e798f093903"}} +{"capturedUtc":"2026-05-19T15:56:05.5668799+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9520974dcf964b36a78da81aff65c653"}} +{"capturedUtc":"2026-05-19T15:56:26.541682+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb3f9691a7de4f66b0e23a3e706f0f49"}} +{"capturedUtc":"2026-05-19T15:56:46.6326077+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff1be76f34554bb5b86c1b6f1bf02ff0"}} +{"capturedUtc":"2026-05-19T15:57:07.6322832+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"828fcdcec67747d99c82a945e19c9555"}} +{"capturedUtc":"2026-05-19T15:57:27.7125837+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d9b701fe6b75416db286199fcf1bfca1"}} +{"capturedUtc":"2026-05-19T15:57:47.8909435+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2e3b1d693c084ad5823c048db2ef01ab"}} +{"capturedUtc":"2026-05-19T15:58:08.7586005+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed8a99bbbdba43979069df67b383b91e"}} +{"capturedUtc":"2026-05-19T15:58:28.8435221+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d8ad1aaf58b84077949b38f8ccd4b60a"}} +{"capturedUtc":"2026-05-19T15:58:48.9264533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b1c8d09f005242dab1e08bd03af1bd77"}} +{"capturedUtc":"2026-05-19T15:59:09.8969679+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bfd1b2c3abdc4618b06d16c18a4cda47"}} +{"capturedUtc":"2026-05-19T15:59:30.0266003+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d2c73bce056463f9972ee02178da215"}} +{"capturedUtc":"2026-05-19T15:59:50.1020397+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05ba7a5282554482878c5fe642adab0d"}} +{"capturedUtc":"2026-05-19T16:00:10.1917776+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7c82b7636fb1456bace9f97397edd7e4"}} +{"capturedUtc":"2026-05-19T16:00:31.1134342+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"93416c3886a24a35a482ea56c700221c"}} +{"capturedUtc":"2026-05-19T16:00:51.2915466+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"978a2249d4d04b3bb4665c45f6985ba9"}} +{"capturedUtc":"2026-05-19T16:01:12.1808833+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"25e8e0bfca244aed99919836d1aa23a6"}} +{"capturedUtc":"2026-05-19T16:01:32.2469721+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"69529bba6599451498a05b9e47c713fe"}} +{"capturedUtc":"2026-05-19T16:01:52.4202523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0098a1c8fc33441ca5d7c9a290f6ae79"}} +{"capturedUtc":"2026-05-19T16:01:56.4086633+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"633db6945b70422387563aeccfe920e2"}} +{"capturedUtc":"2026-05-19T16:01:56.6337445+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"702c609288984839b3c697e5835bb298"}} +{"capturedUtc":"2026-05-19T16:02:13.4715381+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e0e3890b0bea406f907dc0310ab514ad"}} +{"capturedUtc":"2026-05-19T16:02:33.723472+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90b597c0289c494698d48515526df19e"}} +{"capturedUtc":"2026-05-19T16:02:54.3697456+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5eaf2f68d8f54f71af75c7c91da73f29"}} +{"capturedUtc":"2026-05-19T16:03:14.4446996+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95a3dac1521c4ba48ba772b23516a366"}} +{"capturedUtc":"2026-05-19T16:03:35.1604577+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"189f74416f014331a9d6ca7c0848bdf2"}} +{"capturedUtc":"2026-05-19T16:03:55.2714958+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7db0e24fc89c4300b547915223274e6c"}} +{"capturedUtc":"2026-05-19T16:04:15.5409428+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b1f3a3802b284598b1482f73003c5692"}} +{"capturedUtc":"2026-05-19T16:04:36.6239124+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7c28d1b74a724f22b0ec8a6111f91ecb"}} +{"capturedUtc":"2026-05-19T16:04:57.6808303+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5b69cdee656d4ef28236646ddd812dba"}} +{"capturedUtc":"2026-05-19T16:05:17.7976021+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba9422c3fee54d18b757a4aed4414048"}} +{"capturedUtc":"2026-05-19T16:05:39.0249473+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2b6c53f0f0e4420ebe61d36cdfe9def5"}} +{"capturedUtc":"2026-05-19T16:05:59.8150071+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"411b05130f5f417195b35fdb4ebe7f20"}} +{"capturedUtc":"2026-05-19T16:06:19.9467268+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2b767d2d402e40b1818c13af43fce084"}} +{"capturedUtc":"2026-05-19T16:06:40.89608+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"44ba6cab85404ad38e95fa8863ef2aca"}} +{"capturedUtc":"2026-05-19T16:07:00.9943429+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac2b930ed06c4f2f978c271e78896c51"}} +{"capturedUtc":"2026-05-19T16:07:21.0975067+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"019ac8d641d342c595e2a9716e82575c"}} +{"capturedUtc":"2026-05-19T16:07:42.0254922+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d6c7f97f8852430c99cd4909a8cc6710"}} +{"capturedUtc":"2026-05-19T16:08:02.0984734+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f5e0f29ba464df0bb31b20043c7174d"}} +{"capturedUtc":"2026-05-19T16:08:22.195446+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5d71269476b54a3da86de9bc5d76ca3b"}} +{"capturedUtc":"2026-05-19T16:08:43.1719319+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3de6c1a4463549df8b3e4d95c0a5ef91"}} +{"capturedUtc":"2026-05-19T16:09:03.3035073+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"168cc7a58651415aafba50a073d23fac"}} +{"capturedUtc":"2026-05-19T16:09:23.388922+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2708bce3c2a1421792b625a22a77a1b7"}} +{"capturedUtc":"2026-05-19T16:09:43.463943+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1ee7be58ef0c49488f13d80c7e80697a"}} +{"capturedUtc":"2026-05-19T16:10:04.4205007+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"433168e169744585b9565c7bb78782cf"}} +{"capturedUtc":"2026-05-19T16:10:24.5162719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"497f488ef311470695d591f2b72efa52"}} +{"capturedUtc":"2026-05-19T16:10:44.5974665+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed04082339424a568f10f29e3a57f93d"}} +{"capturedUtc":"2026-05-19T16:11:04.6654955+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c51a92394eca49a0940bdd316b6545b5"}} +{"capturedUtc":"2026-05-19T16:11:24.8099727+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa70747486e14f8480d24f3a211a4fbc"}} +{"capturedUtc":"2026-05-19T16:11:45.1768426+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19735c7ff3034928acc9f3e02b48dadc"}} +{"capturedUtc":"2026-05-19T16:12:05.2620701+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f5cf9a1717524f1a9c06ccfdb31b961e"}} +{"capturedUtc":"2026-05-19T16:12:25.8270417+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e765f23f02e446789412ff906e9b9b7f"}} +{"capturedUtc":"2026-05-19T16:12:45.9395311+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe6af22b4a924d03a88889855cecfc7e"}} +{"capturedUtc":"2026-05-19T16:13:06.9000816+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"635fedb27e51402791cfe0387eb4025f"}} +{"capturedUtc":"2026-05-19T16:13:28.3219366+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a936d410f614023b7aabc01d84a0508"}} +{"capturedUtc":"2026-05-19T16:13:49.010978+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1ea33d8effc845dc868ac1063c090c3e"}} +{"capturedUtc":"2026-05-19T16:14:09.0871301+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3f8ed41e78b4f7c8aede47486faa4f2"}} +{"capturedUtc":"2026-05-19T16:14:29.1588327+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a476b5beec644c4b858758f12dca729d"}} +{"capturedUtc":"2026-05-19T16:14:50.1269371+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ae98970831b4debbd9c0d211f2116ae"}} +{"capturedUtc":"2026-05-19T16:15:10.2157688+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9867e47d89ec4764b0ba21f289af5ac7"}} +{"capturedUtc":"2026-05-19T16:15:32.4256735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ceb2cb261a3b470ea468cd9b926d145d"}} +{"capturedUtc":"2026-05-19T16:15:53.2582642+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ca40c3a0b4324e89a46a36ee18cb6509"}} +{"capturedUtc":"2026-05-19T16:16:14.3307388+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ffdb64c0a7bb44dfbb83649cd17d5126"}} +{"capturedUtc":"2026-05-19T16:16:34.424006+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d43076ec8124bdba8ce38cbb1a395d0"}} +{"capturedUtc":"2026-05-19T16:16:55.1940284+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9c9997961cd43fe8455e0b1eaf438cc"}} +{"capturedUtc":"2026-05-19T16:17:16.5544897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"213b25403eaf48d295b42c7fe111bcb7"}} +{"capturedUtc":"2026-05-19T16:17:37.5769086+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"17015cd4fa054f3d8a5661281172f99c"}} +{"capturedUtc":"2026-05-19T16:17:58.5439016+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"184194acda8a4c1593fe55c5a02f9f0e"}} +{"capturedUtc":"2026-05-19T16:18:19.5485746+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9ae7561fd0124e3e94a620c60635c777"}} +{"capturedUtc":"2026-05-19T16:18:39.6354328+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d55748d60cb44fa9bc6ba0f83aa51545"}} +{"capturedUtc":"2026-05-19T16:19:00.6911549+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d749db825a704b77a167fe03047a0d36"}} +{"capturedUtc":"2026-05-19T16:19:20.7816308+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dce8475fbc4040ceb106eaad61e9fde0"}} +{"capturedUtc":"2026-05-19T16:19:42.7275368+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d07f0f6e003c4d0982ffae8f03cdcc7e"}} +{"capturedUtc":"2026-05-19T16:20:02.8438338+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35e50e766edf40a293e05b912da91a0d"}} +{"capturedUtc":"2026-05-19T16:20:23.8305453+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba270a57bd6946ac9e1956a7c9c04dc4"}} +{"capturedUtc":"2026-05-19T16:20:43.914536+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"80c7d4f796b64af2810e22a8b03dd97d"}} +{"capturedUtc":"2026-05-19T16:21:04.9088726+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20889042c874424b8856d0409ce09d12"}} +{"capturedUtc":"2026-05-19T16:21:25.0028888+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"88e43f470a204f499a05b200f9f5afd6"}} +{"capturedUtc":"2026-05-19T16:21:46.0125351+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b3326ff5af1145d2a8c91172d1fa7712"}} +{"capturedUtc":"2026-05-19T16:22:06.182448+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5cd31e8d2ada47999edd5b4454a19e8d"}} +{"capturedUtc":"2026-05-19T16:22:27.1174935+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f855f73b21f74dc6a14c22b56b6fab26"}} +{"capturedUtc":"2026-05-19T16:22:47.2970025+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e5a1f30b617c47dfb241258852ddb772"}} +{"capturedUtc":"2026-05-19T16:23:08.2345263+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"13146d14b2c84f5e959cbe0f1ecb5b55"}} +{"capturedUtc":"2026-05-19T16:23:28.3239662+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd3a1cd4d8f54834a8b20a8c089f65e5"}} +{"capturedUtc":"2026-05-19T16:23:49.3954987+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a4de35804af745c3958b0e05d48a9973"}} +{"capturedUtc":"2026-05-19T16:24:09.4695184+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"307d1c5cbe51403e944d48bb8c451e8b"}} +{"capturedUtc":"2026-05-19T16:24:30.4850024+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"522230787a6d4cbd98dfc5234404f4e8"}} +{"capturedUtc":"2026-05-19T16:24:50.58956+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7ce74a49f13847ebac174bc646bd956a"}} +{"capturedUtc":"2026-05-19T16:25:11.5400405+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a8645c3cb2f4afa846b0ebc098cb0c1"}} +{"capturedUtc":"2026-05-19T16:25:31.649839+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"385bc19b23f3406390438db80d7d2dfc"}} +{"capturedUtc":"2026-05-19T16:25:52.9529222+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"18065c54e54b4250b9d01698be055c5f"}} +{"capturedUtc":"2026-05-19T16:26:13.8395285+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"99c7e6331a0c497581f444f6279d593e"}} +{"capturedUtc":"2026-05-19T16:26:33.935523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"81f39a5efbca445ca96e77e30f5bd678"}} +{"capturedUtc":"2026-05-19T16:26:54.8936339+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b6243a1c479f4a779cc1b3a3a99367f4"}} +{"capturedUtc":"2026-05-19T16:27:14.9904416+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16e82dc85c7143a9835f5e1b9a788aef"}} +{"capturedUtc":"2026-05-19T16:27:36.9509164+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56755683631d4e2fbca4fba22fdabb34"}} +{"capturedUtc":"2026-05-19T16:27:58.279534+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fed6ee5fe694429caeeea46113c2b0c0"}} +{"capturedUtc":"2026-05-19T16:28:19.1447369+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0524581204f7470b914264005e269188"}} +{"capturedUtc":"2026-05-19T16:28:39.2545922+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9fcf75aa90d6484ab40f3cb282b73cb1"}} +{"capturedUtc":"2026-05-19T16:29:00.2726977+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9b38b868aa5f451b95c82bfd1ed582a2"}} +{"capturedUtc":"2026-05-19T16:29:21.290685+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7dec0e1e40aa499d8cc9794fd716c24c"}} +{"capturedUtc":"2026-05-19T16:29:42.3302577+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"55ab54d1a6f84d4091888330b7c70828"}} +{"capturedUtc":"2026-05-19T16:30:07.6289613+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9b7fd623559c4c9bbf0e9ef68be11b1a"}} +{"capturedUtc":"2026-05-19T16:30:14.4185165+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7715a813eefd481ca15413723c01bada"}} +{"capturedUtc":"2026-05-19T16:30:15.2686007+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8d089d7be664be78edb2c005039dd57"}} +{"capturedUtc":"2026-05-19T16:30:17.3847557+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ccb2b3258584939bf82c1f4b21612a9"}} +{"capturedUtc":"2026-05-19T16:30:28.4162685+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f9bdc143c73449b9cf3a41a0ea9b843"}} +{"capturedUtc":"2026-05-19T16:30:49.5039701+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd7b73f024584d3b83be0bb1abc8344a"}} +{"capturedUtc":"2026-05-19T16:31:09.5928533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7a7f16a1d94446e9f09de65330d2386"}} +{"capturedUtc":"2026-05-19T16:31:29.6765553+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76dffd1bdd8a4920844dc8900a6ff2dd"}} +{"capturedUtc":"2026-05-19T16:31:50.5814401+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e9cea6f267764d5bb4e5f9265ca52e19"}} +{"capturedUtc":"2026-05-19T16:32:08.3882871+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e746651651b4879bbce671e3dbd9b3f"}} +{"capturedUtc":"2026-05-19T16:32:09.0576237+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"6a4824dee1eb4998ab2db5f0c58c6ba6"}} +{"capturedUtc":"2026-05-19T16:32:10.7056406+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"617f83bf9ab84b0084b5432c4af189ab"}} +{"capturedUtc":"2026-05-19T16:32:30.7800031+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"84bdedb5482e491c9c6505052a162c7e"}} +{"capturedUtc":"2026-05-19T16:32:51.7725515+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16d95fdd9f41482f995bdd89c2ae598c"}} +{"capturedUtc":"2026-05-19T16:33:11.8640552+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"036247ca6d1148a9b6028115ec6172cf"}} +{"capturedUtc":"2026-05-19T16:33:32.8865318+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"369077053bdc4cb381f42f693bcd9051"}} +{"capturedUtc":"2026-05-19T16:33:53.891958+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"798a36ebe3f84b9b861af02c3a5e9aed"}} +{"capturedUtc":"2026-05-19T16:34:14.6304826+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"61b597fee38f4cb49bb1ab224cf7a4ba"}} +{"capturedUtc":"2026-05-19T16:34:34.997447+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4023f87485034454a746be053e8e44c4"}} +{"capturedUtc":"2026-05-19T16:34:55.2689686+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f96022a2a3774a448cf41eb637af5c53"}} +{"capturedUtc":"2026-05-19T16:35:15.3627425+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6104f59600864807839b7cf52eaac663"}} +{"capturedUtc":"2026-05-19T16:35:36.1604442+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"700d4332443b4971981e00de5bb95fa3"}} +{"capturedUtc":"2026-05-19T16:35:56.2414856+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0ee1fb3ea4214210b12c0a6c2d109e22"}} +{"capturedUtc":"2026-05-19T16:36:18.3770828+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"69b88f3f89a140018910b2e0023d471e"}} +{"capturedUtc":"2026-05-19T16:36:38.4554747+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf50c3e758394fdd83e6a7965cac8437"}} +{"capturedUtc":"2026-05-19T16:36:58.568782+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4488552932ee4265ad695eb660270f5b"}} +{"capturedUtc":"2026-05-19T16:37:18.9465134+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"320a343263a94bdd84972082140a74ef"}} +{"capturedUtc":"2026-05-19T16:37:40.4870925+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39603de0e87e44568335df095a37c947"}} +{"capturedUtc":"2026-05-19T16:38:00.57203+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c259fc672a024ddca2d4a86d831e9cce"}} +{"capturedUtc":"2026-05-19T16:38:20.9253755+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41a9b0695dd04661a9a321634895b3d5"}} +{"capturedUtc":"2026-05-19T16:38:41.5834961+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5c04d1cdf4c146b1a703578a5247a74f"}} +{"capturedUtc":"2026-05-19T16:39:01.6764467+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6abc758b89b34ddd89732713c4470c65"}} +{"capturedUtc":"2026-05-19T16:39:22.6619058+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c56f4722abee4403b07351b87e8b1562"}} +{"capturedUtc":"2026-05-19T16:39:42.7949385+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0ddcb4f8dbca4aa38a0a72fd73736f68"}} +{"capturedUtc":"2026-05-19T16:40:03.7485209+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1154e12f6b62499f9c76903e7e3ddb4a"}} +{"capturedUtc":"2026-05-19T16:40:25.2260538+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3be34bec4ce7479a877e75045f1e910a"}} +{"capturedUtc":"2026-05-19T16:40:45.8915407+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"17799d1a153b4149aac936710428169e"}} +{"capturedUtc":"2026-05-19T16:41:05.9807205+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a2588a0ad9c2480aa2ca15daaf2c9eec"}} +{"capturedUtc":"2026-05-19T16:41:26.982471+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"610f176e8ab74070ae396bddfa00c0fd"}} +{"capturedUtc":"2026-05-19T16:41:47.0636004+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e4643de8b794679a20df2e055af67bc"}} +{"capturedUtc":"2026-05-19T16:42:08.1709003+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7cf25d0eef4a48308e23b209f44b9cde"}} +{"capturedUtc":"2026-05-19T16:42:29.5585177+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7c1c1a3e6e84e2c914432a8593d4e0a"}} +{"capturedUtc":"2026-05-19T16:42:50.2209053+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15534a740d434060b99fe95fa7de69e9"}} +{"capturedUtc":"2026-05-19T16:43:10.4079361+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5beed4c4b6b94cfea906e5c22645b166"}} +{"capturedUtc":"2026-05-19T16:43:31.3676751+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3b04d92c6ff8497eb4f094d749634058"}} +{"capturedUtc":"2026-05-19T16:43:51.4579643+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"987581c9ad7c41f1be07c019018d0481"}} +{"capturedUtc":"2026-05-19T16:44:12.4318988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e2c81f532555412b98c551b12e9e1646"}} +{"capturedUtc":"2026-05-19T16:44:32.504455+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed5b37fcdd7d4e5c9a7feef2b51c2066"}} +{"capturedUtc":"2026-05-19T16:44:52.6109737+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3f8279f56d1d41518ec2f73f00b30feb"}} +{"capturedUtc":"2026-05-19T16:45:13.621752+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f6d09d760b114ed68a0705c51b7fafcf"}} +{"capturedUtc":"2026-05-19T16:45:34.6239594+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0664023808f448f7a2d32c5ad4257b33"}} +{"capturedUtc":"2026-05-19T16:45:54.7339852+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2693987122ed4701bfd563eb33941f0a"}} +{"capturedUtc":"2026-05-19T16:46:15.3119223+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5639f994a8c546e09029e7bfd1e1c062"}} +{"capturedUtc":"2026-05-19T16:46:35.4107541+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0291519838f5434da3ed48375e54be4f"}} +{"capturedUtc":"2026-05-19T16:46:55.8914231+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e84aa65cd7d945dfa1915079a414cf27"}} +{"capturedUtc":"2026-05-19T16:47:16.8576735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3fae99280f1c46adbfede78d8fe4db59"}} +{"capturedUtc":"2026-05-19T16:47:36.92796+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df3c5891954344459d7a587ac0b785e9"}} +{"capturedUtc":"2026-05-19T16:47:57.9339609+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e2d256ea0b6e457ea70cca0b37dc205c"}} +{"capturedUtc":"2026-05-19T16:48:18.0168285+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d2adfcb268dd4ed18188ccd9ca8e2755"}} +{"capturedUtc":"2026-05-19T16:48:39.1218389+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"379e6ac8fd9f45978110b95e4bf9370f"}} +{"capturedUtc":"2026-05-19T16:49:00.1765956+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4411909039c44b278a93415901966b51"}} +{"capturedUtc":"2026-05-19T16:49:20.2857107+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc305d899139451098664a6029d73f7b"}} +{"capturedUtc":"2026-05-19T16:49:41.242954+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bb1903b2075f45718200b22dad674094"}} +{"capturedUtc":"2026-05-19T16:50:01.3169893+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7718d46cbea0447ea1274316a8937872"}} +{"capturedUtc":"2026-05-19T16:50:21.4014746+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c794cd7be38e41fdb5cc149e90f18312"}} +{"capturedUtc":"2026-05-19T16:50:42.3653041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f740bf3f12c348c6834bb92ea66e3887"}} +{"capturedUtc":"2026-05-19T16:51:02.4645093+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3672aca36f1443ee88b04aad25b3f0ef"}} +{"capturedUtc":"2026-05-19T16:51:22.6199813+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc6f907ffad14c04a0db777dd69218d3"}} +{"capturedUtc":"2026-05-19T16:51:43.5535677+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a6518a3610b94d489d32ad1b08e93445"}} +{"capturedUtc":"2026-05-19T16:52:04.6210071+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe1826f1c4474d6a845699dab09c856b"}} +{"capturedUtc":"2026-05-19T16:52:24.7034296+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2727e7cefa324af9b37b49049d6dfc65"}} +{"capturedUtc":"2026-05-19T16:52:44.7849812+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71efe6622d784e62aeb6f5e12b51e829"}} +{"capturedUtc":"2026-05-19T16:53:05.3413431+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6b9a38ed856645ed9ac8d15e45cf9d90"}} +{"capturedUtc":"2026-05-19T16:53:25.4345683+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0fc8065fb2164f6b88b32e063489ba00"}} +{"capturedUtc":"2026-05-19T16:53:45.7995434+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c206b04a0c74f30ae8cd1f859caaf5c"}} +{"capturedUtc":"2026-05-19T16:54:06.2570456+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d6696e7632054e5aaf7e303b94ad562f"}} +{"capturedUtc":"2026-05-19T16:54:27.3521454+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5b4aada8f15f46dba1929b03f76acca3"}} +{"capturedUtc":"2026-05-19T16:54:48.3443354+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"34da1db1f849433597ba0756dd84b3fa"}} +{"capturedUtc":"2026-05-19T16:55:09.1323044+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eea64323024449b983ee24d6f6d357aa"}} +{"capturedUtc":"2026-05-19T16:55:30.021644+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc2edf85e81e4d57afa8be8986ee67cf"}} +{"capturedUtc":"2026-05-19T16:55:50.1149337+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7476d5518174348b71225690e2ae7ee"}} +{"capturedUtc":"2026-05-19T16:56:10.1971849+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eff0638d33d0418ab59bc3cb8e66192d"}} +{"capturedUtc":"2026-05-19T16:56:31.4675523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"347d870a9c8d4b4e96d036ddac919c5a"}} +{"capturedUtc":"2026-05-19T16:56:52.3524013+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2c1ab281f11b4fe689cacf8601292b1a"}} +{"capturedUtc":"2026-05-19T16:57:13.4450773+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a898d2033196459bbbf2c04950779bb4"}} +{"capturedUtc":"2026-05-19T16:57:35.3075079+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"787e565f5d554dbc8919f4dc195dd583"}} +{"capturedUtc":"2026-05-19T16:57:55.474938+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"38acd9f4d72d4205aecc2f23d88d660a"}} +{"capturedUtc":"2026-05-19T16:58:15.5496401+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"07278796118c45c3991d08e6b3491ae1"}} +{"capturedUtc":"2026-05-19T16:58:36.3937049+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cdc088df63d348e2924cdc7825de2722"}} +{"capturedUtc":"2026-05-19T16:58:56.4817496+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e025fc0c8894457181c3f51ff8e94824"}} +{"capturedUtc":"2026-05-19T16:59:16.6284001+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"572bfbb186b84e0e836643487540b92a"}} +{"capturedUtc":"2026-05-19T16:59:37.5718568+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d779d856e852422b94001d7b7c522372"}} +{"capturedUtc":"2026-05-19T16:59:57.6486852+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"234bdaf7658f429b95f70df1f519eb6b"}} +{"capturedUtc":"2026-05-19T17:00:17.7596724+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"67be3d95890a43c3905d1bc95e479a14"}} +{"capturedUtc":"2026-05-19T17:00:38.6955124+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bee6fb1d5a6c42b1901bb591148ddfad"}} +{"capturedUtc":"2026-05-19T17:00:58.7553408+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8d083bb47cf4f05a3fd4bbc5ccfe718"}} +{"capturedUtc":"2026-05-19T17:01:19.8120086+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7e24698715342e19669a23ecf504015"}} +{"capturedUtc":"2026-05-19T17:01:39.8939892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ddff9eeb052849a98525c3ef30e303cd"}} +{"capturedUtc":"2026-05-19T17:01:59.9836096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd01ae5829f948f883ce2be06e987c8b"}} +{"capturedUtc":"2026-05-19T17:02:19.9438031+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e6ae559601094dbe96110d82e05d1e53"}} +{"capturedUtc":"2026-05-19T17:02:20.05189+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a4602aca04f049079eee597000bba420"}} +{"capturedUtc":"2026-05-19T17:02:20.1669431+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"880cb36deec848d3b8bd9064b610fd56"}} +{"capturedUtc":"2026-05-19T17:02:40.9565389+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a43dfdc05044fcbbd5d6c5c8b33cad0"}} +{"capturedUtc":"2026-05-19T17:03:01.0257335+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"411bdbc3f64b403185d2dbcbb46dd727"}} +{"capturedUtc":"2026-05-19T17:03:21.1521443+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76caa658472e41d6991b85273d0929fb"}} +{"capturedUtc":"2026-05-19T17:03:42.1086899+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d0f72836118c4fabbd2972aaa973f205"}} +{"capturedUtc":"2026-05-19T17:04:02.227859+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c464992c54de48d6b9fdc3b1b649729b"}} +{"capturedUtc":"2026-05-19T17:04:23.2109071+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b464f243e307410cbad52c2efa26ab65"}} +{"capturedUtc":"2026-05-19T17:04:44.2445171+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b06c8368c96d40e3bf53ef0d87d68fe3"}} +{"capturedUtc":"2026-05-19T17:05:04.3285581+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b0c8104078140bc957fb2be2e35eb39"}} +{"capturedUtc":"2026-05-19T17:05:24.3987604+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14aa60081fdb4e3195d7b9fd7d0f500b"}} +{"capturedUtc":"2026-05-19T17:05:45.4899785+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7168454971b241a6b900db96cc929663"}} +{"capturedUtc":"2026-05-19T17:06:05.5707525+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6dca4634fc404eb8bc2911e1df162344"}} +{"capturedUtc":"2026-05-19T17:06:26.5329255+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"44dbd216f4e741519155d58eb5d90504"}} +{"capturedUtc":"2026-05-19T17:06:47.6005243+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9b1a16eba901455a9cb27712f54a94af"}} +{"capturedUtc":"2026-05-19T17:07:07.6898498+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bc33076de7624023b81f62e223ee1fa2"}} +{"capturedUtc":"2026-05-19T17:07:27.7826024+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4c40fadc1324d0593fc454a7d7e19c3"}} +{"capturedUtc":"2026-05-19T17:07:47.8544607+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"00e8da5c3188405cb26a4111c2f28018"}} +{"capturedUtc":"2026-05-19T17:08:08.785962+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2196ff4f91e74d0181e04d66ac113b7d"}} +{"capturedUtc":"2026-05-19T17:08:28.873647+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"252670a102d0413aa730f1bbfa4ec2dc"}} +{"capturedUtc":"2026-05-19T17:08:53.9234845+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fd02db1b2acb4c01aa9d97746b77928a"}} +{"capturedUtc":"2026-05-19T17:09:14.90982+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8d9d1ef01dc44647aa18d70d24269c0e"}} +{"capturedUtc":"2026-05-19T17:09:35.0807844+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"de1a5fa038484009989afaaffc9db086"}} +{"capturedUtc":"2026-05-19T17:09:55.404941+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d22d1560825649f58cb9ee54dcb97a03"}} +{"capturedUtc":"2026-05-19T17:10:15.4805427+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f51ba4368b154a2fa10c5ce405199562"}} +{"capturedUtc":"2026-05-19T17:10:36.100556+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5da2725da36a4e5ab90dd04a1712ff60"}} +{"capturedUtc":"2026-05-19T17:10:56.1768112+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"759909af11fe4df989e8eef46bee4305"}} +{"capturedUtc":"2026-05-19T17:11:16.251983+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8555b7b1465e42d3a535a9102207d3f4"}} +{"capturedUtc":"2026-05-19T17:11:36.3747379+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"725a63f14aed4ac5ab0e2559d6b977d1"}} +{"capturedUtc":"2026-05-19T17:11:57.362005+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7f4813d36cd43eebd15fa5552ba3125"}} +{"capturedUtc":"2026-05-19T17:12:17.4385694+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41949622eadf449aaaca838323e09b27"}} +{"capturedUtc":"2026-05-19T17:12:37.5447868+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f5685e185574442cbfab8298e2c39261"}} +{"capturedUtc":"2026-05-19T17:12:58.4369246+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7ddcfe9042e4e0988a8a561458633c1"}} +{"capturedUtc":"2026-05-19T17:13:18.5709971+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ce2192e45904d2aa8b269ce37292f3c"}} +{"capturedUtc":"2026-05-19T17:13:39.5959006+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"70330fc54b84428c933418c96df403cc"}} +{"capturedUtc":"2026-05-19T17:14:00.8550833+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"10b30a7846c34fe384f8abcc3956a8c4"}} +{"capturedUtc":"2026-05-19T17:14:21.6808735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ad5e8e474b104c92b8be07c61917f8f3"}} +{"capturedUtc":"2026-05-19T17:14:41.7754938+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0caf05a898af4a0b97cf518c9eb1c2e5"}} +{"capturedUtc":"2026-05-19T17:15:01.90989+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8efb9e4d9c334ce7bd6fd027b432ba83"}} +{"capturedUtc":"2026-05-19T17:15:22.8175018+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b87f856970ec4f83b0f41d9ea11dd30c"}} +{"capturedUtc":"2026-05-19T17:15:43.8808386+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ef45b0d83b1948ff87265e3966b763d6"}} +{"capturedUtc":"2026-05-19T17:16:03.980642+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ff1d09bd5e94ca4b4532f3bcc9ac15a"}} +{"capturedUtc":"2026-05-19T17:16:24.9759905+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3c7350fbaefa44828cef1fe804b7ca56"}} +{"capturedUtc":"2026-05-19T17:16:45.0529889+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dbe8d2574fc7433b959b83801853dd11"}} +{"capturedUtc":"2026-05-19T17:17:05.1397055+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"84e298c62990450db16e39ee1c0b4f8e"}} +{"capturedUtc":"2026-05-19T17:17:25.4547771+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5fe0392d3cb94af89ebfaf99d7b97881"}} +{"capturedUtc":"2026-05-19T17:17:47.2196229+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6effcb36556a435eb3d2dbc7723ce058"}} +{"capturedUtc":"2026-05-19T17:18:08.1908916+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"101cc9acf2dd483ab43661fdca83a6d5"}} +{"capturedUtc":"2026-05-19T17:18:28.28186+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2652589844ef4d98bae8472f85aaec79"}} +{"capturedUtc":"2026-05-19T17:18:48.3969898+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c75b3ac970f4bbb84f4ba071bcd92cf"}} +{"capturedUtc":"2026-05-19T17:19:09.3074381+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15270653aab7401b9d20d5ce8bdd1243"}} +{"capturedUtc":"2026-05-19T17:19:29.4934742+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a0d42d47878240c7a3bc9b1c00581a8c"}} +{"capturedUtc":"2026-05-19T17:19:51.3707087+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f6fd38c690ab44a5bd2d82f517fde859"}} +{"capturedUtc":"2026-05-19T17:20:11.4726251+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0ea3406d3b4f491381726f4cdbbbdbec"}} +{"capturedUtc":"2026-05-19T17:20:22.4568903+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90cb4b02efa24cdf9f0ebd52cc3fd0f8"}} +{"capturedUtc":"2026-05-19T17:20:31.5426995+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a125de8e0a54f489502ab45da9b2869"}} +{"capturedUtc":"2026-05-19T17:20:52.5119245+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3fda9e45f53d4251a14015d02463409a"}} +{"capturedUtc":"2026-05-19T17:21:12.6348182+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5c78d5934412407dbf165e6985bd5e39"}} +{"capturedUtc":"2026-05-19T17:21:33.6894821+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"22e35d5b8dea490294caeaac0399a596"}} +{"capturedUtc":"2026-05-19T17:21:55.5429481+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ef28d1b107f54c01b8d5787d0bf8ed7e"}} +{"capturedUtc":"2026-05-19T17:22:15.7979704+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90d21d66acb045e1bd2e076148759a33"}} +{"capturedUtc":"2026-05-19T17:22:35.8766061+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a43d56f769d4f518c8d5388a3cb60d5"}} +{"capturedUtc":"2026-05-19T17:22:56.8315347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"22897d06602644dca8b8642a002ad3e4"}} +{"capturedUtc":"2026-05-19T17:23:16.9045279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e59ee811dc04011a3c1bafc8dd3d639"}} +{"capturedUtc":"2026-05-19T17:23:37.8989168+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8facc59d02247d39d7e4fb83af2fd9c"}} +{"capturedUtc":"2026-05-19T17:23:59.2439488+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cce084d42b984d788028cd1366fe4c47"}} +{"capturedUtc":"2026-05-19T17:24:20.0809542+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b5b1a63ebf4b4f98958599481810c546"}} +{"capturedUtc":"2026-05-19T17:24:40.1887912+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a532bca9cd24a719e255f34382f91a9"}} +{"capturedUtc":"2026-05-19T17:25:01.2046199+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95084a381166483690d7885016e70aab"}} +{"capturedUtc":"2026-05-19T17:25:21.2968707+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ad28f741c614f67b293a23e0c7b5175"}} +{"capturedUtc":"2026-05-19T17:25:42.2351617+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15edd171c7fa4a1385efd1937c401b81"}} +{"capturedUtc":"2026-05-19T17:26:04.2978352+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bfb3cff7aef7411ab8ce48bda8b5e9ac"}} +{"capturedUtc":"2026-05-19T17:26:25.3615395+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d55f257b5885440ab3aac76e515dc897"}} +{"capturedUtc":"2026-05-19T17:26:45.546517+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e953b2bd70034dcf91ef48332524273f"}} +{"capturedUtc":"2026-05-19T17:27:06.4180456+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83b89e6228ab4e789a282923ac3b556a"}} +{"capturedUtc":"2026-05-19T17:27:26.4939453+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2dbc78bfebca456897ebf1a2f3752e2c"}} +{"capturedUtc":"2026-05-19T17:27:47.5135377+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"06c5022411654b0cb2a6a43181124611"}} +{"capturedUtc":"2026-05-19T17:28:10.604304+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41ae0ae4f5f643879d919de5a19a1afd"}} +{"capturedUtc":"2026-05-19T17:28:31.6766658+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a36e1f4a4c34aaea6f0067754da9561"}} +{"capturedUtc":"2026-05-19T17:28:52.7048034+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"54e058e2272046ca931f703b27f8b922"}} +{"capturedUtc":"2026-05-19T17:29:13.789964+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bad24535a35f43cdb4377ae3ca897b6a"}} +{"capturedUtc":"2026-05-19T17:29:34.7938135+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14adb2850754465985c27e7936b9ac1e"}} +{"capturedUtc":"2026-05-19T17:29:54.8616757+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2dd59254ca264640ad6eebdb4e58eff7"}} +{"capturedUtc":"2026-05-19T17:30:15.4909618+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"44b8fda21c194d6288323e71abca3ad9"}} +{"capturedUtc":"2026-05-19T17:30:35.6154418+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7c783f6ecd494f7b8c52b2b2715357fa"}} +{"capturedUtc":"2026-05-19T17:30:55.9799944+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45501dad182b4908bdc4f5853a19fe67"}} +{"capturedUtc":"2026-05-19T17:31:16.0967511+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b207a0a1568c4208addfb59eedba526e"}} +{"capturedUtc":"2026-05-19T17:31:37.050381+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"51509f42600b444398e757fc90853ee1"}} +{"capturedUtc":"2026-05-19T17:31:57.2235093+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cae6be8a81864c019d9dd36a467f932b"}} +{"capturedUtc":"2026-05-19T17:32:20.172429+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f223079c96c24b33956f81c6341e941b"}} +{"capturedUtc":"2026-05-19T17:32:32.4308931+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec6086fee73949efb4e34cdae50e1e23"}} +{"capturedUtc":"2026-05-19T17:32:33.3028297+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"552ebe7afab6460ead89780726af5633"}} +{"capturedUtc":"2026-05-19T17:32:40.2607423+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7ded7cba0a8472d9da499d85dd92e4c"}} +{"capturedUtc":"2026-05-19T17:33:00.3784083+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d58e5bb6f1044c7c874f9ca520528792"}} +{"capturedUtc":"2026-05-19T17:33:20.459309+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7ab44a1d83ca423ba6be2be13edb2c4f"}} +{"capturedUtc":"2026-05-19T17:33:40.5329698+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"01fd1d22d7ac409cb3ceb69c988a78a3"}} +{"capturedUtc":"2026-05-19T17:34:01.4234754+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f8d3a49fa3941fdbd18f2da63fc52fc"}} +{"capturedUtc":"2026-05-19T17:34:22.5484806+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3f323778dd4342899502157b18d59642"}} +{"capturedUtc":"2026-05-19T17:34:42.6287123+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb5d95241e214c9cb02536026d94e15c"}} +{"capturedUtc":"2026-05-19T17:35:03.5799688+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8f8c63d438284cb0b9282db49beec9f2"}} +{"capturedUtc":"2026-05-19T17:35:23.7399275+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"370215f021a84b21af3e337d54c35b78"}} +{"capturedUtc":"2026-05-19T17:35:44.663298+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"831f80fb5e494c589d44232212f752da"}} +{"capturedUtc":"2026-05-19T17:36:04.7707131+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a1751f1cba049b2a832137b0a2249a0"}} +{"capturedUtc":"2026-05-19T17:36:25.54992+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ef3d40fd9624dbe9770f279d541e5fc"}} +{"capturedUtc":"2026-05-19T17:36:46.7978995+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7fa51c32a1a4feda268f48b139e9cf2"}} +{"capturedUtc":"2026-05-19T17:37:06.9109239+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ca1a67d5fdf945cc9b111ad83c8987b4"}} +{"capturedUtc":"2026-05-19T17:37:27.8679013+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75cc2bec4b0d453aa5913856908cedd2"}} +{"capturedUtc":"2026-05-19T17:37:47.9819789+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a506d77e4c5247a39a823c3f4a47178c"}} +{"capturedUtc":"2026-05-19T17:38:08.9455643+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3df6dc42f6a045ccb1c5e238a6518f88"}} +{"capturedUtc":"2026-05-19T17:38:30.2160519+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f184f86c50884f1d89df5be39ef9b795"}} +{"capturedUtc":"2026-05-19T17:38:51.051817+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0c1a3903758a46dca7c090057e2a1cf2"}} +{"capturedUtc":"2026-05-19T17:39:11.1285476+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e82657582314da7b35fccbce17964d0"}} +{"capturedUtc":"2026-05-19T17:39:31.2219655+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bf4aa7dd141a4cf691a1700ce0b3434d"}} +{"capturedUtc":"2026-05-19T17:39:51.3208433+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ecfb842055124c4b97fe1cfc830d3823"}} +{"capturedUtc":"2026-05-19T17:40:12.2474717+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0d2d11c9a112438994729fed44f18b08"}} +{"capturedUtc":"2026-05-19T17:40:32.3944473+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5c6925b61e6749a88f4ef6eb40ae7916"}} +{"capturedUtc":"2026-05-19T17:40:52.5109338+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7894f49232ad436483ec8101f5e99d70"}} +{"capturedUtc":"2026-05-19T17:41:13.4705594+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"65560cee704c47aa8e36bd018b4380e6"}} +{"capturedUtc":"2026-05-19T17:41:33.5743783+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d584a1b0c7664ff0b5116fac1c95b797"}} +{"capturedUtc":"2026-05-19T17:41:54.5159147+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a5aec48025543a6960c5998ceb6b831"}} +{"capturedUtc":"2026-05-19T17:42:14.6018912+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"26a7ce2b1b214fccb8fe50096f475ad0"}} +{"capturedUtc":"2026-05-19T17:42:34.6994427+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4c0cd2d693584d1481594964d60412c5"}} +{"capturedUtc":"2026-05-19T17:42:55.5475563+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cb0b97823e104181a703610086c1c6d3"}} +{"capturedUtc":"2026-05-19T17:43:15.6289256+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"82a8cdefb5bb40f48c34432d3e80a95e"}} +{"capturedUtc":"2026-05-19T17:43:35.8310066+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f965780dc5904d4fad1b42ab2f253cb2"}} +{"capturedUtc":"2026-05-19T17:43:55.9563793+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8e1deb76f9c54c3182f9a75fda84e38d"}} +{"capturedUtc":"2026-05-19T17:44:16.9452346+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"01fc4428b87f40968d51573af5e3ef4d"}} +{"capturedUtc":"2026-05-19T17:44:37.0468121+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac4543e1cd2744e992bfc91e42506219"}} +{"capturedUtc":"2026-05-19T17:44:58.0334822+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35d76cbbb52f48549b6f6ec9f8ff871e"}} +{"capturedUtc":"2026-05-19T17:45:18.1156614+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a6b2843eb44040ab8206555d21645763"}} +{"capturedUtc":"2026-05-19T17:45:38.1862534+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c3f3a17903443c78d634bb502baef6a"}} +{"capturedUtc":"2026-05-19T17:45:59.1715576+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4bc7061225eb4d69aa45d415a034f456"}} +{"capturedUtc":"2026-05-19T17:46:19.2649677+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b489b38b67044fe8a4a94272f4d10864"}} +{"capturedUtc":"2026-05-19T17:46:40.2249553+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7cb4d3799a04d7bbaecbfc200f3ffc7"}} +{"capturedUtc":"2026-05-19T17:47:00.3995631+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6605bc0f9774abab0f925bfef55922f"}} +{"capturedUtc":"2026-05-19T17:47:25.5345068+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"68ddeec75d80459c89cd5a81e016dbaf"}} +{"capturedUtc":"2026-05-19T17:47:45.7020278+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76da286ee384459ab8650b0d562fb39a"}} +{"capturedUtc":"2026-05-19T17:48:06.6468157+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2d610cde33e54980b0910a98d981d7be"}} +{"capturedUtc":"2026-05-19T17:48:26.7289672+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ec4902a394444a78d05cb39cb47862c"}} +{"capturedUtc":"2026-05-19T17:48:47.7389027+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9202e1dafced4c58a1d59647c890e871"}} +{"capturedUtc":"2026-05-19T17:49:07.9949726+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"07caa138c3964f419f4fa6c475e114cc"}} +{"capturedUtc":"2026-05-19T17:49:28.0939882+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"85cff571033f4fb5b10bdfdaaacd73b2"}} +{"capturedUtc":"2026-05-19T17:49:49.0675612+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1559057e6b094d54b50429dc05c57d24"}} +{"capturedUtc":"2026-05-19T17:50:09.2145346+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29aa69319be84af692e4dc3db759831e"}} +{"capturedUtc":"2026-05-19T17:50:29.3048978+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2971d671278849c0b69e2623113fe318"}} +{"capturedUtc":"2026-05-19T17:50:49.3858124+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"db029b41dfb1472387ae581eac8cd4bf"}} +{"capturedUtc":"2026-05-19T17:51:09.4666901+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16bd4c1f3d23490bbcdc389e1350c8ac"}} +{"capturedUtc":"2026-05-19T17:51:30.3360138+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7cd8affcbb0c40adbd35dfdcef52f291"}} +{"capturedUtc":"2026-05-19T17:51:50.502166+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fa3b999e980c40a78f4fd1834ff3359c"}} +{"capturedUtc":"2026-05-19T17:52:10.7050856+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92335dc7cd8b4b4f9c6c4b1995960db6"}} +{"capturedUtc":"2026-05-19T17:52:31.451108+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7cc0846eadc241d5abf12284faa28397"}} +{"capturedUtc":"2026-05-19T17:52:51.5620155+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc57a0aa9f11432c9f6705f1f3b64dd7"}} +{"capturedUtc":"2026-05-19T17:53:11.6290366+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f87d0ac023f4ad9855f8a4c3273d7fa"}} +{"capturedUtc":"2026-05-19T17:53:32.586714+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f67f7f64e8a94e98883b79502ffbb446"}} +{"capturedUtc":"2026-05-19T17:53:52.7468547+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5973819903754ead8c897cd6ffefec3c"}} +{"capturedUtc":"2026-05-19T17:54:13.6597062+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df58ad942e2740e281e2e986a44e966a"}} +{"capturedUtc":"2026-05-19T17:54:33.759143+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a2a1f3c796de4ca7a871810e1aea35a0"}} +{"capturedUtc":"2026-05-19T17:54:54.7437966+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ea02584a373c4c93a1dfba0f7f752d17"}} +{"capturedUtc":"2026-05-19T17:55:14.8279041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"580eb7d310814d66a78931cf486fe7ec"}} +{"capturedUtc":"2026-05-19T17:55:34.9036428+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ab491c069143489da282aafd23d3eb55"}} +{"capturedUtc":"2026-05-19T17:55:55.5687527+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"171e22cb683449e493e3a125ee6130e3"}} +{"capturedUtc":"2026-05-19T17:56:15.6750069+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a8a320924664f2882e45402688e89eb"}} +{"capturedUtc":"2026-05-19T17:56:35.9289256+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d27084e39a8e496f80e987a8e9bdc9ed"}} +{"capturedUtc":"2026-05-19T17:56:56.0481207+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"203a1d9a1f054f4aa1e20d754516f356"}} +{"capturedUtc":"2026-05-19T17:57:17.0739169+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6bdbab54eda342e6bb3c2e028e5f2c18"}} +{"capturedUtc":"2026-05-19T17:57:37.1558943+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19f20fc5badc4e278df7fff5dfd271dc"}} +{"capturedUtc":"2026-05-19T17:57:57.2268879+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"584381aaea694332a48e3642660b172f"}} +{"capturedUtc":"2026-05-19T17:58:18.1704257+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b87af945d0274adea6ac8dea35e63135"}} +{"capturedUtc":"2026-05-19T17:58:38.2594893+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4e3a91b53ce40838f635f54a7317b58"}} +{"capturedUtc":"2026-05-19T17:58:58.3519567+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"08e6a3caa9644f4299b6aaaa2e4cfaac"}} +{"capturedUtc":"2026-05-19T17:59:18.4447424+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d7bc03a64e3a4ee2b4a2dc2aa449afcd"}} +{"capturedUtc":"2026-05-19T17:59:39.2319137+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2c9abfefef1841a985f71158eb4fc52f"}} +{"capturedUtc":"2026-05-19T17:59:59.4748788+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"81a569a811704031903e605222d59c25"}} +{"capturedUtc":"2026-05-19T18:00:19.6334845+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7537539eb4734b1cba745d34dc67cca6"}} +{"capturedUtc":"2026-05-19T18:00:40.5495164+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f0a1e199b59e4e368773bf52afb22777"}} +{"capturedUtc":"2026-05-19T18:01:00.792595+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec660a71b7d14ef997f2ddf283b3da7a"}} +{"capturedUtc":"2026-05-19T18:01:21.6800151+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6bca5c39e8e4a3b812480c8f62347d8"}} +{"capturedUtc":"2026-05-19T18:01:41.7916868+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3f217c473c5f41a2aa87d09705c741b2"}} +{"capturedUtc":"2026-05-19T18:02:02.8054399+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cca1fbf6d6e34ded9a51399393beb52e"}} +{"capturedUtc":"2026-05-19T18:02:22.8738977+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"026b0254f292428d847766dbec45ac1b"}} +{"capturedUtc":"2026-05-19T18:02:39.4034797+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a76c6c156db4b42a9e7b83111e4d80b"}} +{"capturedUtc":"2026-05-19T18:02:39.5844144+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"aeb77df0b11c436a833f0998154ca194"}} +{"capturedUtc":"2026-05-19T18:02:42.935616+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bbb00fe2c8254cc6a12fa1dc9915ccb9"}} +{"capturedUtc":"2026-05-19T18:03:03.0029511+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"66970c79a4f74233a8d05ac6ce23fa6e"}} +{"capturedUtc":"2026-05-19T18:03:24.1337087+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a2c83cb6f66b41e49ca273f7673e4f67"}} +{"capturedUtc":"2026-05-19T18:03:45.1469072+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8bdcf93d77846d7857a90f0843e14e0"}} +{"capturedUtc":"2026-05-19T18:04:05.2525316+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b6fca5d340be44299ebff992ffe06585"}} +{"capturedUtc":"2026-05-19T18:04:25.6334878+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41e8dcd6fa2d45b9897dbfa4f4c5515f"}} +{"capturedUtc":"2026-05-19T18:04:45.7084863+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"54ca1baaeecb42f6a6cb20dd63d1e610"}} +{"capturedUtc":"2026-05-19T18:05:05.9081623+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d1c2de67dd094d56a989e48e0464fd42"}} +{"capturedUtc":"2026-05-19T18:05:28.4499651+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b54558bed98a4ec799560a327b9e99d5"}} +{"capturedUtc":"2026-05-19T18:05:49.4798875+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9527df40df2a4cc6a62b13b38e91d59d"}} +{"capturedUtc":"2026-05-19T18:06:09.5458399+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"10eb11c5084b48c897db4698c58039ed"}} +{"capturedUtc":"2026-05-19T18:06:29.6366261+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a2257c2c70be4f748206738c85e41510"}} +{"capturedUtc":"2026-05-19T18:06:50.608712+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8ee09725cc349ba8a23f8b70acfe1e5"}} +{"capturedUtc":"2026-05-19T18:07:11.6969242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7fe1c3511ecf40369f4b05f37b849179"}} +{"capturedUtc":"2026-05-19T18:07:32.0771095+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9e2d88a57eaa457eb1a2fe03516eff03"}} +{"capturedUtc":"2026-05-19T18:07:52.8695268+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"53d885fb35ec4df9927a33d59856e66b"}} +{"capturedUtc":"2026-05-19T18:08:13.0433497+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c46847ff93604e56a7d85756ae61ae3e"}} +{"capturedUtc":"2026-05-19T18:08:33.4136205+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"919e8ba0fcc1407cb016f9af309d3e5d"}} +{"capturedUtc":"2026-05-19T18:08:53.9979932+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2857266adbdb4e208132f333c8a39a5c"}} +{"capturedUtc":"2026-05-19T18:09:14.1089092+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ff7b136e9924ac3acf59e6e29e7a500"}} +{"capturedUtc":"2026-05-19T18:09:35.1011066+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"050a88027dad41439aff7790b87aaf53"}} +{"capturedUtc":"2026-05-19T18:09:55.6436606+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"db1c8f08046d4114bd44da17bb124f05"}} +{"capturedUtc":"2026-05-19T18:10:15.8379568+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c87759154fe4211a8ba99243f2b87e6"}} +{"capturedUtc":"2026-05-19T18:10:36.2936273+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a3a5dc1c9ea4041906414a6f92265b8"}} +{"capturedUtc":"2026-05-19T18:10:56.3737766+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6d00222dac54474f9028f244737e505f"}} +{"capturedUtc":"2026-05-19T18:11:17.3584023+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"060c11face12446f83796e95df990815"}} +{"capturedUtc":"2026-05-19T18:11:37.4565298+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e74443aaf6641cd8522b349ff1ace5b"}} +{"capturedUtc":"2026-05-19T18:11:58.4719409+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e22c3143f214437ba6991530afb5c42"}} +{"capturedUtc":"2026-05-19T18:12:18.6649984+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5d07f2182a1249138da898b22d4b2ac4"}} +{"capturedUtc":"2026-05-19T18:12:39.5570278+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b4b6505779b1436d98c0739550cea3da"}} +{"capturedUtc":"2026-05-19T18:12:59.6609999+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ae99ab77d8a4e159be032483eaff32c"}} +{"capturedUtc":"2026-05-19T18:13:19.7367889+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8caf9076b05b41ab88877de8508cba82"}} +{"capturedUtc":"2026-05-19T18:13:40.6685733+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e574d991010f485b90889d53e8fbc0b2"}} +{"capturedUtc":"2026-05-19T18:14:00.7779239+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7fa2f5e7bbbb45e0b5fede448f7cadf2"}} +{"capturedUtc":"2026-05-19T18:14:20.8656241+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b43799da3f2045a781f069296411812a"}} +{"capturedUtc":"2026-05-19T18:14:41.8489923+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"88a51093c47c466eb4b1415e0c3c852d"}} +{"capturedUtc":"2026-05-19T18:15:01.9435105+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dbe8ae6c25194c1ba35e13cd88bed2a4"}} +{"capturedUtc":"2026-05-19T18:15:22.6358775+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cdab2e36d7a84b62bd0cb9b16d32e892"}} +{"capturedUtc":"2026-05-19T18:15:42.9669626+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"db7895e1ea2547e48d5ff342bb18b624"}} +{"capturedUtc":"2026-05-19T18:16:03.1266263+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"891de955e301421f819c7361454d36b3"}} +{"capturedUtc":"2026-05-19T18:16:24.0997906+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9694ed2754ba416aa6006d29b2450178"}} +{"capturedUtc":"2026-05-19T18:16:44.248534+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9652c1b457db426f8edb1b35138bfb19"}} +{"capturedUtc":"2026-05-19T18:17:05.1878113+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"55a39df4bbaf4ea3b00408d3459260e3"}} +{"capturedUtc":"2026-05-19T18:17:25.2783722+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0acd3f880c7b40daaddc5e8218cfa8cb"}} +{"capturedUtc":"2026-05-19T18:17:45.6675018+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c03075d30e964e73b585caccc5410f6b"}} +{"capturedUtc":"2026-05-19T18:18:05.8107872+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7985174b5e4f46e39e957f6f45cb4c2d"}} +{"capturedUtc":"2026-05-19T18:18:25.9039341+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"481802f3ed244e208a89ad7ce8ef9790"}} +{"capturedUtc":"2026-05-19T18:18:46.5073272+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cc8d5377c8254f38b0e9d7344bd2b26d"}} +{"capturedUtc":"2026-05-19T18:19:07.5209119+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e2016f4df5fe46e58e3e6c9f77adf49d"}} +{"capturedUtc":"2026-05-19T18:19:27.6044967+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5d5cdd03dff94c33943a3db77d7082c4"}} +{"capturedUtc":"2026-05-19T18:19:47.6988467+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f83098fe3d24679b1b0c8355e5d8441"}} +{"capturedUtc":"2026-05-19T18:20:07.7835347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4990cba5a05d4ef0a40de7c061222504"}} +{"capturedUtc":"2026-05-19T18:20:27.8939153+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f90ad6b7bad40298b02a7ed8bd11a2d"}} +{"capturedUtc":"2026-05-19T18:20:47.990874+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0553e1cc91c04877a36f987657427abd"}} +{"capturedUtc":"2026-05-19T18:21:08.8929878+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5dfaf3fc112745c583926546e9916bbf"}} +{"capturedUtc":"2026-05-19T18:21:28.9736495+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e178bd1393534d09b23fa792dc4ad324"}} +{"capturedUtc":"2026-05-19T18:21:49.4938064+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e8a8999ecaf1424082606eae01c2e37b"}} +{"capturedUtc":"2026-05-19T18:22:10.107042+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f3d0a7076ee46c296a7b77c7245a85b"}} +{"capturedUtc":"2026-05-19T18:22:30.1779377+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"da73ab9a7d4c4e2cb6dd54312001e219"}} +{"capturedUtc":"2026-05-19T18:22:51.1464671+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f3b4a2f9db44d5d8875741865278a81"}} +{"capturedUtc":"2026-05-19T18:23:11.236102+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b107962505214831985dd64538c74726"}} +{"capturedUtc":"2026-05-19T18:23:32.2199262+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe15bd79b9e3413bb6ce0a765602f068"}} +{"capturedUtc":"2026-05-19T18:23:52.3109951+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3174d82778934733bb01940a1f15640a"}} +{"capturedUtc":"2026-05-19T18:24:12.4885022+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c5094f10330e421e8e309a45509e470b"}} +{"capturedUtc":"2026-05-19T18:24:33.4970669+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"07795a72a07f4cc9a7f648ac37129d8e"}} +{"capturedUtc":"2026-05-19T18:24:53.599966+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56333836665d40349b2dfc82506b435e"}} +{"capturedUtc":"2026-05-19T18:25:14.5166493+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"042ff13f21484fc59cfd20e24cba2e43"}} +{"capturedUtc":"2026-05-19T18:25:34.6229411+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"086fd4f7494a423688fc5108d0212258"}} +{"capturedUtc":"2026-05-19T18:25:54.7255067+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"af17a96015d6454ab49a09675fc8cb2f"}} +{"capturedUtc":"2026-05-19T18:26:15.7038894+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cbaa1375178e497d93b443a2ee806d5c"}} +{"capturedUtc":"2026-05-19T18:26:35.7836637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"507d9a061ac8427d8bbee4ff24847ebf"}} +{"capturedUtc":"2026-05-19T18:26:55.8739507+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7605fbe9a02e4b38a543df840b20a09f"}} +{"capturedUtc":"2026-05-19T18:27:16.8257568+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"774d1de80468415085f522fc66e511f7"}} +{"capturedUtc":"2026-05-19T18:27:36.9367002+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d485f9aaf984c2bbcf102739ff08011"}} +{"capturedUtc":"2026-05-19T18:27:57.9001491+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf0b4829412c40e7a2cfcc7745f70d30"}} +{"capturedUtc":"2026-05-19T18:28:19.0916633+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b51b8bf5f27a4f20880d6e0891ec0240"}} +{"capturedUtc":"2026-05-19T18:28:39.99818+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b49d840b8484d4185a45884956eba6b"}} +{"capturedUtc":"2026-05-19T18:29:00.0966375+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a08a4b35cc2542e882f845eb690917f8"}} +{"capturedUtc":"2026-05-19T18:29:21.1008206+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"61670c2b846a4283bacf8d8f092383e9"}} +{"capturedUtc":"2026-05-19T18:29:41.1740125+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8fd8da1788b14a62bcf1d2e71fc5cc6f"}} +{"capturedUtc":"2026-05-19T18:30:01.2507896+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"13a8c01257104d7686b796486dddf883"}} +{"capturedUtc":"2026-05-19T18:30:15.7562888+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"40c38780db2841858048b1ddcbfaeb76"}} +{"capturedUtc":"2026-05-19T18:30:18.2246876+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0720bb858aa42febfc7c1a7ee6435e1"}} +{"capturedUtc":"2026-05-19T18:30:22.9309905+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"abd1d4db881648548182ef7a378790e8"}} +{"capturedUtc":"2026-05-19T18:30:43.3128607+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"303e73f68a784d999813100d8d3e894a"}} +{"capturedUtc":"2026-05-19T18:31:05.3618633+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a32213caba104c9e8e1fd4952f0c0e11"}} +{"capturedUtc":"2026-05-19T18:31:25.5019769+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"692b54de8e984da298ee2d3ad8635dc5"}} +{"capturedUtc":"2026-05-19T18:31:45.7117627+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"22fd357a64b949e39e11296a48110a96"}} +{"capturedUtc":"2026-05-19T18:32:05.8369892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9969c0948c7244af93056380a05bbd22"}} +{"capturedUtc":"2026-05-19T18:32:26.8899329+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"46e0d864a4784dec9251253c6415834a"}} +{"capturedUtc":"2026-05-19T18:32:47.6224724+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c42d111ee9064e7891aa5184593fe3a5"}} +{"capturedUtc":"2026-05-19T18:32:47.648852+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b4a4c208b6944eba521e8827c2a4ecd"}} +{"capturedUtc":"2026-05-19T18:32:47.8366933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"6a39c50fd66d4739842f8e045a0477dd"}} +{"capturedUtc":"2026-05-19T18:33:08.6419094+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"646b69e411254339b3fe9e65715c1bd9"}} +{"capturedUtc":"2026-05-19T18:33:28.7135838+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2cfed76e5fe24b91bf07bfa824e27cd9"}} +{"capturedUtc":"2026-05-19T18:33:48.7994506+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6604b39d6ac64f579e824a9a0fab396c"}} +{"capturedUtc":"2026-05-19T18:34:09.7686121+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"37e16bc5470a432a9e2de51fac12e8d5"}} +{"capturedUtc":"2026-05-19T18:34:30.8509624+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"98cf490ac17349b6ae3a85c09c904325"}} +{"capturedUtc":"2026-05-19T18:34:51.8485247+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b5e1ecdcf779494aa434024696b1928d"}} +{"capturedUtc":"2026-05-19T18:35:12.9019993+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0f8568b16ca84aebaf843748c03e28ad"}} +{"capturedUtc":"2026-05-19T18:35:32.9948908+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"242d6fd3ee6a486d94d431f5fbecaad8"}} +{"capturedUtc":"2026-05-19T18:35:53.9887633+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7be2b4f0c24942f8b88bd3140ed149cd"}} +{"capturedUtc":"2026-05-19T18:36:14.0614807+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"31a7328c92e9462dbb430b3bc536800f"}} +{"capturedUtc":"2026-05-19T18:36:35.3512848+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9de2accfa7c4d0cae9c933c3729660e"}} +{"capturedUtc":"2026-05-19T18:36:55.7428586+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b71270cf3cc441cbbccce8d2a5bbc67"}} +{"capturedUtc":"2026-05-19T18:37:15.8155696+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f709ee2d4e854f278fce5987d22ebbd9"}} +{"capturedUtc":"2026-05-19T18:37:35.895485+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aba502aa784b4176b1cfb2a7fd1f2aa1"}} +{"capturedUtc":"2026-05-19T18:37:56.2969899+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3e4432cf406f4c8d83e3524a7a4a3eb4"}} +{"capturedUtc":"2026-05-19T18:38:16.3909379+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7379cdc5fbf94c3b8e1d379bef649921"}} +{"capturedUtc":"2026-05-19T18:38:37.3864779+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a4ba613914594289960bba6d001fde58"}} +{"capturedUtc":"2026-05-19T18:38:57.5057862+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ea9fe5cf721a4641be69e793cb659f7c"}} +{"capturedUtc":"2026-05-19T18:39:18.8321454+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64200f35b89f40b5934794b31e9a6a6e"}} +{"capturedUtc":"2026-05-19T18:39:39.5719069+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d44f3f3f7e004a739bd6653b93e3d5ba"}} +{"capturedUtc":"2026-05-19T18:39:59.6579419+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83bc09f71055449c837d1134077d82e6"}} +{"capturedUtc":"2026-05-19T18:40:19.7427282+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"66d3d18b2223415fb2603ea7570a1eb9"}} +{"capturedUtc":"2026-05-19T18:40:40.7103745+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11c2404ba8c94321a72acf668f1a8e13"}} +{"capturedUtc":"2026-05-19T18:41:00.8214912+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f19b01147e134c9292faa4ec54a4b5c1"}} +{"capturedUtc":"2026-05-19T18:41:20.9121617+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"294765e58f6c466fa032e18e516abc04"}} +{"capturedUtc":"2026-05-19T18:41:40.9949518+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"37e6bb484f1348588ada50f14e077d98"}} +{"capturedUtc":"2026-05-19T18:42:01.9969681+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"954d812cb7434951b26f02c1811d117b"}} +{"capturedUtc":"2026-05-19T18:42:22.9839153+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb448a13933743989155e1e6eeb2f35c"}} +{"capturedUtc":"2026-05-19T18:42:43.102542+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a6fe8521f2304f6fa8de05d2cdfb743a"}} +{"capturedUtc":"2026-05-19T18:43:04.0729822+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d340130aa26c4254ae2b147dbd952ce8"}} +{"capturedUtc":"2026-05-19T18:43:24.2907212+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2d0571d8e35a4468a3e65771f4206c5c"}} +{"capturedUtc":"2026-05-19T18:43:44.4960506+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1062c56c6c0e4cbfa60cc6680b7ec71c"}} +{"capturedUtc":"2026-05-19T18:44:05.1814664+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2e51c846eb47406a8f61f1fa824c0231"}} +{"capturedUtc":"2026-05-19T18:44:25.2798919+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"37ddd0742a8445b0960fb6ebd871a719"}} +{"capturedUtc":"2026-05-19T18:44:45.9647348+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8776ba4e17074bca9d5ac84e66cecffd"}} +{"capturedUtc":"2026-05-19T18:45:06.3527937+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cb973a56af5149799ec7442563ce1f36"}} +{"capturedUtc":"2026-05-19T18:45:26.4269231+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d9a885175bba49609f70acb7c6f37364"}} +{"capturedUtc":"2026-05-19T18:45:46.6090877+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2eb4898f1cdf4503bbe6ceb6f7b321d8"}} +{"capturedUtc":"2026-05-19T18:46:07.4779606+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b75994e0d2df489fb3cbf418e886e6ef"}} +{"capturedUtc":"2026-05-19T18:46:27.6037751+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3b6da8eb32a943c5b7abea6780a77df6"}} +{"capturedUtc":"2026-05-19T18:46:48.5545436+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e5af3ff5b6fb41908429bdf83e21811f"}} +{"capturedUtc":"2026-05-19T18:47:08.6264243+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a36380b75730446e8ae42dbf4fa1540e"}} +{"capturedUtc":"2026-05-19T18:47:28.7209691+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb96be64a91e493eb37342cf87db5be9"}} +{"capturedUtc":"2026-05-19T18:47:49.490701+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3248a2412c09490c8bf8f7d19e6571cd"}} +{"capturedUtc":"2026-05-19T18:48:09.7197094+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5000cc9d92ff4e509bebdd92ef9fd99e"}} +{"capturedUtc":"2026-05-19T18:48:30.7629497+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"18e87a8c1e484657a3715d2726dde465"}} +{"capturedUtc":"2026-05-19T18:48:51.8263558+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"598ed81fba13449da91e6a77aa30b481"}} +{"capturedUtc":"2026-05-19T18:49:11.9199003+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b1846c3bb59b44749f64dc2eb4e9291f"}} +{"capturedUtc":"2026-05-19T18:49:32.0177436+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"391578c0a2da4103a0d567b7f74edf03"}} +{"capturedUtc":"2026-05-19T18:49:53.0128622+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cbbeb0a2b9b342249489f96e64ce8676"}} +{"capturedUtc":"2026-05-19T18:50:13.1324413+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c9659e9533e649c3a878f2b576785c3e"}} +{"capturedUtc":"2026-05-19T18:50:34.1585947+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"301fd008c1d54e34aa543a58f9c9c592"}} +{"capturedUtc":"2026-05-19T18:50:55.1199581+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9efddfbde31c48be9a6c64d69025eaeb"}} +{"capturedUtc":"2026-05-19T18:51:15.297921+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3cd5005bc5314d5f88ed62559228560a"}} +{"capturedUtc":"2026-05-19T18:51:35.3947646+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8ed1ca2652bb462ab9700719ba58c9c7"}} +{"capturedUtc":"2026-05-19T18:51:56.1834111+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"041f602acd054bae9bb9dd760d7043bc"}} +{"capturedUtc":"2026-05-19T18:52:16.3805113+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1319f1bc16544aabb4d24320ead31d75"}} +{"capturedUtc":"2026-05-19T18:52:36.6125631+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"de8874132d304dc48c3de2d8ca9e924b"}} +{"capturedUtc":"2026-05-19T18:52:57.4495683+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d38e7e97de484630bba750d42fe20262"}} +{"capturedUtc":"2026-05-19T18:53:17.5777244+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bfb9f7e34177437b8cbfbe6dc45f0204"}} +{"capturedUtc":"2026-05-19T18:53:37.6724753+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5efdbdb90d5c47fbbba954b8c44a1d06"}} +{"capturedUtc":"2026-05-19T18:53:57.7799783+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"552049942e384b4fa89da4002181c2ba"}} +{"capturedUtc":"2026-05-19T18:54:18.6998188+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f22e3b50dca4cbc940f8d2b02fbc555"}} +{"capturedUtc":"2026-05-19T18:54:38.7994347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d5bfdfd0e39b40fcb9536000dd3e34e2"}} +{"capturedUtc":"2026-05-19T18:54:58.8945824+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9ead603bc0d4139be8e0c5890a90e94"}} +{"capturedUtc":"2026-05-19T18:55:24.1633553+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"26e73cd4d7be4af29bd1bca099764852"}} +{"capturedUtc":"2026-05-19T18:55:44.3009108+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1b83fb6189c14ee1af627a454265118f"}} +{"capturedUtc":"2026-05-19T18:56:05.1894989+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c0a6917d387494e944b526d991d166d"}} +{"capturedUtc":"2026-05-19T18:56:25.3395798+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b3ad88e5cb894934843841c1f64d5c0f"}} +{"capturedUtc":"2026-05-19T18:56:46.0127974+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ffd045eec5e24705bfb9872635222f34"}} +{"capturedUtc":"2026-05-19T18:57:06.110939+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7928ae4e5864043b62d204f06df3c19"}} +{"capturedUtc":"2026-05-19T18:57:26.344364+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56af056934414debb78c5607c8abe6e8"}} +{"capturedUtc":"2026-05-19T18:57:46.4505844+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0615b3fcd5a84bf1bb0be485c9040f29"}} +{"capturedUtc":"2026-05-19T18:58:07.4321016+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f6dd82790c1b4c2496d1eb26cd0f274e"}} +{"capturedUtc":"2026-05-19T18:58:27.5296857+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0c5bf4638d5542c6819495b1a3bc8282"}} +{"capturedUtc":"2026-05-19T18:58:47.6237521+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"766a9a33c38142c094f15e169630d9cf"}} +{"capturedUtc":"2026-05-19T18:59:07.71824+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0c68515d267749adb3a180c9caf305e0"}} +{"capturedUtc":"2026-05-19T18:59:37.9198713+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ba3e61bdd6f4e14b025687bc15cb415"}} +{"capturedUtc":"2026-05-19T18:59:58.0238165+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d1d5570f32744618a59aa737ce364ba5"}} +{"capturedUtc":"2026-05-19T19:00:19.0069098+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb2f199b2f0c4ed098951197de13763d"}} +{"capturedUtc":"2026-05-19T19:00:39.0780718+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec8f900480fc42fd96d9d9a00e99d6c8"}} +{"capturedUtc":"2026-05-19T19:00:59.2906159+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"179514cb5b6a48bc8cdab5dc4cd97250"}} +{"capturedUtc":"2026-05-19T19:01:20.1335381+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"574ed47dbc6b470b826349bf2c50513b"}} +{"capturedUtc":"2026-05-19T19:01:40.2189625+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4beafe6e4d24a27b7e9a1eb4d552161"}} +{"capturedUtc":"2026-05-19T19:01:49.5208506+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b3d7b372915f4f86aa2ba97adc8cc7a3"}} +{"capturedUtc":"2026-05-19T19:02:00.2956518+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6714770858c84016ae7fc515ad310f8c"}} +{"capturedUtc":"2026-05-19T19:02:20.3830006+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15c01117fc4945ed8b2e1d55ea077020"}} +{"capturedUtc":"2026-05-19T19:02:41.3429066+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"78499fe39f6b4dc58ff36053b184d4c3"}} +{"capturedUtc":"2026-05-19T19:02:57.7957615+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a701cacff40d4852a969c68957a05f57"}} +{"capturedUtc":"2026-05-19T19:02:57.9665307+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"70c8e7a43399421d8ac3952067595fd3"}} +{"capturedUtc":"2026-05-19T19:03:02.376339+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fd42c71a55844e5b84f8401172827651"}} +{"capturedUtc":"2026-05-19T19:03:22.4494045+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19bd3e7443584aecb857a6d4b5deac7f"}} +{"capturedUtc":"2026-05-19T19:03:42.6249245+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3b0b64c381a423ea159f1549f9fca89"}} +{"capturedUtc":"2026-05-19T19:04:03.6296473+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f1584be1c5a54dd28aa7db8024f263ac"}} +{"capturedUtc":"2026-05-19T19:04:24.6037814+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"69cc7b3fcdcc4c3e8c548e59d307e297"}} +{"capturedUtc":"2026-05-19T19:04:45.6674999+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"335c009dc6204b1aa9726b0953c05584"}} +{"capturedUtc":"2026-05-19T19:05:05.7725333+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"069cb41d633b49b98ec78ceee510634b"}} +{"capturedUtc":"2026-05-19T19:05:26.0598799+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff34399a62cc4547a9abcbbf38a95695"}} +{"capturedUtc":"2026-05-19T19:05:46.767096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8345b45c08c4758bc2d194c27c6a600"}} +{"capturedUtc":"2026-05-19T19:06:06.8817634+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"179ff06c25c04f4ea9c88645756b82bd"}} +{"capturedUtc":"2026-05-19T19:06:27.856537+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e6ff964dd4bb4d21aea61f7f2275c9dc"}} +{"capturedUtc":"2026-05-19T19:06:47.943826+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d1caa380d904bd683f73958382abe39"}} +{"capturedUtc":"2026-05-19T19:07:08.0407012+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba4f9b02f8da4113b9c76517bc3b5bc7"}} +{"capturedUtc":"2026-05-19T19:07:29.0256928+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6e15df8d9aea4bd88d237acc9f89e8b0"}} +{"capturedUtc":"2026-05-19T19:07:49.1047004+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"86ec0b0629b44659913153c41db326cc"}} +{"capturedUtc":"2026-05-19T19:08:10.1457909+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e6dc1c0e987945689ea11238b58b6e32"}} +{"capturedUtc":"2026-05-19T19:08:30.2379144+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64d2921bdd9a48d894235a33fda35c20"}} +{"capturedUtc":"2026-05-19T19:08:51.2104103+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2a7742582d434d91a6bc7ff073bceaf6"}} +{"capturedUtc":"2026-05-19T19:09:13.2449066+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff42bbdf86f04f72a03e3dce3218af38"}} +{"capturedUtc":"2026-05-19T19:09:33.3104157+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"de9ddebc61174507aef915fea5c95942"}} +{"capturedUtc":"2026-05-19T19:09:53.4649907+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"96190ec7b2ff4d5790ed04c599900bbc"}} +{"capturedUtc":"2026-05-19T19:10:14.4324396+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"da4b8d045b354f5d8524f0cd4b96057c"}} +{"capturedUtc":"2026-05-19T19:10:34.6119287+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a4eaadebee34fe18600c2a7145154d3"}} +{"capturedUtc":"2026-05-19T19:10:55.5029656+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8516c584c6b4c60a89be6fa13c3801d"}} +{"capturedUtc":"2026-05-19T19:11:16.1063376+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ead32a48417a434f82672f13d5ef5999"}} +{"capturedUtc":"2026-05-19T19:11:36.1878815+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3867198ebf1742e69f274cccbe41cdfb"}} +{"capturedUtc":"2026-05-19T19:12:01.6570655+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"caaa14d71ea34a828bf3b86304ad7261"}} +{"capturedUtc":"2026-05-19T19:12:21.7669471+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90b6f2c43eb2424f997042ead882277a"}} +{"capturedUtc":"2026-05-19T19:12:42.7558955+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fd484554647e4fc9a60f16894bce3e17"}} +{"capturedUtc":"2026-05-19T19:13:02.85885+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"973c171471c447be9ba8e881a7959cf1"}} +{"capturedUtc":"2026-05-19T19:13:25.8551603+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f48f6714fe574e5db7b9bf4b970e5708"}} +{"capturedUtc":"2026-05-19T19:13:45.9728232+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2844e19fda1c49bebdb5f3f919bef9ff"}} +{"capturedUtc":"2026-05-19T19:14:06.1369055+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb209308658b4f3fa7ee8bbddbef1968"}} +{"capturedUtc":"2026-05-19T19:14:26.2166169+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"10304747783d428d8f9277547370c909"}} +{"capturedUtc":"2026-05-19T19:14:46.565866+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b1330570670840c5951d29b4ad3fb863"}} +{"capturedUtc":"2026-05-19T19:15:07.14679+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e6a017b88c74e35bfaa1682530ff153"}} +{"capturedUtc":"2026-05-19T19:15:28.2378629+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c5513de6554a4e8894fb0bddf7af75ff"}} +{"capturedUtc":"2026-05-19T19:15:49.3557277+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb0d981dfbe44996907df6286f5ef955"}} +{"capturedUtc":"2026-05-19T19:16:10.3407084+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f5cd2871e47a4d159453e026bac7ccee"}} +{"capturedUtc":"2026-05-19T19:16:31.4468753+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fea997a0abf2444994e039ef91dd46b2"}} +{"capturedUtc":"2026-05-19T19:16:51.540519+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d525aa71a64c4bd8a709423743c41720"}} +{"capturedUtc":"2026-05-19T19:17:12.5240229+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"58a1a4ccd7de4fa1b069fa32fb6bef79"}} +{"capturedUtc":"2026-05-19T19:17:32.6015988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8fa4695013945169dd6ee69a1a3a1fc"}} +{"capturedUtc":"2026-05-19T19:17:52.6840238+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d592f39644c54c238e1ca26463800145"}} +{"capturedUtc":"2026-05-19T19:18:12.8882443+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"33ed6a15d5cb42ce9368efca921433e5"}} +{"capturedUtc":"2026-05-19T19:18:33.8112609+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc9573fe8f0c40b5a515a40112b5463b"}} +{"capturedUtc":"2026-05-19T19:18:54.8174882+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a620e32396347c2a58545c4ebb77627"}} +{"capturedUtc":"2026-05-19T19:19:14.9038388+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df73e2f07d004440a30ffc4bc9264475"}} +{"capturedUtc":"2026-05-19T19:19:34.9866601+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d34c3fdba5b9420d8f5efb4245bf9427"}} +{"capturedUtc":"2026-05-19T19:19:55.9976448+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"363769aead4747d5807b5eedbbbf14cf"}} +{"capturedUtc":"2026-05-19T19:20:16.2314491+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0ada4d65e91544ba8f7ddc8ed1a90e8e"}} +{"capturedUtc":"2026-05-19T19:20:37.1389303+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e06445af5a824817bd632df4b110a592"}} +{"capturedUtc":"2026-05-19T19:20:57.2619853+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5dbd63594271462bafaf1b68d3e7ef8d"}} +{"capturedUtc":"2026-05-19T19:21:17.3688315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd82d85619e44526bfdcfdee2b815b5b"}} +{"capturedUtc":"2026-05-19T19:21:38.2650006+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ef8880644dce4acb9e3cda79d1869295"}} +{"capturedUtc":"2026-05-19T19:21:58.5400033+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b7ed01d89db9454693f406f918938939"}} +{"capturedUtc":"2026-05-19T19:22:18.957089+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"446d8924b3844a1789617157573e1e3c"}} +{"capturedUtc":"2026-05-19T19:22:39.0407031+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6e7d806ae37947ffb07aa77e3e9cd069"}} +{"capturedUtc":"2026-05-19T19:22:59.4675348+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42035c75e117401ca6757c2755e5e68f"}} +{"capturedUtc":"2026-05-19T19:23:24.7410316+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a5b550a6ed9244eebfd20cbb487537a5"}} +{"capturedUtc":"2026-05-19T19:23:45.0359366+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"443e9c6bd8f043ceb45ac362c3585344"}} +{"capturedUtc":"2026-05-19T19:24:05.4517382+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"edae6b159d564f6a8bc5ddf5b8dd4746"}} +{"capturedUtc":"2026-05-19T19:24:25.7738412+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6907e48e04b74d668548e6b333aadebb"}} +{"capturedUtc":"2026-05-19T19:24:45.8585379+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b16e140d4a44171b6135f4d8a44cb22"}} +{"capturedUtc":"2026-05-19T19:25:06.1492403+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c5cd93cfe1644d838afa1f8a9cf6dc24"}} +{"capturedUtc":"2026-05-19T19:25:26.253936+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"46a00d39f31941f88ed47a38cbac4951"}} +{"capturedUtc":"2026-05-19T19:25:46.9319419+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3f9b5514076a4b3889c4197e36fde939"}} +{"capturedUtc":"2026-05-19T19:26:07.0685621+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c9b4bd3e6cab4018b19b766d7e91af7a"}} +{"capturedUtc":"2026-05-19T19:26:28.0496757+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1a67d732ffa84c8d945cb3a5d172167a"}} +{"capturedUtc":"2026-05-19T19:26:49.0907978+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"98ce724c7729499ea6bb0e7462bffb21"}} +{"capturedUtc":"2026-05-19T19:27:09.1770033+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f43f2301b3d4337bfaf65d82efecd86"}} +{"capturedUtc":"2026-05-19T19:27:29.3059587+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f824d09e5ea94b8d831e0068e846edbd"}} +{"capturedUtc":"2026-05-19T19:27:49.5043176+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c89e8925204045009a577469571e789d"}} +{"capturedUtc":"2026-05-19T19:28:10.3057762+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d24c0abfe0f64b0c966658b83a78d613"}} +{"capturedUtc":"2026-05-19T19:28:32.3955063+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"57508b799a454d1ea178881072576d6c"}} +{"capturedUtc":"2026-05-19T19:28:52.5340197+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a7361003df54119a0c291cd7338518c"}} +{"capturedUtc":"2026-05-19T19:29:13.4762904+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2f33735732ec48a6a13e4de2806810e8"}} +{"capturedUtc":"2026-05-19T19:29:34.5198096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"327a83e0422e4a938c91c52cea89f374"}} +{"capturedUtc":"2026-05-19T19:29:55.560966+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"38db2b461343442fa51ce6e1ca4a57e1"}} +{"capturedUtc":"2026-05-19T19:30:15.6379551+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"347c4ea2addd42a4bd3a294dedee4bdc"}} +{"capturedUtc":"2026-05-19T19:30:37.1969133+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"868c87f8cf554cf09bf1a78b2a612711"}} +{"capturedUtc":"2026-05-19T19:30:57.731047+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa0981c06b664de4b94ad57f76bfc9e8"}} +{"capturedUtc":"2026-05-19T19:31:17.8842026+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a90575b6fce044d489768161dd7bec59"}} +{"capturedUtc":"2026-05-19T19:31:38.8120279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d894a2f62bb045e3975d31767469a66a"}} +{"capturedUtc":"2026-05-19T19:31:58.8956081+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bb4c826e20644cab8e93adb07c520e88"}} +{"capturedUtc":"2026-05-19T19:32:18.9814855+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e3d7d757f6744aa87ed09edcb50997a"}} +{"capturedUtc":"2026-05-19T19:32:40.2712771+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"09102e0d8bdc4e99bcf5241753b9b85f"}} +{"capturedUtc":"2026-05-19T19:33:01.0304398+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"408c3b02081d42479b8617152c33f1e4"}} +{"capturedUtc":"2026-05-19T19:33:09.0247999+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fca24b31e7f54d83b8a3c9debf84b61f"}} +{"capturedUtc":"2026-05-19T19:33:09.2224399+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"b39764464ebc44a4906bf68e3bd56f8c"}} +{"capturedUtc":"2026-05-19T19:33:21.0959474+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4ff99254ad92447b84db791c1bdba5d2"}} +{"capturedUtc":"2026-05-19T19:33:41.1824833+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7111afaf971347f5bec682a734547173"}} +{"capturedUtc":"2026-05-19T19:34:02.1147597+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6aafcbf5222d456595762e5f7c56854a"}} +{"capturedUtc":"2026-05-19T19:34:23.2934397+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"08c5f4f5c1374006bb57cf51deb09f20"}} +{"capturedUtc":"2026-05-19T19:34:46.2354972+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"57de9c915b5540d29e7eeb480d3fdb8d"}} +{"capturedUtc":"2026-05-19T19:35:06.3445367+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"89d8c41388dc4d289d84f06b24c48bd1"}} +{"capturedUtc":"2026-05-19T19:35:26.4659326+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e276986d615141ccac2988c52c62139c"}} +{"capturedUtc":"2026-05-19T19:35:46.5486396+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a157677fe8a44b17a6dedd89126342d4"}} +{"capturedUtc":"2026-05-19T19:36:07.4498013+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b42d56e843b74dc0a8c4d06ecd335548"}} +{"capturedUtc":"2026-05-19T19:36:27.5148152+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"779bdde9f17f4c53893c03048498e17e"}} +{"capturedUtc":"2026-05-19T19:36:48.5715572+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7148dc9ed15a45e88cd16de764f13190"}} +{"capturedUtc":"2026-05-19T19:37:09.6170138+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"670b0c74099a43f088a3874b122257fc"}} +{"capturedUtc":"2026-05-19T19:37:30.6115325+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a454ebde4e0480fbb81e97f116904eb"}} +{"capturedUtc":"2026-05-19T19:37:50.7189664+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7889216feb7a42ec871d46386a820d43"}} +{"capturedUtc":"2026-05-19T19:38:10.824864+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d9288cd3aae4ff58e466e5de0327483"}} +{"capturedUtc":"2026-05-19T19:38:31.7968268+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c5c6735440b84c99a60e3f8d8f5f30ae"}} +{"capturedUtc":"2026-05-19T19:38:52.8847372+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"36e18086eb2445709244b5f3e8b7ba1f"}} +{"capturedUtc":"2026-05-19T19:39:13.9556566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf150632e1d74cd79d2179c7784312f5"}} +{"capturedUtc":"2026-05-19T19:39:34.0714446+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e25cd866138471bbf61ce034b9e4429"}} +{"capturedUtc":"2026-05-19T19:39:54.1687027+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c558ddfa1d3f42b4a24561510c1f03fb"}} +{"capturedUtc":"2026-05-19T19:40:15.1049888+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"198b5dd357f9426c8394a375a3b00035"}} +{"capturedUtc":"2026-05-19T19:40:35.1807396+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2a02fe0ed21a4aa9af13398d8360d088"}} +{"capturedUtc":"2026-05-19T19:40:56.3587228+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"94c4ff63c69c4683b9b80c3a7a2e35da"}} +{"capturedUtc":"2026-05-19T19:41:17.2339163+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c9bb490e2e9e4dadaee61c4e3d62d69f"}} +{"capturedUtc":"2026-05-19T19:41:37.3484851+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"290650d7f69a498da2adbf9baa8b9e37"}} +{"capturedUtc":"2026-05-19T19:41:58.3224833+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4760e600548a4640b69e6cb8cb1d6c19"}} +{"capturedUtc":"2026-05-19T19:42:18.439035+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e3fd27f02c1646549b4baed2d0ffeeb8"}} +{"capturedUtc":"2026-05-19T19:42:39.3984948+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d099f27d9bc4252afa540bd7309f9f9"}} +{"capturedUtc":"2026-05-19T19:43:00.7778638+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"94e9eabe3a714e168647cf7f359e29f5"}} +{"capturedUtc":"2026-05-19T19:43:21.5183528+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8c717bf1149c485f9ccd8f800f8003cf"}} +{"capturedUtc":"2026-05-19T19:43:41.6655621+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a343d1137c34163948b45f2ab8e941b"}} +{"capturedUtc":"2026-05-19T19:44:02.5685323+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8ef50eb69d0485084cb8cd0e69099ab"}} +{"capturedUtc":"2026-05-19T19:44:22.6537959+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fdf747cb230a4344b6e98ba068753c1a"}} +{"capturedUtc":"2026-05-19T19:44:42.7225711+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9465cfc07803474bad6f934a0a53e1d6"}} +{"capturedUtc":"2026-05-19T19:45:03.785522+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a4346ed8cfcd493a87c586419c1aa83f"}} +{"capturedUtc":"2026-05-19T19:45:24.7831636+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"77c93ef8eb2e45d3b443b1524673cbf6"}} +{"capturedUtc":"2026-05-19T19:45:44.8988417+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4d49f031763e4b4fa68759b5ef59ae66"}} +{"capturedUtc":"2026-05-19T19:46:05.8689867+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d1cde4b492ab4c24b85cebfd24b78de7"}} +{"capturedUtc":"2026-05-19T19:46:25.9549246+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"13792bb3e25b4481afa7d140b31025bd"}} +{"capturedUtc":"2026-05-19T19:46:46.2306376+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b76720625b6f41fab6208a6cdee58589"}} +{"capturedUtc":"2026-05-19T19:47:09.0161728+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d3da31dc5d93491382a76a5121c0fa0c"}} +{"capturedUtc":"2026-05-19T19:47:30.2934461+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4803cbe17b0041c98e353450034f8d23"}} +{"capturedUtc":"2026-05-19T19:47:51.2418803+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3f9f352911d241e2b81c74c484938e3b"}} +{"capturedUtc":"2026-05-19T19:48:16.329446+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4098d679825e4f099c2edd6bf2ab7075"}} +{"capturedUtc":"2026-05-19T19:48:36.4075188+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"86a306228c5f4f908ccf8db0d473cae8"}} +{"capturedUtc":"2026-05-19T19:48:57.5070031+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19b4c912b23c4bf1928634573e34067b"}} +{"capturedUtc":"2026-05-19T19:49:17.6138929+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd9cbab86f104fb48c01d1dc28fbed30"}} +{"capturedUtc":"2026-05-19T19:49:41.5858608+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c26592a0cab54259b11bf23bafd2ca43"}} +{"capturedUtc":"2026-05-19T19:50:01.7676005+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"889301a80eb14f98831433300f427392"}} +{"capturedUtc":"2026-05-19T19:50:22.716971+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f419659ce6af4f14822fc5f382a261e1"}} +{"capturedUtc":"2026-05-19T19:50:42.9199711+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8df4b51d14294c5da0aeac3a8b715348"}} +{"capturedUtc":"2026-05-19T19:51:03.8533914+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e5a7abcb679142288e74903df1d2c461"}} +{"capturedUtc":"2026-05-19T19:51:24.9045153+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"81991bfb22154070bbf7419cc1899e98"}} +{"capturedUtc":"2026-05-19T19:51:44.9938788+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d22d3efcdb534acab653ebcd6ab0e3ff"}} +{"capturedUtc":"2026-05-19T19:52:05.980552+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"99a70840ac8e4027905f23737fe22432"}} +{"capturedUtc":"2026-05-19T19:52:26.0648918+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa6221b5c3ea49619745613999666189"}} +{"capturedUtc":"2026-05-19T19:52:46.2919112+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71a1a26bd50b4d968c38518f67430f64"}} +{"capturedUtc":"2026-05-19T19:53:07.1438335+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"478e88b81d4844cea0c5544118d095dc"}} +{"capturedUtc":"2026-05-19T19:53:27.295401+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1d6fe5080465421d801b9e70556f366e"}} +{"capturedUtc":"2026-05-19T19:53:48.2463936+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"477264cc4d2f4060bdba88aa264e2233"}} +{"capturedUtc":"2026-05-19T19:54:08.3259045+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9ab9c8f7e0cf43ddb7c8df76a6219421"}} +{"capturedUtc":"2026-05-19T19:54:29.3774417+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"06c53f7b56bb413580a65b158fd0590b"}} +{"capturedUtc":"2026-05-19T19:54:50.3627045+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3a5c71e58cf4fe6b0948a73b6058fbd"}} +{"capturedUtc":"2026-05-19T19:55:11.4039338+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15ed0df6047549b1b6e810260a8bd086"}} +{"capturedUtc":"2026-05-19T19:55:31.480604+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cc3a0d1791f940eba7a8e0b38c7718b3"}} +{"capturedUtc":"2026-05-19T19:55:51.5569409+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b6ab307005e440c3b1aa0be098338ef0"}} +{"capturedUtc":"2026-05-19T19:56:11.6614719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"991c1e7d68944f7f813fe0ac454d9903"}} +{"capturedUtc":"2026-05-19T19:56:32.6320057+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83f900bd78494eabb35e53ae735f79c3"}} +{"capturedUtc":"2026-05-19T19:56:52.7269681+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"975e16985cc84b27b7493070dcb660cd"}} +{"capturedUtc":"2026-05-19T19:57:13.8432152+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0fa76c8bc4c4acd8cea31d3703619d8"}} +{"capturedUtc":"2026-05-19T19:57:34.9468492+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9828461a4a742b19659e4a57edf6491"}} +{"capturedUtc":"2026-05-19T19:57:55.9554604+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d730a93f9add4b4393475fb2ef90202e"}} +{"capturedUtc":"2026-05-19T19:58:16.0435745+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15fc640f65844d5e8c372bfe0c49408c"}} +{"capturedUtc":"2026-05-19T19:58:36.2789643+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16f1164bf0bf4337b973c523cd34710b"}} +{"capturedUtc":"2026-05-19T19:58:56.4429895+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac49f723b5b7419b9299e9051082d51a"}} +{"capturedUtc":"2026-05-19T19:59:16.5506573+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4c3c4a06a97472d93133761a0c71627"}} +{"capturedUtc":"2026-05-19T19:59:37.8077589+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e8af9d6c12b543a98d8bd4bd7a6b4de4"}} +{"capturedUtc":"2026-05-19T19:59:58.2639748+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c435c935022d450b8ccd98409d3b1d68"}} +{"capturedUtc":"2026-05-19T20:00:18.3724388+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9ab440e6fea40e29416de0002a50bf6"}} +{"capturedUtc":"2026-05-19T20:00:43.5140445+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b64607e109844b06881d778b53b86986"}} +{"capturedUtc":"2026-05-19T20:01:04.4569637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"47f0dda5cc824d658d41f377ecef7bad"}} +{"capturedUtc":"2026-05-19T20:01:24.5578392+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"405461a7e9be4bf28527a167ecf5265e"}} +{"capturedUtc":"2026-05-19T20:01:44.7145987+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e09a74793036481c944a292e7c754f42"}} +{"capturedUtc":"2026-05-19T20:02:05.9389479+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"afb6796638834a0182b0623402877147"}} +{"capturedUtc":"2026-05-19T20:02:26.5417627+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b867dd0119004bc78dfb2476e849e519"}} +{"capturedUtc":"2026-05-19T20:02:46.9343021+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d2ba93456f3645408fd1250420276954"}} +{"capturedUtc":"2026-05-19T20:03:07.0159145+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0793def5753e427480a632e43886e7a8"}} +{"capturedUtc":"2026-05-19T20:03:16.968979+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1cc7926bdd604d7f97ed57ee8eca4053"}} +{"capturedUtc":"2026-05-19T20:03:17.1813981+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"1b3db941df044435950e30ebb77d3810"}} +{"capturedUtc":"2026-05-19T20:03:27.9735404+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c035088fa1eb47809ae2bc4d3f26de71"}} +{"capturedUtc":"2026-05-19T20:03:51.0086662+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7723680aebd4e19a885dd562f437c1d"}} +{"capturedUtc":"2026-05-19T20:04:11.1871468+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"80ee904548124f40b9e2fe7f5a01046c"}} +{"capturedUtc":"2026-05-19T20:04:32.0944638+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a77ff0c559db40728b055299687f16ca"}} +{"capturedUtc":"2026-05-19T20:04:52.2334771+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d074af16797f4667a09727825e933df7"}} +{"capturedUtc":"2026-05-19T20:05:13.1756476+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5181df64100b4dd7a4cdf0c6a3cdb163"}} +{"capturedUtc":"2026-05-19T20:05:33.280482+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"333819d39ada4e61b17b3410de7cf8e6"}} +{"capturedUtc":"2026-05-19T20:05:53.3624909+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7dd89141ccc54511b6d0e7e51df3a18b"}} +{"capturedUtc":"2026-05-19T20:06:13.4786986+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e44d8092c33647219f5f7c49d1f956df"}} +{"capturedUtc":"2026-05-19T20:06:34.4214903+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"591e732c4fa041d6bacaea9bc6231d9c"}} +{"capturedUtc":"2026-05-19T20:06:56.4059627+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9612200cd9a3445bbdf11d3c0fcefa52"}} +{"capturedUtc":"2026-05-19T20:07:16.4970502+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35d0aca9da8b414898766ec112e9f956"}} +{"capturedUtc":"2026-05-19T20:07:36.5824567+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c98bb39875143259e67b39b3b880271"}} +{"capturedUtc":"2026-05-19T20:07:57.6029754+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19f4dc988b1c4150939abf1edd3198fa"}} +{"capturedUtc":"2026-05-19T20:08:17.7363668+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a69d2fa4494f43d2829c5da09843af62"}} +{"capturedUtc":"2026-05-19T20:08:38.7279717+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b73e805560d742108169fb03af807280"}} +{"capturedUtc":"2026-05-19T20:08:58.8599716+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a381a70ee8148ecb7631354d83c9b21"}} +{"capturedUtc":"2026-05-19T20:09:19.8295627+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"727c4bec5737480d8628eb53ea2f5cb4"}} +{"capturedUtc":"2026-05-19T20:09:39.9286576+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7b33487176241c7a1b1d1cec8629f32"}} +{"capturedUtc":"2026-05-19T20:10:00.9348311+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a49409893e1141378864ec4230c6f867"}} +{"capturedUtc":"2026-05-19T20:10:21.0657314+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64b6763a96cc49b596d3f0dc08f2b977"}} +{"capturedUtc":"2026-05-19T20:10:42.0809383+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b54741ebfafe43ff8a5f16f2df675bac"}} +{"capturedUtc":"2026-05-19T20:11:03.1109338+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"39e229ba0ccd488384ababfab6915b92"}} +{"capturedUtc":"2026-05-19T20:11:23.2589068+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7fab346bfe454949855d4c5e3ab7685e"}} +{"capturedUtc":"2026-05-19T20:11:44.1987361+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a85ecf63ec604672827d5023b9e59a30"}} +{"capturedUtc":"2026-05-19T20:12:05.3068504+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cb83f21a71524e0687ba9a960eb0ae63"}} +{"capturedUtc":"2026-05-19T20:12:25.4557758+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ecaa4df1267f459993ee101f1063b60a"}} +{"capturedUtc":"2026-05-19T20:12:46.3655602+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3581c68205ad4b0e827a75dccb26f68c"}} +{"capturedUtc":"2026-05-19T20:13:06.433991+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6d0ba18eaaa04c5ebd1de3c07b380e9d"}} +{"capturedUtc":"2026-05-19T20:13:26.5379975+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7f772abceb5d453abcdf76eb4e26a65c"}} +{"capturedUtc":"2026-05-19T20:13:47.5593552+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3f469b5abe6480c8cc217afbd17c3ee"}} +{"capturedUtc":"2026-05-19T20:14:08.8016431+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"395a01b78f094e82902b1b797cfe038a"}} +{"capturedUtc":"2026-05-19T20:14:29.6823289+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12db0516385a4596937259319428f5a6"}} +{"capturedUtc":"2026-05-19T20:14:49.8396525+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"09b1781a363e4ed986db5db2e40d51a8"}} +{"capturedUtc":"2026-05-19T20:15:10.7179765+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd5db03555f04755b147551d48c39868"}} +{"capturedUtc":"2026-05-19T20:15:30.8646478+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"85d51b19d5764900aab7051cafada5bd"}} +{"capturedUtc":"2026-05-19T20:15:51.8129607+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b039ee6bcaad473581b9ef329c3f467f"}} +{"capturedUtc":"2026-05-19T20:16:14.270735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"349316e336f947e0b111715ae2869c95"}} +{"capturedUtc":"2026-05-19T20:16:34.9978155+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"967c37b8ce34446096bbb612fedfb00e"}} +{"capturedUtc":"2026-05-19T20:16:56.0247051+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"623acbded3d0408fb080e0e137634f3b"}} +{"capturedUtc":"2026-05-19T20:17:16.1235892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0191dfd3e2d4aeea4da0fad1d3150e3"}} +{"capturedUtc":"2026-05-19T20:17:36.3959637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6b662e40d1e843f7af574b11b4e1cfdd"}} +{"capturedUtc":"2026-05-19T20:17:56.5329649+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42f642ec357647bb9139620d8f8b63ce"}} +{"capturedUtc":"2026-05-19T20:18:19.2325701+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"256aa61d08a4421aaf4bd1c94bd87b97"}} +{"capturedUtc":"2026-05-19T20:18:39.348976+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"979149e6ac904be1be5126dc573c8f4b"}} +{"capturedUtc":"2026-05-19T20:19:00.3089061+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"74e15b8decbe4136bf49b16c420aee83"}} +{"capturedUtc":"2026-05-19T20:19:21.3657656+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d3ce276151724bdaa4e2d8f556a10b38"}} +{"capturedUtc":"2026-05-19T20:19:41.4437386+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c4c385308f94789b82c42c6c93d9d8b"}} +{"capturedUtc":"2026-05-19T20:20:01.5306744+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b47a7cc440f84dadbc943ab9918d1012"}} +{"capturedUtc":"2026-05-19T20:20:22.6418797+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12d6044d2090473a82b4c7ae86627084"}} +{"capturedUtc":"2026-05-19T20:20:43.6486203+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"43ea3124d22a4aee862079312a568028"}} +{"capturedUtc":"2026-05-19T20:21:04.6219702+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aba8d633930f48c992c581b92e673ab4"}} +{"capturedUtc":"2026-05-19T20:21:24.76097+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"13e038f0ff46482db880dd538896f4b8"}} +{"capturedUtc":"2026-05-19T20:21:45.7179227+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"479097880d3f481fb821b1469a31831e"}} +{"capturedUtc":"2026-05-19T20:22:05.8759695+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1a73366706bf4e34bd55d35976d94450"}} +{"capturedUtc":"2026-05-19T20:22:26.3221811+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a29243a31434a5d9ffcb08590b48812"}} +{"capturedUtc":"2026-05-19T20:22:47.8769789+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f71bca6c537b44de82f27ea308470019"}} +{"capturedUtc":"2026-05-19T20:23:07.9516051+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd39951d388549328139592ab4aa3fad"}} +{"capturedUtc":"2026-05-19T20:23:28.9149508+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac6cd02aa13041ca999701a9f73c4386"}} +{"capturedUtc":"2026-05-19T20:23:49.4939928+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0d69a12130734f5787df66ffd5de5dab"}} +{"capturedUtc":"2026-05-19T20:24:09.9965279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4b693468819140d18ee94d6dd5a7868a"}} +{"capturedUtc":"2026-05-19T20:24:32.4184882+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"002f523828ae4572b38430c4cb509c23"}} +{"capturedUtc":"2026-05-19T20:24:55.075508+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3fff46779f3d4362b5f4a34eadffb8a3"}} +{"capturedUtc":"2026-05-19T20:25:15.1897844+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"74311d7046e34e8e8de9a4ebba49ed83"}} +{"capturedUtc":"2026-05-19T20:25:35.2819337+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95b6d7bda01149618feb989f70cde9d7"}} +{"capturedUtc":"2026-05-19T20:25:56.2544585+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4dc5f7dda0e7430fbb304fd1abecbcef"}} +{"capturedUtc":"2026-05-19T20:26:16.4280343+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19b7706fedba40cd8a2912333bd1c997"}} +{"capturedUtc":"2026-05-19T20:26:38.4489203+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f82a3a12da9d49e9bc9079728dd2e522"}} +{"capturedUtc":"2026-05-19T20:27:00.3838566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d625e5c243b2494d9032efb27343854f"}} +{"capturedUtc":"2026-05-19T20:27:20.4744859+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9ee39142548447282f740e564858fee"}} +{"capturedUtc":"2026-05-19T20:27:41.4809846+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2cc19025b2554c7db46b49b28cfe339c"}} +{"capturedUtc":"2026-05-19T20:28:01.6389445+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ebed50db4ce40aba17b7b8ff925e2ce"}} +{"capturedUtc":"2026-05-19T20:28:22.7149804+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"780589bbab3b41b9b8519e5e77e8c192"}} +{"capturedUtc":"2026-05-19T20:28:42.8185662+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d7b9ad6697f342f29e762264427b75ce"}} +{"capturedUtc":"2026-05-19T20:29:03.7517676+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"31b8ecfc541d4522ae3fe56f9dd327fd"}} +{"capturedUtc":"2026-05-19T20:29:24.7785259+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e4196e7513ef4e3ba3d8f5ac1ae5b9e2"}} +{"capturedUtc":"2026-05-19T20:29:44.8560216+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f71768951f5243a69da648cc7384ce94"}} +{"capturedUtc":"2026-05-19T20:30:04.9649451+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b7e626d3a8a4dafbbd0a2aad8747704"}} +{"capturedUtc":"2026-05-19T20:30:16.4450592+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"544076e5c185451fb084be5f6bc7afb1"}} +{"capturedUtc":"2026-05-19T20:30:19.9378849+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"80a46667b9754d7abe5d96303910ac40"}} +{"capturedUtc":"2026-05-19T20:30:25.9217713+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"880f3847f1f947329a59bbc134c6c918"}} +{"capturedUtc":"2026-05-19T20:30:46.6345989+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d802cd8540f641bf9212a0f0b8adcf2e"}} +{"capturedUtc":"2026-05-19T20:31:07.0877676+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0081a3ad9fa24e29aebaf59409e3a840"}} +{"capturedUtc":"2026-05-19T20:31:27.1908217+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b63e8eceeb74b22a0fc9ca944271a9b"}} +{"capturedUtc":"2026-05-19T20:31:48.1418881+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c49241c43da4c9692ce730fc19eb061"}} +{"capturedUtc":"2026-05-19T20:32:09.2044547+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2fab1b8ce5f84c4ea5ab676cd52db462"}} +{"capturedUtc":"2026-05-19T20:32:31.2389333+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"73e598a4552943f88bb24106fb8ebbc1"}} +{"capturedUtc":"2026-05-19T20:32:51.316636+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ec0d9ca29e94e7d97ec6c12e5961ed5"}} +{"capturedUtc":"2026-05-19T20:33:12.35293+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d6728a07f1c84b33bd4db125180a347c"}} +{"capturedUtc":"2026-05-19T20:33:27.4035349+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e748e4a349694102bfb3948dcc07e941"}} +{"capturedUtc":"2026-05-19T20:33:27.9736219+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"822107eab1464ae5aee297bdc83791d5"}} +{"capturedUtc":"2026-05-19T20:33:33.4488211+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cadad5abc905441c93a14e182ed33ad7"}} +{"capturedUtc":"2026-05-19T20:33:54.562995+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b61652b0b93c4b72b797d50b710482af"}} +{"capturedUtc":"2026-05-19T20:34:15.5297885+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"021aeb408b38423e881d24f07ebef737"}} +{"capturedUtc":"2026-05-19T20:34:35.6770547+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ded42d3d9a974f8a8606ca8ef532b557"}} +{"capturedUtc":"2026-05-19T20:34:56.4507337+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"497b847d16714969a1a7526b4ac52b99"}} +{"capturedUtc":"2026-05-19T20:35:16.5824884+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3add9fbb756472b91cd29de61d4a841"}} +{"capturedUtc":"2026-05-19T20:35:36.811974+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3faecc950924e95afdb7065a26afbba"}} +{"capturedUtc":"2026-05-19T20:35:57.0724643+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2889c5a102644df29c2c2a778484db3a"}} +{"capturedUtc":"2026-05-19T20:36:17.9579263+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a4178a1894044c65890839012fcd72fe"}} +{"capturedUtc":"2026-05-19T20:36:38.0385043+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cc0adc97d9e747f385d84215d777e8c1"}} +{"capturedUtc":"2026-05-19T20:36:59.0984961+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4e51a828812448d4ac97b6512765eea4"}} +{"capturedUtc":"2026-05-19T20:37:20.105939+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ecf6063bcde641daa3e6e8a5a320e9cd"}} +{"capturedUtc":"2026-05-19T20:37:41.215615+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95cf49d84cf843949c2ad6d629bc053e"}} +{"capturedUtc":"2026-05-19T20:38:04.1885489+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"267929012ec5463cb23c04ab0dc76b5a"}} +{"capturedUtc":"2026-05-19T20:38:25.2442757+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9cd3cadcbae4a8b86fa9f2a5f9714d3"}} +{"capturedUtc":"2026-05-19T20:38:45.329522+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e040f70fb2b3488ab2ffc851078bc9c4"}} +{"capturedUtc":"2026-05-19T20:39:05.4867687+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0904dc2f9b2c4e1592e1d81b378c6e5c"}} +{"capturedUtc":"2026-05-19T20:39:26.4482611+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fa9788f2d7bc48a4a9ada9161bc80996"}} +{"capturedUtc":"2026-05-19T20:39:46.5335514+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"26ca8d5073704a48b180f312b054d105"}} +{"capturedUtc":"2026-05-19T20:40:07.4703677+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"55e947686ab3463593bbddec051b2857"}} +{"capturedUtc":"2026-05-19T20:40:27.5754025+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"66fe48cffeae416c816a8a9c46cffa13"}} +{"capturedUtc":"2026-05-19T20:40:48.5558324+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"07a8af183c474303be5e1ac470df389c"}} +{"capturedUtc":"2026-05-19T20:41:08.6554764+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"72cdde7b047949ca958a78f3f6024623"}} +{"capturedUtc":"2026-05-19T20:41:29.0527988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d1aeb98297c340549f98536fcb9d3f6a"}} +{"capturedUtc":"2026-05-19T20:41:49.4978972+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c2f537dab18d4307aaf84439f5a87026"}} +{"capturedUtc":"2026-05-19T20:42:09.7748128+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3494df9ba078417eaba4fd1fc5b8d436"}} +{"capturedUtc":"2026-05-19T20:42:29.9229483+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cc028348053a4d8b875f9dc2eb7ad9bf"}} +{"capturedUtc":"2026-05-19T20:42:50.8624548+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9898c5a9462848cca8f6882fa58cdb3c"}} +{"capturedUtc":"2026-05-19T20:43:12.679106+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7da5e1ad3d634ba1adfd2e6bdd1027f9"}} +{"capturedUtc":"2026-05-19T20:43:33.0624311+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a2381030ddf482b9f5ccf1ff9f4e4a0"}} +{"capturedUtc":"2026-05-19T20:43:34.0269202+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19ce33c5771c4dbbb95c6fc9919b4b21"}} +{"capturedUtc":"2026-05-19T20:43:53.1328289+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9675ac5c15834c0f88988fc24242a776"}} +{"capturedUtc":"2026-05-19T20:44:14.1451012+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb9d713fed1348cc97eb4cffb82d3632"}} +{"capturedUtc":"2026-05-19T20:44:35.1235218+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"834b530d76a843e9a1d3ce3d1a7bcee2"}} +{"capturedUtc":"2026-05-19T20:44:55.3097383+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1eb0b26ad4ae4ce3b6bc840b5680ec38"}} +{"capturedUtc":"2026-05-19T20:45:15.9586157+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a5ea01e5bfd942cf9324664be0a714b9"}} +{"capturedUtc":"2026-05-19T20:45:36.3712065+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bb1d7fb70e1348dbbd28f92f71433f65"}} +{"capturedUtc":"2026-05-19T20:45:56.4857808+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d1d0939c3d0f45039da9a3c2e0cb83c5"}} +{"capturedUtc":"2026-05-19T20:46:16.5940004+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16948a5c6e3e44dcbfbaaf770c319a51"}} +{"capturedUtc":"2026-05-19T20:46:37.5478068+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9b69f62fd8274f3d8a136f427fb6f00b"}} +{"capturedUtc":"2026-05-19T20:46:57.6419047+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"414186d565334a669745a4fd955c0f58"}} +{"capturedUtc":"2026-05-19T20:47:19.4473117+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"81059b3941cf4d449922674c01319bcc"}} +{"capturedUtc":"2026-05-19T20:47:39.7575703+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c826de8b3e054592ba3fc93b7dfcb48b"}} +{"capturedUtc":"2026-05-19T20:47:59.8534629+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a0135991392c46e295f7faf2a62ebc33"}} +{"capturedUtc":"2026-05-19T20:48:19.9354632+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"25d884c4c1ce4b24b2a42379540a6a89"}} +{"capturedUtc":"2026-05-19T20:48:41.0524347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6220ed5a51a8409b9a4ad6d3b9d00892"}} +{"capturedUtc":"2026-05-19T20:49:02.0537097+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c050acfb0cc14bc09884629e53a959ce"}} +{"capturedUtc":"2026-05-19T20:49:23.604513+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9597dd1f7b34417fafcd70b9201a4906"}} +{"capturedUtc":"2026-05-19T20:49:44.2059465+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e82f26dcd3804b7db6ea7ada75105fe2"}} +{"capturedUtc":"2026-05-19T20:50:04.3569305+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee80aa86bce54f3aa87d1b57ec591ec2"}} +{"capturedUtc":"2026-05-19T20:50:26.3219823+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"27d18412bf9c4bb39a1da39fe29f9774"}} +{"capturedUtc":"2026-05-19T20:50:46.4389874+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e547a9689d148abb18b19640d9b6c1a"}} +{"capturedUtc":"2026-05-19T20:51:06.58099+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5ef19d6d2a2d4e279ca4dedac885c192"}} +{"capturedUtc":"2026-05-19T20:51:27.964485+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"68c18ddb50684a6cbf9124d5945a9b7d"}} +{"capturedUtc":"2026-05-19T20:51:48.5564892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0cdc214f799d40c7868936aeb0549854"}} +{"capturedUtc":"2026-05-19T20:52:09.6568981+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b13018ca9ecb4e7dadf610206bdc3661"}} +{"capturedUtc":"2026-05-19T20:52:30.6544765+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df16104a04a8441ab50e06463d612db4"}} +{"capturedUtc":"2026-05-19T20:52:50.7874481+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ce78af04b6b4162a3b8ffaee16b427f"}} +{"capturedUtc":"2026-05-19T20:53:11.7044659+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c75869bca4e948adacbf0dc3d587c64d"}} +{"capturedUtc":"2026-05-19T20:53:32.665962+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e77881aa2c944354a9d42baf7a181d52"}} +{"capturedUtc":"2026-05-19T20:53:52.9535193+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05a1d16b8a314713869b24eb3a5a3fc0"}} +{"capturedUtc":"2026-05-19T20:54:13.8904391+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe4f947968d3413f8c85ffc49c1f883d"}} +{"capturedUtc":"2026-05-19T20:54:33.962773+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41d9cc5a2ac843da94c5e5f6dfe9144d"}} +{"capturedUtc":"2026-05-19T20:54:54.0721063+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb68295c3b2542ebb2a43d8bb997ed2c"}} +{"capturedUtc":"2026-05-19T20:55:16.6939343+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"328bea610cac4019bbb7f6e531669502"}} +{"capturedUtc":"2026-05-19T20:55:37.1419696+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6e63f464f7c34ee8992ba78fcd75c503"}} +{"capturedUtc":"2026-05-19T20:55:58.1178932+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3e8d49b0465d430a971f9e7bdbd03e64"}} +{"capturedUtc":"2026-05-19T20:56:19.1197312+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ad0a5e37b4c348dda4e6ef208d403e64"}} +{"capturedUtc":"2026-05-19T20:56:39.2115984+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"183051f7d9cc498e8e5af0ca9b7703ef"}} +{"capturedUtc":"2026-05-19T20:56:59.3248701+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"401fce9053404fb88956f2d671ebde93"}} +{"capturedUtc":"2026-05-19T20:57:20.2655675+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5837322f98244938bde932748e39aea5"}} +{"capturedUtc":"2026-05-19T20:57:45.3801085+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e8f5bca8ca434c049f54fc7d6f3ede49"}} +{"capturedUtc":"2026-05-19T20:58:05.4780279+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f8053921dc845568cc3dd31f0006a4e"}} +{"capturedUtc":"2026-05-19T20:58:25.5618626+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d183f51048714ceea46ef3c9b96fafe1"}} +{"capturedUtc":"2026-05-19T20:58:46.4890189+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"44b6227ea3834323bf73f378efcff5d3"}} +{"capturedUtc":"2026-05-19T20:59:06.5808582+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ef37fb131bbe4303a32a8c3e4f34ad88"}} +{"capturedUtc":"2026-05-19T20:59:27.6287362+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a7266f0d0114d7fbecb8e41283fc239"}} +{"capturedUtc":"2026-05-19T20:59:47.7725442+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d8a462364232471b82178c17d3778c71"}} +{"capturedUtc":"2026-05-19T21:00:08.7384882+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6936d5d1a8e84ee0a5dc87cec836e746"}} +{"capturedUtc":"2026-05-19T21:00:28.8385221+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5c9404c0ce464c728cb2414628abfd38"}} +{"capturedUtc":"2026-05-19T21:00:49.8228439+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0198655e7194ae1888e4294fd8c8c27"}} +{"capturedUtc":"2026-05-19T21:01:09.8926358+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bae52e52ef404c59a74de971023cabdf"}} +{"capturedUtc":"2026-05-19T21:01:30.8946727+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fd49f929ac0c452ab5afdf356e345947"}} +{"capturedUtc":"2026-05-19T21:01:51.9630204+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e6f7af4865ce4bcc9be5dda76251631d"}} +{"capturedUtc":"2026-05-19T21:02:13.0244724+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"860425aa5ab14bc69be7cba557d7af0d"}} +{"capturedUtc":"2026-05-19T21:02:33.1359794+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8e370631996e4545b3e91a656ae2d811"}} +{"capturedUtc":"2026-05-19T21:02:53.2165406+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0c4aa2bf2cec4651b050dc294581debd"}} +{"capturedUtc":"2026-05-19T21:03:13.4281115+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11783db13a6c4f72a92ca97e8bf20f6c"}} +{"capturedUtc":"2026-05-19T21:03:34.1876546+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"26be23af8a8445789f2fe35064c1fd31"}} +{"capturedUtc":"2026-05-19T21:03:38.3058151+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35abb14186c94412907cf820522a501d"}} +{"capturedUtc":"2026-05-19T21:03:38.5198081+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"99f90f75f6d14b999ddf062e9da274c5"}} +{"capturedUtc":"2026-05-19T21:03:56.2780241+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"67ef5b4c7f9a4e56b63b798dca3a541d"}} +{"capturedUtc":"2026-05-19T21:04:16.4784922+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cc94cefd7e54491da7164660ed2c9ca1"}} +{"capturedUtc":"2026-05-19T21:04:36.5996815+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c46105ad9dd54d1680d25fa8d3a5e249"}} +{"capturedUtc":"2026-05-19T21:04:57.4539916+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15dea1b73ce14991ad2145e9316561a9"}} +{"capturedUtc":"2026-05-19T21:05:17.548303+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c11ef0bdc4a34a4c8d9174d46983d0ec"}} +{"capturedUtc":"2026-05-19T21:05:37.6349713+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"60f43e12533843369b91a2e8aff8cf75"}} +{"capturedUtc":"2026-05-19T21:06:07.015884+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"94e182fa533845b28929fd6f298de57f"}} +{"capturedUtc":"2026-05-19T21:06:27.816516+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a8d88f8045e427bb80dcf3e98f6664a"}} +{"capturedUtc":"2026-05-19T21:06:47.8924608+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45c9945c7630445dafb16824d9cdac0e"}} +{"capturedUtc":"2026-05-19T21:07:07.9859331+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b41567ffdda49c6aa655a9c16a834e8"}} +{"capturedUtc":"2026-05-19T21:07:28.9399605+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"38e64037b9d948edaeb61f03df8e78a7"}} +{"capturedUtc":"2026-05-19T21:07:49.0259231+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5224e0c0259d49f095e31a64e9b32ce9"}} +{"capturedUtc":"2026-05-19T21:08:10.0458145+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5b694e7c2d8f45d98ae9198c80cb57f4"}} +{"capturedUtc":"2026-05-19T21:08:30.1235385+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6fa5c1f6ef744044b34b75ea70e20239"}} +{"capturedUtc":"2026-05-19T21:08:51.116007+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fedc6974bf674a528a932b3367c219ac"}} +{"capturedUtc":"2026-05-19T21:09:11.2509389+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"df2ef7a16a8249bb8938f0792f60f4a5"}} +{"capturedUtc":"2026-05-19T21:09:32.2055016+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f5ca48227d2746d080a37ed67c0774ab"}} +{"capturedUtc":"2026-05-19T21:09:53.2547795+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed82801c336d4ed0be15cbd8e4146b21"}} +{"capturedUtc":"2026-05-19T21:10:14.3715465+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e8269c4b20774b30a83c8028ba03a456"}} +{"capturedUtc":"2026-05-19T21:10:34.4838147+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8eb249887cc4416f84dabacd8ccfedef"}} +{"capturedUtc":"2026-05-19T21:10:55.4794137+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"284e16f3241948aea95383cecf3a1894"}} +{"capturedUtc":"2026-05-19T21:11:15.5788448+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"73ff4db0ef2746549de69d4f8e0c2f59"}} +{"capturedUtc":"2026-05-19T21:11:36.540785+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aaa8fd2c3e4343fb937a3b5d42ebd035"}} +{"capturedUtc":"2026-05-19T21:11:56.6453925+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5cc45884b74a465893e35ab200a46c94"}} +{"capturedUtc":"2026-05-19T21:12:17.6966974+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a2029f757b2d4d78a34f97a36ff30d37"}} +{"capturedUtc":"2026-05-19T21:12:37.7719099+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7abb2258f9b4dddbdf6512c986dd97e"}} +{"capturedUtc":"2026-05-19T21:12:58.7149533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1c0891d7cf984e2ba035eea34d24a8f1"}} +{"capturedUtc":"2026-05-19T21:13:19.7539347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6a3d80b1b72048939fc23eb5419702d2"}} +{"capturedUtc":"2026-05-19T21:13:39.8534819+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35196c2cdc2c4bdeb0dc4207d46e73e9"}} +{"capturedUtc":"2026-05-19T21:14:00.8696177+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"526c77b4919c452ea445e003b6cbe573"}} +{"capturedUtc":"2026-05-19T21:14:21.968028+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f09a2ecbaee46d596bd64481c3618dc"}} +{"capturedUtc":"2026-05-19T21:14:42.9620898+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"546273cabd9a49a58bbce8684fecb939"}} +{"capturedUtc":"2026-05-19T21:15:03.0410437+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7720eae668274dfc90012d2a962e0eac"}} +{"capturedUtc":"2026-05-19T21:15:23.148634+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"74bcc91f6ec5427893d486844bd72147"}} +{"capturedUtc":"2026-05-19T21:15:43.2701213+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"93f828b6e3c64a20b55fc39b271d332c"}} +{"capturedUtc":"2026-05-19T21:16:04.1988811+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"17e7b3bf1b9441bdba8b1d1d4d2922e5"}} +{"capturedUtc":"2026-05-19T21:16:25.2595125+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa096e318a084133bcc602db5996492d"}} +{"capturedUtc":"2026-05-19T21:16:46.3119878+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"23c3db1c0beb4c9cb1603656b4d2c6d1"}} +{"capturedUtc":"2026-05-19T21:17:06.4198623+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8de3d36e32d47b0816d0ace8899ee91"}} +{"capturedUtc":"2026-05-19T21:17:26.5400026+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d5568c3509d14923b925fbd74442213b"}} +{"capturedUtc":"2026-05-19T21:17:46.6659974+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c20299ed322e440289ca5ba2b02f756f"}} +{"capturedUtc":"2026-05-19T21:18:06.7747948+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5346f3b5505c4b51acac2cc58f471ad8"}} +{"capturedUtc":"2026-05-19T21:18:26.9245507+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1592a8529e8e439880786d138d94c751"}} +{"capturedUtc":"2026-05-19T21:18:47.6945418+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aacb9d3d8fd14ecfb487a2d921d52189"}} +{"capturedUtc":"2026-05-19T21:19:08.6975035+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"104558a40fa445a2ad78f063ae1b1a95"}} +{"capturedUtc":"2026-05-19T21:19:29.8074956+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d04d086b2ce44ed78bd6df6dd154adc3"}} +{"capturedUtc":"2026-05-19T21:19:49.8949644+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6a5931b54c34d05850aa5de8d47c15d"}} +{"capturedUtc":"2026-05-19T21:20:10.8575185+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56551cdfa16e4d5db3891d9404a8773b"}} +{"capturedUtc":"2026-05-19T21:20:31.8738379+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bdaf5b081a7640d2b18cb273c383b744"}} +{"capturedUtc":"2026-05-19T21:20:52.0400085+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0234f37e2a114373a42c1c0aa6f200cf"}} +{"capturedUtc":"2026-05-19T21:21:13.0286375+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce07ebf1a6464f638ee60cefc2580a79"}} +{"capturedUtc":"2026-05-19T21:21:34.0270923+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4e54e9c3ab6e4ed8a13166dea7fc8b77"}} +{"capturedUtc":"2026-05-19T21:21:56.0793781+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd5b0f87bb6c4852b4215a190216cb11"}} +{"capturedUtc":"2026-05-19T21:22:16.1917097+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"af13d86a88374763958bdec9ef56ea4b"}} +{"capturedUtc":"2026-05-19T21:22:36.6307196+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8cd4442971145c1beae95680e49351e"}} +{"capturedUtc":"2026-05-19T21:22:57.2620483+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cebce44a263e4ed79198a8a41f36f369"}} +{"capturedUtc":"2026-05-19T21:23:17.4215486+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"50b91f299a944f9f96f6fd8e27b39cd5"}} +{"capturedUtc":"2026-05-19T21:23:37.5753121+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e42f7af7c0d64f29bb502459dc2bba93"}} +{"capturedUtc":"2026-05-19T21:23:58.4338019+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"88c701bbdc714fd9aa294ea439fb7a77"}} +{"capturedUtc":"2026-05-19T21:24:18.5397086+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f358bce24da94a33a703460f102e5b26"}} +{"capturedUtc":"2026-05-19T21:24:39.5369825+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff8562407678416aa90ec39ef90254b3"}} +{"capturedUtc":"2026-05-19T21:24:59.697438+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d8622d59179546c88d6fb561a20b1b57"}} +{"capturedUtc":"2026-05-19T21:25:20.6845259+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c327a73a206e4daba62cac85d2a9f8bf"}} +{"capturedUtc":"2026-05-19T21:25:41.7099312+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"88799f6b8e4b4a06b6983173a9fe38a7"}} +{"capturedUtc":"2026-05-19T21:26:02.7687861+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"96af422cf98c4d7598be9b97e485cb68"}} +{"capturedUtc":"2026-05-19T21:26:22.8664473+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b87dcf68f6f45f6bd378d010b44a237"}} +{"capturedUtc":"2026-05-19T21:26:43.1988365+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92549eb85cec419bbb637821abe88d66"}} +{"capturedUtc":"2026-05-19T21:27:03.9385597+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a65fc7152e90452595f586d77dddf23c"}} +{"capturedUtc":"2026-05-19T21:27:24.9778722+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5c86e46b1ddd4a139d09bf076181d822"}} +{"capturedUtc":"2026-05-19T21:27:45.0504772+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7ca37b408a4f49d1aeca99a3bfb75360"}} +{"capturedUtc":"2026-05-19T21:28:06.087598+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0c19928436984f53a65d4e499ab4dfb9"}} +{"capturedUtc":"2026-05-19T21:28:26.7178556+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b9cc24d78f84bed9fe2900d91e2947d"}} +{"capturedUtc":"2026-05-19T21:28:46.7907559+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e0d7c3da4664f2e8ab93941a7b72e1c"}} +{"capturedUtc":"2026-05-19T21:29:08.2753053+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"474595f959d34afb8da9389a0694c96d"}} +{"capturedUtc":"2026-05-19T21:29:28.3724332+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a3124d03fc814bf29eec15c497261eec"}} +{"capturedUtc":"2026-05-19T21:29:49.3399941+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75ebda9ebbf6481cb5d353485a42d212"}} +{"capturedUtc":"2026-05-19T21:30:09.4711412+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2cbc30b3fb964df6a96afb78dd3d42fe"}} +{"capturedUtc":"2026-05-19T21:30:30.4184334+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"96e1dcede5a84fccbc0d9112eca57a5e"}} +{"capturedUtc":"2026-05-19T21:30:50.545727+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"537386b6215d4f83ac7ea163df6c6a3b"}} +{"capturedUtc":"2026-05-19T21:31:10.7034926+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac4b68cc63d2448ba685a9b8ad6232c2"}} +{"capturedUtc":"2026-05-19T21:31:31.6409202+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0cdd1e72a7b94c228fa2af3f9edf0806"}} +{"capturedUtc":"2026-05-19T21:31:51.7288378+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0e474edd7014bf7bf290c0df4c966c3"}} +{"capturedUtc":"2026-05-19T21:32:12.7229446+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb95ca26f1bb4f0c8c6e8858960f3aa7"}} +{"capturedUtc":"2026-05-19T21:32:33.8046447+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42be9a1e34874aa7a586b44513b03acd"}} +{"capturedUtc":"2026-05-19T21:32:53.950845+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"81e29e82e6b04f61bb7b0c9db28a2d96"}} +{"capturedUtc":"2026-05-19T21:33:14.4800531+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cbb30744cfc74486ab9553133e4fb1a9"}} +{"capturedUtc":"2026-05-19T21:33:34.9534122+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8514cf822d14f6d9e129ef984af17dc"}} +{"capturedUtc":"2026-05-19T21:33:48.9994451+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"db8bf8bb1ef84f5490802f9c4e86835e"}} +{"capturedUtc":"2026-05-19T21:33:49.168328+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"1b9f9d27b0354b7a98b0983b4c6e862f"}} +{"capturedUtc":"2026-05-19T21:33:55.0189169+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a7d6d45418e44cc88f946cf429f5340e"}} +{"capturedUtc":"2026-05-19T21:34:15.0946556+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8a1434edd0d74fafa570fb4cb930553d"}} +{"capturedUtc":"2026-05-19T21:34:35.1859268+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"acb420b6dcd544d9b737d36e9a153b9d"}} +{"capturedUtc":"2026-05-19T21:34:56.1515723+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"494fcc65a942485a9cc18104fa7a2cd4"}} +{"capturedUtc":"2026-05-19T21:35:16.2163585+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5d7fc9a64a1a4513bf7874f166b95d4b"}} +{"capturedUtc":"2026-05-19T21:35:36.3069838+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f7fd5216d8ae472ab86907aa129c0308"}} +{"capturedUtc":"2026-05-19T21:35:56.7145582+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"40fbcee229564fe1992af450ab5d9b1e"}} +{"capturedUtc":"2026-05-19T21:36:16.8387147+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5450bee05f89409992dab285af37aebb"}} +{"capturedUtc":"2026-05-19T21:36:37.3745288+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"252ae49c24f344ffb3925a77bac43e98"}} +{"capturedUtc":"2026-05-19T21:36:57.4854889+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc091e6271444654beb0b11bfa9b8b95"}} +{"capturedUtc":"2026-05-19T21:37:18.4485347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b85d467268c84220800b94c9558c2cee"}} +{"capturedUtc":"2026-05-19T21:37:38.5529158+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f377753db8ac4f5aab65b81d19660ef7"}} +{"capturedUtc":"2026-05-19T21:38:01.5114736+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"250edc81a58a4d0ca61c3093066f0f8a"}} +{"capturedUtc":"2026-05-19T21:38:21.6677912+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"699d9361d8424c65aa19bba154cb6d93"}} +{"capturedUtc":"2026-05-19T21:38:42.6146055+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35a1234e8676481297ac65f204bbc23d"}} +{"capturedUtc":"2026-05-19T21:39:03.6427188+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6521ca7b3b5411ba3c96c9da705fae8"}} +{"capturedUtc":"2026-05-19T21:39:23.727524+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"47fc2205c5934870aa80f4183e886307"}} +{"capturedUtc":"2026-05-19T21:39:43.8570523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"480ed6fac44f4b69a03e164ffcc6cbe9"}} +{"capturedUtc":"2026-05-19T21:40:03.9337765+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ea1a6176385b4d5b82ca3fea2918a7d7"}} +{"capturedUtc":"2026-05-19T21:40:24.9067269+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9ab5615cc334c2586fd151e8296057e"}} +{"capturedUtc":"2026-05-19T21:40:45.9697945+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"28e17a1b95144b4382f163295cd286b7"}} +{"capturedUtc":"2026-05-19T21:41:06.0809327+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae4cc58f83034f19ba5e8281387f9be4"}} +{"capturedUtc":"2026-05-19T21:41:26.2606933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"576272bb36ed418b9eec58a0867cea9c"}} +{"capturedUtc":"2026-05-19T21:41:46.7877897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f3aec17ce9ef47aa81ea0e081684ef9c"}} +{"capturedUtc":"2026-05-19T21:42:07.2109418+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d0e526eb1a3d47bc9d1b0018ba291124"}} +{"capturedUtc":"2026-05-19T21:42:27.3314896+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"337dba3c19c942aaaaa29feb8dd879d1"}} +{"capturedUtc":"2026-05-19T21:42:48.2739344+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce1abbd33c5e4f7ba9c6e53499470735"}} +{"capturedUtc":"2026-05-19T21:43:08.3526307+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9e0e920c6c9e4252844c903bd1a5e7d1"}} +{"capturedUtc":"2026-05-19T21:43:28.5204831+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7ad1c5e0fafc4e54a95500885e251977"}} +{"capturedUtc":"2026-05-19T21:43:49.4710207+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"749169c1958b4797b39b22f9a3a7c7e5"}} +{"capturedUtc":"2026-05-19T21:44:09.5435087+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe0ae2bf050a4ac19cbd5b2ff40fb5c1"}} +{"capturedUtc":"2026-05-19T21:44:30.5467737+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05b304fa8c30426390d1b4d43f1df4c4"}} +{"capturedUtc":"2026-05-19T21:44:50.6670195+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f2aa662be0649f3b6451774a1f9605b"}} +{"capturedUtc":"2026-05-19T21:45:11.6669608+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"367f9a301f604c3cba617acf1af02b5f"}} +{"capturedUtc":"2026-05-19T21:45:31.7569758+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e6eb396c55b4154b170aaf41f527699"}} +{"capturedUtc":"2026-05-19T21:45:51.8669115+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0310cc6535da4aeaaeb70c79643c4dbb"}} +{"capturedUtc":"2026-05-19T21:46:14.8108087+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3da5754268ed4cc08f36e8029af374eb"}} +{"capturedUtc":"2026-05-19T21:46:34.9820242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5523259d5d8f431fa5c6531f28a1938b"}} +{"capturedUtc":"2026-05-19T21:46:55.9739873+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8c962276e03a4958bf435e307cfeda4a"}} +{"capturedUtc":"2026-05-19T21:47:16.1156335+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8af1db157904bf7bb8d1a14a41a5130"}} +{"capturedUtc":"2026-05-19T21:47:36.8435375+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1f7881c1843d40819324328a55edea68"}} +{"capturedUtc":"2026-05-19T21:47:56.95399+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2fa9d3b8fc384f57826aad189f06db4b"}} +{"capturedUtc":"2026-05-19T21:48:17.137982+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"766266eeca95450d9a5ed78ed3c9e5ee"}} +{"capturedUtc":"2026-05-19T21:48:37.253913+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3c677ea0f2164b51bb2084a3f827236b"}} +{"capturedUtc":"2026-05-19T21:48:58.2519387+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5808ee5475ec422e8589752451af84a0"}} +{"capturedUtc":"2026-05-19T21:49:19.2809523+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9120f0894afd46798361186a85554fe2"}} +{"capturedUtc":"2026-05-19T21:49:39.4584945+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3735c3ccff67493e8061e962aa35c6f5"}} +{"capturedUtc":"2026-05-19T21:50:00.4299827+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eea3d08d42874d94892a22550406aa6a"}} +{"capturedUtc":"2026-05-19T21:50:20.6015528+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"732e4cde3e44483194f88af0d235d994"}} +{"capturedUtc":"2026-05-19T21:50:41.477795+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a87ca820518448286e143013e4dbdc4"}} +{"capturedUtc":"2026-05-19T21:51:01.5706573+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8e818701b2bc480db562e1a6959c6b9c"}} +{"capturedUtc":"2026-05-19T21:51:22.55819+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bb08ff9182784c4caa000cabf0fc2769"}} +{"capturedUtc":"2026-05-19T21:51:43.6259006+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1df68d6cc5984adf98ced0592b6fe2ec"}} +{"capturedUtc":"2026-05-19T21:52:03.7309317+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e860472c08a6459585069301337155be"}} +{"capturedUtc":"2026-05-19T21:52:24.6985064+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8e18fe72191e42c6bfe8aac363bb5f93"}} +{"capturedUtc":"2026-05-19T21:52:45.7339747+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"34a40d063b084ed1ba6e05b31ed75530"}} +{"capturedUtc":"2026-05-19T21:53:06.7774916+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fd99f7629029409e922ff0842fdd4334"}} +{"capturedUtc":"2026-05-19T21:53:26.8599805+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aaade2ef0e80411dacec593bd9a224de"}} +{"capturedUtc":"2026-05-19T21:53:46.9507156+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"532afdd9269c4489b5d747f86a0434c1"}} +{"capturedUtc":"2026-05-19T21:54:07.9108002+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"632faa3cdab546ceaac28dd2631b2cfc"}} +{"capturedUtc":"2026-05-19T21:54:28.0119522+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c61479099baf4ad79350943e25ff64a9"}} +{"capturedUtc":"2026-05-19T21:54:48.9929335+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c32793cc5d64f11bd1edc5f831f9ecf"}} +{"capturedUtc":"2026-05-19T21:55:09.0946278+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6aa94ac87be9499fa6d7760bec4a3870"}} +{"capturedUtc":"2026-05-19T21:55:30.0699254+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fa5132d9c8bf404983039fc87a08a4fd"}} +{"capturedUtc":"2026-05-19T21:55:50.155504+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f849235c6da04736b12ee984d7a288c5"}} +{"capturedUtc":"2026-05-19T21:56:11.1506689+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5c06770f65664635bd4ac087a4a9930f"}} +{"capturedUtc":"2026-05-19T21:56:32.192909+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c7ddc9e10a4d4cb7a67b19c61dc8c1bb"}} +{"capturedUtc":"2026-05-19T21:56:52.3900168+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"137547b327db4589ba10e4a8dd9e8cb1"}} +{"capturedUtc":"2026-05-19T21:57:13.2896177+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6938ebc115984148a981fe4900dbb569"}} +{"capturedUtc":"2026-05-19T21:57:33.3679275+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29f3edc7e0b3490caf3b71247808be20"}} +{"capturedUtc":"2026-05-19T21:57:54.3808067+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e0c7775f638844ae913cc06bf8824e98"}} +{"capturedUtc":"2026-05-19T21:58:14.4955102+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c9f2a2294b264e86ba8059122c57d4ee"}} +{"capturedUtc":"2026-05-19T21:58:39.5688547+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ab2a23f749a845ed859ff6e4a3d289e7"}} +{"capturedUtc":"2026-05-19T21:59:00.4974392+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9ec4a188d5644be92dcfb03f48c99df"}} +{"capturedUtc":"2026-05-19T21:59:20.5754408+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3fcd87c264eb44d78668887154b43a6f"}} +{"capturedUtc":"2026-05-19T21:59:40.6809031+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"199ae64692394faea2f96ba9f6067cb6"}} +{"capturedUtc":"2026-05-19T22:00:02.9274311+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e5b4850d0084d389a44535f002ae031"}} +{"capturedUtc":"2026-05-19T22:00:23.7759056+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6e497bc6e3dc4f63a9d59d954b23c9ef"}} +{"capturedUtc":"2026-05-19T22:00:43.8614857+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec13f95699b1453b8633055fca653023"}} +{"capturedUtc":"2026-05-19T22:01:04.3338582+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0eeb4d22d2fa4972812e44a10d07e7ea"}} +{"capturedUtc":"2026-05-19T22:01:24.8997371+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83a3297564b64a25bd26be99d17a4e18"}} +{"capturedUtc":"2026-05-19T22:01:44.9790229+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6b4d8d61dc244db2bb536882df9fd010"}} +{"capturedUtc":"2026-05-19T22:02:10.0525089+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"684a21e80eff445a9391ced184c67a69"}} +{"capturedUtc":"2026-05-19T22:02:30.1226012+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bbb2f3670ede47dfaf980f10a70c925c"}} +{"capturedUtc":"2026-05-19T22:02:51.0966952+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e3c270628ccd4ecc9b3500301cf549df"}} +{"capturedUtc":"2026-05-19T22:03:11.2569763+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac4b10289c6140ef813eadbcd2ef6c11"}} +{"capturedUtc":"2026-05-19T22:03:32.2425259+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8f7d35a2cd62427e8d871bf8c61e9d42"}} +{"capturedUtc":"2026-05-19T22:03:53.2989773+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"371466eaebd640fbb3fe38d38eab07b3"}} +{"capturedUtc":"2026-05-19T22:03:59.4299469+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"40c03fe1aaa34e0999f3988a2dc4eb2c"}} +{"capturedUtc":"2026-05-19T22:04:00.3344222+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"63793a7c5a494f7285b48948f6719a30"}} +{"capturedUtc":"2026-05-19T22:04:13.4809888+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c414c38db77d4c1bbb2a014b26b80c79"}} +{"capturedUtc":"2026-05-19T22:04:34.4305173+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"840c2b53d18f4ca7a0a33c20ca38ab9b"}} +{"capturedUtc":"2026-05-19T22:04:54.5925067+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0456ef2b2cf49da97285bb4da2cd396"}} +{"capturedUtc":"2026-05-19T22:05:15.5337026+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd4ad1c33f764fa98a1f35af1fc57acd"}} +{"capturedUtc":"2026-05-19T22:05:35.604041+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c707d4992e5f4f008d947134354c1a9a"}} +{"capturedUtc":"2026-05-19T22:05:56.6446557+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"96585d06bca64a47822ffef96cff3ff9"}} +{"capturedUtc":"2026-05-19T22:06:16.7495331+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"06318b574ecb4b8eb14825c3440361e3"}} +{"capturedUtc":"2026-05-19T22:06:36.999655+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c56406d7d1464ef5809f8e7f2c74ff41"}} +{"capturedUtc":"2026-05-19T22:06:57.7804092+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"73a95822c6f04dcc9b9cd3f5c00e902e"}} +{"capturedUtc":"2026-05-19T22:07:17.9069138+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6cb13f940229494a920a53e1119fb7de"}} +{"capturedUtc":"2026-05-19T22:07:38.8716985+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"64d107d6f939489391b5e97da2fabd01"}} +{"capturedUtc":"2026-05-19T22:07:59.0097204+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c730ac255d2d4e20a321b08bfa51bbce"}} +{"capturedUtc":"2026-05-19T22:08:20.47398+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"33b72dc0badf4ae299cffa6315a7d6b7"}} +{"capturedUtc":"2026-05-19T22:08:41.0676345+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71763e5b88fe442ca707e2248861bac3"}} +{"capturedUtc":"2026-05-19T22:09:01.1749792+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6cf93f2a01e045fb96cb5b25385f1e49"}} +{"capturedUtc":"2026-05-19T22:09:22.2170844+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"32c089f0905b45fe9455fd2373ada684"}} +{"capturedUtc":"2026-05-19T22:09:43.1936505+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c52a4afc665e42a4b342e2f9d9903694"}} +{"capturedUtc":"2026-05-19T22:10:03.2719687+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12ed64b7edfa4f27a4ac922fadfa9841"}} +{"capturedUtc":"2026-05-19T22:10:28.4390535+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b950cad239904765823afeaed40bfadb"}} +{"capturedUtc":"2026-05-19T22:10:49.4659735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"917b393d3af843c1be930cc46395c854"}} +{"capturedUtc":"2026-05-19T22:11:12.4487762+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"786dd0ef5b4e40af8ad8e81f4c5ca647"}} +{"capturedUtc":"2026-05-19T22:11:32.5724743+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71c019dcd2014195b4babf400b84c618"}} +{"capturedUtc":"2026-05-19T22:11:53.5194822+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"08cf9a13ccc54cbe94fd32939571445e"}} +{"capturedUtc":"2026-05-19T22:12:13.6752221+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"18df328c4254406cb877f4a04f2bf713"}} +{"capturedUtc":"2026-05-19T22:12:34.6485207+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aa88af74a5ac49a191585fd13e035a51"}} +{"capturedUtc":"2026-05-19T22:12:54.7179744+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e625f5a24a294dea9be2f238a4583f3a"}} +{"capturedUtc":"2026-05-19T22:13:19.8660816+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"287ffc61a4d4442abe909e3c5ce92aff"}} +{"capturedUtc":"2026-05-19T22:13:40.8358585+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"70b3bc961571453fb9ef262f1296bbc8"}} +{"capturedUtc":"2026-05-19T22:14:00.9758167+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3788443f5e2446afb057265594a9174a"}} +{"capturedUtc":"2026-05-19T22:14:21.9026566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1bcfc6f92fc9434b84b2784d4d8a90e7"}} +{"capturedUtc":"2026-05-19T22:14:42.0725015+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d61d3e58d89f483a8a63c47159a9fe8a"}} +{"capturedUtc":"2026-05-19T22:15:03.0647498+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0080194fafc24035a2567f910b89de0b"}} +{"capturedUtc":"2026-05-19T22:15:23.1866411+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"86cfccd4a2464a0f831e19c874f85197"}} +{"capturedUtc":"2026-05-19T22:15:44.1275451+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d5af660b672e4924bc635687896318ca"}} +{"capturedUtc":"2026-05-19T22:16:05.215016+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed6c8117a41944a1a18ec80e6c968943"}} +{"capturedUtc":"2026-05-19T22:16:25.3151253+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c47d6474621a440e97afc6b25544d214"}} +{"capturedUtc":"2026-05-19T22:16:46.315941+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"66427fea59e1462c97f3788dc8f77de1"}} +{"capturedUtc":"2026-05-19T22:17:06.4519007+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0a49118b89dd4cbca6bd9d64a76362b9"}} +{"capturedUtc":"2026-05-19T22:17:26.6397706+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"225934f49d3245ada100f5d0c281b47e"}} +{"capturedUtc":"2026-05-19T22:17:47.0796537+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ab77d671b1e4002a8eec1779a4c7621"}} +{"capturedUtc":"2026-05-19T22:18:07.2262425+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"999eeae244a844eaa5ba2df8b7ec27ba"}} +{"capturedUtc":"2026-05-19T22:18:27.5568677+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2a3341889f284dcaa22c205e31b4c890"}} +{"capturedUtc":"2026-05-19T22:18:47.6705561+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"44a83294ad604554a49190ab7b5be55c"}} +{"capturedUtc":"2026-05-19T22:19:07.7678838+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3d78f4b8ea6e47a481dd96d92b16b4ef"}} +{"capturedUtc":"2026-05-19T22:19:28.7264013+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7e21e67686984f33b93ac7a4620b17d4"}} +{"capturedUtc":"2026-05-19T22:19:48.9021114+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd01edeeddfe471bad7304e302d14806"}} +{"capturedUtc":"2026-05-19T22:20:09.8115371+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f8acafb0588c45a38eee3b2041e14256"}} +{"capturedUtc":"2026-05-19T22:20:30.8840183+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14e01e411a3f4fa185c65d37c9a4709e"}} +{"capturedUtc":"2026-05-19T22:20:51.8949547+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8bf82574e0a4218bcfb14eb6e9b77ba"}} +{"capturedUtc":"2026-05-19T22:21:12.0215084+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"267e98b7276c46eb9b374bc6de496d38"}} +{"capturedUtc":"2026-05-19T22:21:32.2394393+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b11f193704414998985994f2664b1dbc"}} +{"capturedUtc":"2026-05-19T22:21:46.0744683+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9cf65490a2664b2ba59b1245746954ee"}} +{"capturedUtc":"2026-05-19T22:21:53.0308936+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"07da85aeb6884424a218df6e4724003c"}} +{"capturedUtc":"2026-05-19T22:22:13.1735734+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ae58f5471dc047bc8a43caa838b82a45"}} +{"capturedUtc":"2026-05-19T22:22:33.9039278+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8cc80d96d6a94224a66e801ec7f15b60"}} +{"capturedUtc":"2026-05-19T22:22:54.2414905+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6f06f6d31daa43188b87ea1fd135b7ed"}} +{"capturedUtc":"2026-05-19T22:23:14.5190001+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"25e2caca7448433387e0df6fc631f587"}} +{"capturedUtc":"2026-05-19T22:23:35.3254627+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fc9aa93958ea480e9d85743eb3f32421"}} +{"capturedUtc":"2026-05-19T22:23:55.522332+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a4db8f169307464b9c00b2649695dd1c"}} +{"capturedUtc":"2026-05-19T22:24:16.4565076+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7502645323e9461396d6e07695f109c9"}} +{"capturedUtc":"2026-05-19T22:24:38.4987791+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8cc57d070e9d423186febd569944615a"}} +{"capturedUtc":"2026-05-19T22:24:58.6519242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fcb601d0988947d5b670093728a07eb8"}} +{"capturedUtc":"2026-05-19T22:25:18.7505572+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ffc55fd0858941e1a75fc25a2b5f782d"}} +{"capturedUtc":"2026-05-19T22:25:39.7250192+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f8f4898f5c294d4fa20de4f049a15a66"}} +{"capturedUtc":"2026-05-19T22:25:59.870637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"edd5370463e34039a71ddbca2ac412ee"}} +{"capturedUtc":"2026-05-19T22:26:20.7918809+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"097f61bfc8c34ce29d667851a6e876a9"}} +{"capturedUtc":"2026-05-19T22:26:40.926271+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"25874d1254ee4c7ba83787fbaff5b61f"}} +{"capturedUtc":"2026-05-19T22:27:01.9276354+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6cae7ddc6de64136a1619ec2e35a7805"}} +{"capturedUtc":"2026-05-19T22:27:22.0376456+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba40062ac44a49bf9c296115c0b5a369"}} +{"capturedUtc":"2026-05-19T22:27:43.0249984+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7bdefada3c1a4f9187f498d999db2539"}} +{"capturedUtc":"2026-05-19T22:28:04.0119184+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e78e06adc2d47f8ab55790b39e91cc8"}} +{"capturedUtc":"2026-05-19T22:28:24.1510258+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a1f9251962994ae397ca2837e0dca73a"}} +{"capturedUtc":"2026-05-19T22:28:44.3762835+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5edd8cf41fbc42e59b8919a2c0bba8fb"}} +{"capturedUtc":"2026-05-19T22:29:05.1458804+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8887fc4026e6417d8670f28f65c5e19e"}} +{"capturedUtc":"2026-05-19T22:29:25.2295876+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a77be8396cd49d6bc616bba2f7ed015"}} +{"capturedUtc":"2026-05-19T22:29:45.305507+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0437c0f893fa4c14ae8c2de8917d2496"}} +{"capturedUtc":"2026-05-19T22:30:05.3896533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4b6fdfdaf211483484f6813b82a05e57"}} +{"capturedUtc":"2026-05-19T22:30:15.2919309+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5decf4d252f14844acba7080050135a3"}} +{"capturedUtc":"2026-05-19T22:30:17.1951036+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f6cde093320f43c3a94d87409db434bc"}} +{"capturedUtc":"2026-05-19T22:30:21.3948997+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f95a70ca8544fedafc2eb15618f6e99"}} +{"capturedUtc":"2026-05-19T22:30:26.305965+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7c3a76e67a4a46ee8f2ff7fabffd8a16"}} +{"capturedUtc":"2026-05-19T22:30:46.3995563+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1e8bb189cb9e4b9c99e600c73e93dcb4"}} +{"capturedUtc":"2026-05-19T22:31:07.19137+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a0bc2cdafac8496b9717558b1a5d652d"}} +{"capturedUtc":"2026-05-19T22:31:27.29966+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"35231e90ec404757856d7c293eabd8f6"}} +{"capturedUtc":"2026-05-19T22:31:47.5525543+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9656cb70a8f84121be8469f0bb84cbfa"}} +{"capturedUtc":"2026-05-19T22:32:07.701952+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f0f17cb9a4034a1b8d8347e8efebaa96"}} +{"capturedUtc":"2026-05-19T22:32:28.6374877+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b0055b3d923c44e691be693124bdb9b1"}} +{"capturedUtc":"2026-05-19T22:32:48.7954693+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e23bb7d64c0e444fa5e6cf2a4c2faf16"}} +{"capturedUtc":"2026-05-19T22:33:10.9467237+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ba1f030381b4b63b41321eeae929747"}} +{"capturedUtc":"2026-05-19T22:33:31.791476+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a7118ef828c64144b845f9b535f2d8a8"}} +{"capturedUtc":"2026-05-19T22:33:52.0339636+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bafc490fc45c4e9f9a2f22a67daa3fb9"}} +{"capturedUtc":"2026-05-19T22:34:09.8839819+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3b027a7198eb4e47a9da9813bb1a5cf6"}} +{"capturedUtc":"2026-05-19T22:34:10.1239982+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"1350eefad06e46ac9e1a883e56d7dad1"}} +{"capturedUtc":"2026-05-19T22:34:12.1756741+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be0ea66beabc42dfa8004d840d444767"}} +{"capturedUtc":"2026-05-19T22:34:32.9136897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"618203bad9454bb9a55e67e507c8818f"}} +{"capturedUtc":"2026-05-19T22:34:54.007618+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a9bf61fe41e74244b4724cf19248cda3"}} +{"capturedUtc":"2026-05-19T22:35:14.5819637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9e89da696464ce8a36cd6d714d1c6d6"}} +{"capturedUtc":"2026-05-19T22:35:35.1119131+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c3e5833d17b44a289006364166bbbe6e"}} +{"capturedUtc":"2026-05-19T22:35:56.16841+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c6803ab7a6ac4d4bb8dc33907d219899"}} +{"capturedUtc":"2026-05-19T22:36:17.2841045+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5956cdf873c84b55b64aafb11b3a693d"}} +{"capturedUtc":"2026-05-19T22:36:38.2530758+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7f2bea9fddd04e4f82f6fa39b98bef1b"}} +{"capturedUtc":"2026-05-19T22:36:58.4465893+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d0dbc62c8ef843859a94563c83de1db6"}} +{"capturedUtc":"2026-05-19T22:37:20.3239075+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"639be033158042f09fb4784e5e1efe26"}} +{"capturedUtc":"2026-05-19T22:37:40.5531847+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9337f6bd3594cec845541e5097eb0f4"}} +{"capturedUtc":"2026-05-19T22:38:01.4659899+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f0403af5d3e24c0eaf81e036becda442"}} +{"capturedUtc":"2026-05-19T22:38:21.5999484+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b25b8fa0d15d409f962a82900747bca6"}} +{"capturedUtc":"2026-05-19T22:38:42.5779917+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"72d95c9629974857a828820d4c759bf2"}} +{"capturedUtc":"2026-05-19T22:39:03.5687446+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d5524749b025470a81720b9000e83ca8"}} +{"capturedUtc":"2026-05-19T22:39:26.7012705+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"081753f3c1f24b01b745d67be3d57d73"}} +{"capturedUtc":"2026-05-19T22:39:46.8347336+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f03ae86b80a42d3b350663e2f12b413"}} +{"capturedUtc":"2026-05-19T22:40:07.1968124+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ef0353c8c524d0fb6de26354f0b4c1a"}} +{"capturedUtc":"2026-05-19T22:40:27.3417315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"08c6d72aac944b7fbf01d07521af9687"}} +{"capturedUtc":"2026-05-19T22:40:47.859001+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f0f921efbd44c1f8f36167fe6a4ccb1"}} +{"capturedUtc":"2026-05-19T22:41:08.9406632+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cd06c3d4b6024391b894ca72eb89a53f"}} +{"capturedUtc":"2026-05-19T22:41:32.0048829+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45677b9220824fb2bb909cde29ba6665"}} +{"capturedUtc":"2026-05-19T22:41:57.27274+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83a99eb6e4de4c2596d4d9c1dddbfee8"}} +{"capturedUtc":"2026-05-19T22:42:18.0905478+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e918a3fce8b3456bb451431c4258bdc6"}} +{"capturedUtc":"2026-05-19T22:42:38.2346849+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c406dd5f41a34e9490c1d81624ec8456"}} +{"capturedUtc":"2026-05-19T22:42:58.3420161+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3e54ef7fa6414bceb24e6763aaa96f4f"}} +{"capturedUtc":"2026-05-19T22:43:19.234956+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"170ad232d29f499289af47a3fa7e777e"}} +{"capturedUtc":"2026-05-19T22:43:39.359914+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc61fcb4d81e47c4a4378fe84c6836c4"}} +{"capturedUtc":"2026-05-19T22:44:00.3717229+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ea5d1aa1fbbd49d084f16fce956ef9f7"}} +{"capturedUtc":"2026-05-19T22:44:20.4465554+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c23aed91cddf4637b779baab58ffe818"}} +{"capturedUtc":"2026-05-19T22:44:41.4395375+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"424648bcff46462ca02ee0f589928ed1"}} +{"capturedUtc":"2026-05-19T22:45:01.5955877+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1b4576aaa96f4657b8c3588695d7b1ea"}} +{"capturedUtc":"2026-05-19T22:45:22.485806+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d726caf862e44b8c9cdee38ca9a59bc6"}} +{"capturedUtc":"2026-05-19T22:45:47.6109428+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cacdc44f139e4b9e85ed2e5af94a54b8"}} +{"capturedUtc":"2026-05-19T22:46:07.6919984+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"06369d9db7c241078066299f9c47e233"}} +{"capturedUtc":"2026-05-19T22:46:27.8304772+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f759c2b23eb4c1885128a41f781ec28"}} +{"capturedUtc":"2026-05-19T22:46:48.7578435+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3416b179435943908be568d21cf9891c"}} +{"capturedUtc":"2026-05-19T22:47:09.8067242+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"56cdd36b7a074938a8f0ed67c7c7069c"}} +{"capturedUtc":"2026-05-19T22:47:29.8973865+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aba3188da5834193aee8dac0613fbe20"}} +{"capturedUtc":"2026-05-19T22:47:50.8840351+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b639d0d9268e46f5b3df1ffd0642652d"}} +{"capturedUtc":"2026-05-19T22:48:11.9377329+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d207ebc00c34340a65624f14b926214"}} +{"capturedUtc":"2026-05-19T22:48:32.0239265+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7464ef82be194e48a032a68295cb6eea"}} +{"capturedUtc":"2026-05-19T22:48:52.1118762+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4f6233fb16cc402fa6f09d87da78d60d"}} +{"capturedUtc":"2026-05-19T22:49:13.0449072+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a05b0acd4b6840198a6f25c89ece534d"}} +{"capturedUtc":"2026-05-19T22:49:33.1945071+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5b81fb435d5a44fb93a802d508c24c78"}} +{"capturedUtc":"2026-05-19T22:49:53.2897342+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"961d1b20e7064c57a46b185e14848e69"}} +{"capturedUtc":"2026-05-19T22:50:14.1797284+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ebe7d6274eff415d9ed3bc77e20579d9"}} +{"capturedUtc":"2026-05-19T22:50:34.2929343+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dfce178488ae4aa38541302012a8b17b"}} +{"capturedUtc":"2026-05-19T22:50:55.2725427+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"40a65854c109415bbf5f168fda33a91c"}} +{"capturedUtc":"2026-05-19T22:51:15.3915256+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8bdb026e5cbc44069cfb264c3e912ae7"}} +{"capturedUtc":"2026-05-19T22:51:36.6045536+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9bc669785b9a4b6bb622bfd28e0d1088"}} +{"capturedUtc":"2026-05-19T22:51:57.2444533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ce8ffce16f9f4de2bd2043b566dddb84"}} +{"capturedUtc":"2026-05-19T22:52:17.3346108+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e255533a8a8048cdbe4d615c7f6f30a0"}} +{"capturedUtc":"2026-05-19T22:52:37.5147507+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"52c6cdb8e295476b8e629d25a0c109cd"}} +{"capturedUtc":"2026-05-19T22:52:57.6945471+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fab5100ad97b40f59bf29fdc1765c398"}} +{"capturedUtc":"2026-05-19T22:53:18.5676483+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bee942ff2c4e48a19d5c363d44948c38"}} +{"capturedUtc":"2026-05-19T22:53:39.5960297+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6296176c76964bd291a1ca559b410c35"}} +{"capturedUtc":"2026-05-19T22:53:59.7594358+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"630216fa05f642f389dc4b2b8ef2bd59"}} +{"capturedUtc":"2026-05-19T22:54:20.7119599+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed5d88b26c934d268edae9a5d73cac63"}} +{"capturedUtc":"2026-05-19T22:54:40.8328755+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d13ae3b20e449c38c2551b709297bb5"}} +{"capturedUtc":"2026-05-19T22:55:01.0757444+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc87ecffa18f4fa09d237cfe3e9dc7d5"}} +{"capturedUtc":"2026-05-19T22:55:23.8235053+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"369741cea8e4489ebe0dea4032b8cb46"}} +{"capturedUtc":"2026-05-19T22:55:43.8903992+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14518a7a51a74cdaa56c3e0a23ecda11"}} +{"capturedUtc":"2026-05-19T22:56:04.0448397+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"15862c6f33124700a8a1620cf23e8ff5"}} +{"capturedUtc":"2026-05-19T22:56:25.0199376+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a840242e4f24214a6e17d01e76598bb"}} +{"capturedUtc":"2026-05-19T22:56:45.0967988+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe0763d420334f03901fae8db0135f0d"}} +{"capturedUtc":"2026-05-19T22:57:06.0927124+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e3a2d373fba489e9f91fc01dd6be615"}} +{"capturedUtc":"2026-05-19T22:57:26.1924971+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"10e06e9f01b24bd0b7020e80eeb0e0b6"}} +{"capturedUtc":"2026-05-19T22:57:46.260063+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"57e62ee7882d47c08a7e23cf61ed87ba"}} +{"capturedUtc":"2026-05-19T22:58:07.252623+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2c762d86811b493caa983517f8a485e1"}} +{"capturedUtc":"2026-05-19T22:58:27.4955974+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4ac5086a4794763ae1a0300440d92bb"}} +{"capturedUtc":"2026-05-19T22:58:48.4390159+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a7fcfacf177442f88c7165533be1d84"}} +{"capturedUtc":"2026-05-19T22:59:08.5264897+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a028530c9aef41babc3eb1c5eecec895"}} +{"capturedUtc":"2026-05-19T22:59:28.6600045+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1a2814f5f0224dcfac12c4ab91bdf884"}} +{"capturedUtc":"2026-05-19T22:59:49.5105178+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16b81be470354fe09eb5c30d92afc0ba"}} +{"capturedUtc":"2026-05-19T23:00:11.6445533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0a8fdc34c0a24a0095b700a99a2ff99a"}} +{"capturedUtc":"2026-05-19T23:00:31.7625857+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"05c213a4de1c4d7f8788599d45185780"}} +{"capturedUtc":"2026-05-19T23:00:52.7237892+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eb4ad916c2fa4d1d9d399013298bd4fe"}} +{"capturedUtc":"2026-05-19T23:01:12.8199084+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd0c53997b0f41f79d229c07eebf6a2e"}} +{"capturedUtc":"2026-05-19T23:01:32.9066957+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"37f17896fddd4701bddfbd06b32becfe"}} +{"capturedUtc":"2026-05-19T23:01:53.604508+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd9a1e45ef174e4e95d268de1b411105"}} +{"capturedUtc":"2026-05-19T23:02:13.9245792+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b13da06b62a149eea1e0d4a4b0af3eb8"}} +{"capturedUtc":"2026-05-19T23:02:35.0110083+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7ab2511bc2e84493b607c3a1bb747773"}} +{"capturedUtc":"2026-05-19T23:02:55.109949+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d08b3051edd481b8a47d76b2df6f4f8"}} +{"capturedUtc":"2026-05-19T23:03:15.1892703+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0a6502f18ab740d2ad2c58e6dda3ac48"}} +{"capturedUtc":"2026-05-19T23:03:36.1995249+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac5b03a2cb6a4b63bc949a15b90374f9"}} +{"capturedUtc":"2026-05-19T23:03:57.2669122+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9dc9248e9e8248ba8b2836921129ef7e"}} +{"capturedUtc":"2026-05-19T23:04:18.2866944+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9a25a13a552c46f79170431c9c83f315"}} +{"capturedUtc":"2026-05-19T23:04:25.3269836+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c544b65a76c54d1d9b029770a5298f54"}} +{"capturedUtc":"2026-05-19T23:04:25.5698762+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"5b4a7fb50c43456a9bb11e138b44ec14"}} +{"capturedUtc":"2026-05-19T23:04:39.3432146+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"37ef1f5ad1504581a8aafea8c24a4b03"}} +{"capturedUtc":"2026-05-19T23:04:59.4871009+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"36cda01b998f4b2399b8f4291b239e0d"}} +{"capturedUtc":"2026-05-19T23:05:20.4201091+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d68e61b2ca63458aaf0970053bdb31b4"}} +{"capturedUtc":"2026-05-19T23:05:40.647618+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6f2cfafc02a1475e99484175d69e47bc"}} +{"capturedUtc":"2026-05-19T23:06:01.5065214+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3c06b36ea8634586bb1309835c77e6c3"}} +{"capturedUtc":"2026-05-19T23:06:22.8440921+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fea7d0fed39446f08f1e43d28735f61b"}} +{"capturedUtc":"2026-05-19T23:06:43.6669982+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"89b030d06c54481d835688302f569483"}} +{"capturedUtc":"2026-05-19T23:07:03.7689315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"82f9c552b5f74f6fa3bcb6326cbd7387"}} +{"capturedUtc":"2026-05-19T23:07:24.7028814+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dc10a1a1dc414e0aa709434313331c72"}} +{"capturedUtc":"2026-05-19T23:07:44.8144569+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2915de472d9e4ce49af1f32ba37816bd"}} +{"capturedUtc":"2026-05-19T23:08:05.780774+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0adb80454d3b40c1a4cbeb370fd95399"}} +{"capturedUtc":"2026-05-19T23:08:26.1936914+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ee8c32cb3f50425bb25080a7f3ed2a12"}} +{"capturedUtc":"2026-05-19T23:08:46.9575321+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"30b63a262e79493e813c6583256a232d"}} +{"capturedUtc":"2026-05-19T23:09:07.3249588+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f41770707772458c80a44a4544447ea4"}} +{"capturedUtc":"2026-05-19T23:09:27.999665+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"912d3e8ec7fd40deaee125d1407206f4"}} +{"capturedUtc":"2026-05-19T23:09:49.1089431+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b27c9f24b157429fb61633539a17fa5d"}} +{"capturedUtc":"2026-05-19T23:10:09.1839237+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8fcde55c83214d08bc8d3b7b0771c780"}} +{"capturedUtc":"2026-05-19T23:10:30.1376162+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bc1db99e7d6d46a09c7d51efdf3b0424"}} +{"capturedUtc":"2026-05-19T23:10:51.2850887+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f8eafbebf3f84ad2921bb323f8fd45ff"}} +{"capturedUtc":"2026-05-19T23:11:11.3567664+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b981465cc6ab4631997efc8a74a6e140"}} +{"capturedUtc":"2026-05-19T23:11:32.2870419+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f219060757ef4811bbf905b4b566c712"}} +{"capturedUtc":"2026-05-19T23:11:52.3950203+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3cea81c0de6f46ad85486466da334141"}} +{"capturedUtc":"2026-05-19T23:12:13.3589919+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"be129e94f3b34530a00543f5b7fcdd1e"}} +{"capturedUtc":"2026-05-19T23:12:34.4919934+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"00b7eeddb3d948c9912fda5e47e9c4f6"}} +{"capturedUtc":"2026-05-19T23:12:55.4716266+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"681e3766bf724cc9ab07b3f35d261d44"}} +{"capturedUtc":"2026-05-19T23:13:15.6360833+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0b64b6f376ab4e7a82753cc25fd84b07"}} +{"capturedUtc":"2026-05-19T23:13:36.2769717+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fb67f84fa8e94c4f842f9359f3495e5f"}} +{"capturedUtc":"2026-05-19T23:13:56.5947491+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"272f768339f74061a799fa8f1144802e"}} +{"capturedUtc":"2026-05-19T23:14:17.1506162+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"58f600ae8f514e9598f8eadea59a7bc4"}} +{"capturedUtc":"2026-05-19T23:14:37.4468044+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dadd08671f22439082aeae0337336b72"}} +{"capturedUtc":"2026-05-19T23:14:57.7515315+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"026f5e573f3f481aa5716597f9505e24"}} +{"capturedUtc":"2026-05-19T23:15:17.8694837+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"982f4d17f1c14750bae785c1f1b82d10"}} +{"capturedUtc":"2026-05-19T23:15:37.9559387+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e03b56759b8042068f477e3cd47a6fb9"}} +{"capturedUtc":"2026-05-19T23:15:58.8739659+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1a398c5e6a014738bcb6e7923688e0bd"}} +{"capturedUtc":"2026-05-19T23:16:18.9569383+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"455bda8e8df746fd981ff42c43ef0e7d"}} +{"capturedUtc":"2026-05-19T23:16:39.9845028+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"12f3cce0cedb439bba9cb1ed2c9ad633"}} +{"capturedUtc":"2026-05-19T23:17:00.1516926+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7bcc4a9b00764aa0889c7f24aec4c5c1"}} +{"capturedUtc":"2026-05-19T23:17:21.1059377+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a0bd281e84a49ef9a213ece0194a0f2"}} +{"capturedUtc":"2026-05-19T23:17:41.260947+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"406f9eaea512463081c7cace05df47ae"}} +{"capturedUtc":"2026-05-19T23:18:02.2058552+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a05fb2dd428749f69f3f20e1a770e810"}} +{"capturedUtc":"2026-05-19T23:18:23.227571+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ddacf5c81e448c0b2043c99734ecfa0"}} +{"capturedUtc":"2026-05-19T23:18:43.3578954+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e4726a85f40e4af8b0a27b4c7b9676f9"}} +{"capturedUtc":"2026-05-19T23:19:04.3284702+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"23bdd35b184440c59962085c2a637365"}} +{"capturedUtc":"2026-05-19T23:19:24.4466077+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8c9ee159a96240cdb973fd07b01e0fe1"}} +{"capturedUtc":"2026-05-19T23:19:45.4298379+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"901487bb800549e49a05b94a0f93a98c"}} +{"capturedUtc":"2026-05-19T23:20:05.5426112+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"72da702316ef4998a9d6a974b5b07e4f"}} +{"capturedUtc":"2026-05-19T23:20:26.5150002+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e28e28cdbbb04dac97b2c2f853c85bf5"}} +{"capturedUtc":"2026-05-19T23:20:46.6115767+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"073f7ab88c3f4e3d9540b4e9a3d336ef"}} +{"capturedUtc":"2026-05-19T23:21:07.3658345+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e385592ab314e93b697a3ebaf27564d"}} +{"capturedUtc":"2026-05-19T23:21:28.7437171+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"23ef8ad46edc44be911e5eaaa0b43965"}} +{"capturedUtc":"2026-05-19T23:21:49.5166299+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd29ba7df13e446697fd58088f498c1c"}} +{"capturedUtc":"2026-05-19T23:22:09.8039412+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6355feb492584a4ab9f726a1866a3c44"}} +{"capturedUtc":"2026-05-19T23:22:29.9791569+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0fe43dedd37241c0abe37e946cc3649f"}} +{"capturedUtc":"2026-05-19T23:22:50.8874735+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba860daf55e34f4d8abb370229b67b71"}} +{"capturedUtc":"2026-05-19T23:23:10.9694017+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ff95b8119e447d08f9e6697078f4f11"}} +{"capturedUtc":"2026-05-19T23:23:31.0550437+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e13354f94d424d71b74eed99d3a547a6"}} +{"capturedUtc":"2026-05-19T23:23:52.0905898+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a0d2cb55b4f4655b4a2b158685f1492"}} +{"capturedUtc":"2026-05-19T23:24:13.1474789+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9e7f1765101447e69926aa68196972f3"}} +{"capturedUtc":"2026-05-19T23:24:34.1660825+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4635715c81ca47a0a69f26e50922a878"}} +{"capturedUtc":"2026-05-19T23:24:54.2590029+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"eca7a16a393d4f61abda8bbe8e07848b"}} +{"capturedUtc":"2026-05-19T23:25:15.1939566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71f1221069c048bc8861a33ab60924b5"}} +{"capturedUtc":"2026-05-19T23:25:35.3400171+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"586095520e42447482ba6576cf131b01"}} +{"capturedUtc":"2026-05-19T23:25:55.4340461+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d4fa700086394cccb1902c7b9f0f0407"}} +{"capturedUtc":"2026-05-19T23:26:16.3229809+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2820a33b00de4b7eb62c3c816e2d827c"}} +{"capturedUtc":"2026-05-19T23:26:36.4030057+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"74302337d3e04477bf003c9289f5a4f8"}} +{"capturedUtc":"2026-05-19T23:26:56.4917454+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"26045e6e2cec4d2394f13f2590eb857c"}} +{"capturedUtc":"2026-05-19T23:27:16.5949416+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5d3bea4d3aee4bed92914938c153f126"}} +{"capturedUtc":"2026-05-19T23:27:37.3869957+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76c8bee1eb7941eabb1d956e7576a919"}} +{"capturedUtc":"2026-05-19T23:27:57.4922953+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95b744859748426099157cb514500659"}} +{"capturedUtc":"2026-05-19T23:28:17.6175012+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c03d2dc9b5c64467b99f679b3c2f3aeb"}} +{"capturedUtc":"2026-05-19T23:28:38.625773+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5163d8e5cd984c11beb0ac182492fda5"}} +{"capturedUtc":"2026-05-19T23:28:59.6676566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"99056ab0269b44838b1540157b824a12"}} +{"capturedUtc":"2026-05-19T23:29:19.7494719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f3a739b029414c91a0072a8b69eea31e"}} +{"capturedUtc":"2026-05-19T23:29:39.8469023+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45501597876342e39423168c87b4ef90"}} +{"capturedUtc":"2026-05-19T23:30:00.8206312+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b8602df39f4042639e59652882b26ff1"}} +{"capturedUtc":"2026-05-19T23:30:20.9134981+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"78c86d0ae54f4f2ba0e0365b34db8f5e"}} +{"capturedUtc":"2026-05-19T23:30:41.896528+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3e2ca5df4a874a82ab7afccdba6a53b9"}} +{"capturedUtc":"2026-05-19T23:31:02.0104751+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"18f39f4e6a6344489ffad23de25f76f0"}} +{"capturedUtc":"2026-05-19T23:31:23.0637701+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"38ae1b653a144d77af36edd53bfc3e3e"}} +{"capturedUtc":"2026-05-19T23:31:44.1165481+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2e4321295eff4d3d8550ac47767591e8"}} +{"capturedUtc":"2026-05-19T23:32:05.1689657+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dea1dad7963d4b64981c68be504efc42"}} +{"capturedUtc":"2026-05-19T23:32:25.2615084+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cff0a6cca3d442f08225cfe00c983d1b"}} +{"capturedUtc":"2026-05-19T23:32:46.2466303+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d52c5140bf4b4a73a8280ff850d851a3"}} +{"capturedUtc":"2026-05-19T23:33:06.3792769+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"57e057d9ec5a43f9b9aeeb4386e0102c"}} +{"capturedUtc":"2026-05-19T23:33:27.3890244+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0da9dc405e4490a9c7746fd66cba44a"}} +{"capturedUtc":"2026-05-19T23:33:47.5744765+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95a8ec0d774f4722a9ea1422d3b2ef72"}} +{"capturedUtc":"2026-05-19T23:34:08.457533+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"869d3ea02e254043a147f109f9dc6a01"}} +{"capturedUtc":"2026-05-19T23:34:29.4848578+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7d9c92669c6b488594981bcfb88cea43"}} +{"capturedUtc":"2026-05-19T23:34:35.5129038+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf97f87a324d40c1b6366d3e267c2ae4"}} +{"capturedUtc":"2026-05-19T23:34:36.5156457+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"88cdff53ac404cdc93566c89244b8401"}} +{"capturedUtc":"2026-05-19T23:34:49.607406+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d6da76ab4fba43dea8ef8261b016fb72"}} +{"capturedUtc":"2026-05-19T23:35:09.7280447+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"16577765910e49a3a2d47aa67fa39f0f"}} +{"capturedUtc":"2026-05-19T23:35:30.5919679+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4e8403e34e69437fa512404546866901"}} +{"capturedUtc":"2026-05-19T23:35:50.6837599+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c5d6d937c0aa41938fbb9bcabbe95d88"}} +{"capturedUtc":"2026-05-19T23:36:10.7519178+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3956d457cbc74a63a8953d0c3ec5f3d4"}} +{"capturedUtc":"2026-05-19T23:36:31.7248568+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"41b635785ef24ce7b521c8d1256d1763"}} +{"capturedUtc":"2026-05-19T23:36:51.859833+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"88187263302d4356b1b540c1274d52c0"}} +{"capturedUtc":"2026-05-19T23:37:12.8121833+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fe82aabbabd3481884715125a37cf80f"}} +{"capturedUtc":"2026-05-19T23:37:32.9383566+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"300921d72bf6487c8434a7307d591a19"}} +{"capturedUtc":"2026-05-19T23:37:54.0818029+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"95322874db364a7a9a380c865342f422"}} +{"capturedUtc":"2026-05-19T23:38:14.4124567+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d015e418da814122982d80405261fc6e"}} +{"capturedUtc":"2026-05-19T23:38:35.0189631+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"da46b8317727469badf28197759c4731"}} +{"capturedUtc":"2026-05-19T23:38:55.1615881+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ec197149fffc46118f59eb8a17ed73b2"}} +{"capturedUtc":"2026-05-19T23:39:16.1089243+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75987bd9ce4945058bcf8a9921666abd"}} +{"capturedUtc":"2026-05-19T23:39:37.1829406+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ecc1117c72284d0ea38b1b46768e6206"}} +{"capturedUtc":"2026-05-19T23:39:57.3354776+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"96d41be737c949098c1f5d2608cd059c"}} +{"capturedUtc":"2026-05-19T23:40:17.4774439+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5a9fa80665814d9d93449bee6847a4b0"}} +{"capturedUtc":"2026-05-19T23:40:38.3074384+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8b35f0a15a984476902060a8e5e97213"}} +{"capturedUtc":"2026-05-19T23:40:58.3839405+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"741419b7c4624fb9b1c6cc1a32bb81ef"}} +{"capturedUtc":"2026-05-19T23:41:19.3969015+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f48b061cd5114c7ea6f06ce8ce3ba999"}} +{"capturedUtc":"2026-05-19T23:41:41.4575828+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"19c5301586844da9aa1f67ae6ee34de4"}} +{"capturedUtc":"2026-05-19T23:42:01.7063094+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"202d29f7e6f84e6895d9739591017e56"}} +{"capturedUtc":"2026-05-19T23:42:22.5329404+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c8397567a2414e73a038b64da0a4a098"}} +{"capturedUtc":"2026-05-19T23:42:42.6319679+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4e0f2083015d46bba298a5a08258fccb"}} +{"capturedUtc":"2026-05-19T23:43:03.5978293+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"43749b470b624ddfbe8ac78a44074419"}} +{"capturedUtc":"2026-05-19T23:43:23.678441+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"28ce2cea22ad4e66830a714d8987423a"}} +{"capturedUtc":"2026-05-19T23:43:45.8026761+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"403c5b6e822848af8449f7011c0f7a23"}} +{"capturedUtc":"2026-05-19T23:44:05.9989986+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c0bf3565e72f4744b699f0eeba619e0f"}} +{"capturedUtc":"2026-05-19T23:44:26.8945966+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b72c2dadec9841ad9e679b43668ba631"}} +{"capturedUtc":"2026-05-19T23:44:47.030609+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cbcdaba6d0ad46ae8f9e256583de20f0"}} +{"capturedUtc":"2026-05-19T23:45:07.4838185+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e79669d2e2bd475ba18cbb5974c384a5"}} +{"capturedUtc":"2026-05-19T23:45:28.0154536+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1caf6887d3a04543be6fc26a5387fc58"}} +{"capturedUtc":"2026-05-19T23:45:53.1830562+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f2b9ae3e70e442fd9ceb8d4372253347"}} +{"capturedUtc":"2026-05-19T23:46:14.1815168+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6aa0033df3e34a168c9b27e915e2fee8"}} +{"capturedUtc":"2026-05-19T23:46:34.4754065+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c297e68373a745f1b6315b97cd6daf11"}} +{"capturedUtc":"2026-05-19T23:46:55.3649173+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5e8e517d2c1042a08567c6b3e35455d6"}} +{"capturedUtc":"2026-05-19T23:47:16.384858+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"98cb2e6c7ec743549002be75ae24cdca"}} +{"capturedUtc":"2026-05-19T23:47:37.4176996+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"797b90597d104dae80ebaec905d941cd"}} +{"capturedUtc":"2026-05-19T23:47:57.5059499+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b09fb1cb78124aea96460b94825f0e3a"}} +{"capturedUtc":"2026-05-19T23:48:17.5984746+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6ccba2955ecf49ce975c5270818f1f7e"}} +{"capturedUtc":"2026-05-19T23:48:38.5244967+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d7ff126f406842a39f48f8f1433e07dd"}} +{"capturedUtc":"2026-05-19T23:48:59.7268305+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"63d6dd21abab4ba1949c96e3c4a46203"}} +{"capturedUtc":"2026-05-19T23:49:20.6169303+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5bc4628c8bb04aca937fda0e618aca12"}} +{"capturedUtc":"2026-05-19T23:49:40.7406179+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"14cbada046a5403dae1d6818ce46cb38"}} +{"capturedUtc":"2026-05-19T23:50:00.8207946+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"17cfd8dcee7f4581ac0389f732a0bb06"}} +{"capturedUtc":"2026-05-19T23:50:21.5273148+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a1a85382b3874275af501ad1f371521d"}} +{"capturedUtc":"2026-05-19T23:50:41.8346241+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f839e6ef8689433f96f51149d3d255c3"}} +{"capturedUtc":"2026-05-19T23:51:01.9844546+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dd35a6b5aac741758b48309792debfd2"}} +{"capturedUtc":"2026-05-19T23:51:23.010977+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76a2ce1fa5964f64ad8a3457ab01dccc"}} +{"capturedUtc":"2026-05-19T23:51:43.9575313+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42f93e60c4af4b93b34a6726b58a06ce"}} +{"capturedUtc":"2026-05-19T23:52:04.1038074+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e4380521f0b34f60b76c44222edb8ef2"}} +{"capturedUtc":"2026-05-19T23:52:25.0914961+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4826a81c8cdc4215a440b9cbac347233"}} +{"capturedUtc":"2026-05-19T23:52:45.1747012+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"286f20cfcc9a4bcba2c2f7f938400031"}} +{"capturedUtc":"2026-05-19T23:53:05.2804969+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4841085a5615417f8687637eb59ea2af"}} +{"capturedUtc":"2026-05-19T23:53:26.2039489+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e12484ecbd80442bb6dcd3ee405b0d63"}} +{"capturedUtc":"2026-05-19T23:53:46.2939028+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a387af111f6145d69913635712eed503"}} +{"capturedUtc":"2026-05-19T23:54:07.3185268+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b90d7224f0034c5087a7a82de0ebbd0f"}} +{"capturedUtc":"2026-05-19T23:54:27.6188715+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fad73fbd2e37469ab0596d42d911448b"}} +{"capturedUtc":"2026-05-19T23:54:48.3989877+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e1ad51bc52a445ecaf58d4c00bdcd1d7"}} +{"capturedUtc":"2026-05-19T23:55:08.4838653+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4970e2e8d6db4a25bfc1c5fd250e3b4b"}} +{"capturedUtc":"2026-05-19T23:55:28.5805096+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a84112c89c84881b74fdcd50c0b9e9b"}} +{"capturedUtc":"2026-05-19T23:55:49.4919169+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4875c2890d6f4215b6fedaebc45066d6"}} +{"capturedUtc":"2026-05-19T23:56:10.8578191+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"97cd499b32ce493bb2bb93ea9c6ca475"}} +{"capturedUtc":"2026-05-19T23:56:31.7120504+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b64bcb3acd384a77b8b0d86b98032af3"}} +{"capturedUtc":"2026-05-19T23:56:52.7318856+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ba42988dfb47416aa62a44a72eb1f9d6"}} +{"capturedUtc":"2026-05-19T23:57:13.7312862+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a5ee9785aae44739546e5a027f12da5"}} +{"capturedUtc":"2026-05-19T23:57:34.8784907+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"43528a13e57542ccac39ae0553c5e2d5"}} +{"capturedUtc":"2026-05-19T23:57:55.8288841+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"785965dca185479ab25feba555ea977d"}} +{"capturedUtc":"2026-05-19T23:58:17.021979+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"acb081a4aad74cecaa75b90ee5f7046c"}} +{"capturedUtc":"2026-05-19T23:58:37.5288119+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"71f76488b8c0478c8e19ac8fa866d720"}} +{"capturedUtc":"2026-05-19T23:58:57.6730577+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f1b13381e811412e85ea6119e1c7ae3a"}} +{"capturedUtc":"2026-05-19T23:59:18.0461834+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92b7dc86deb74959beb2fcbddd818da5"}} +{"capturedUtc":"2026-05-19T23:59:38.1477912+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8fda967386704c728cb29a0578d09987"}} +{"capturedUtc":"2026-05-19T23:59:59.1867911+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"331f3d6d7a6543aabaa6b3efd282fc73"}} +{"capturedUtc":"2026-05-20T00:00:20.5139561+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a3fe5ea2f6140e586d04fe24508d635"}} +{"capturedUtc":"2026-05-20T00:00:41.2838494+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a2a5773d5a404eac8201ab8c0ba8ac8a"}} +{"capturedUtc":"2026-05-20T00:01:02.3226875+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f9b76c9839145f699101d4964d94fc1"}} +{"capturedUtc":"2026-05-20T00:01:22.4430231+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4b84ce58e0ed4b7183398dc9dc589f85"}} +{"capturedUtc":"2026-05-20T00:01:42.5346333+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"11be1bf6c4d6422896a3e63df9b95f4f"}} +{"capturedUtc":"2026-05-20T00:02:03.4505002+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"aaa4c4efe29b46b2ba2893ecbe584eee"}} +{"capturedUtc":"2026-05-20T00:02:28.532795+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4a0357888c244081b3d87e9505e1ab07"}} +{"capturedUtc":"2026-05-20T00:02:49.5679297+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ac4359b4d8464edbb449f8ab1ca7e338"}} +{"capturedUtc":"2026-05-20T00:03:09.6825488+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bb10937a749248679adf0cbc5aadda2f"}} +{"capturedUtc":"2026-05-20T00:03:30.6980976+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e0a7196164184c439e672b92035906cc"}} +{"capturedUtc":"2026-05-20T00:03:50.8058719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"55a7f6d658f147f7b37bef5a8c06ade7"}} +{"capturedUtc":"2026-05-20T00:03:55.7877565+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b3a29366d3504023aff527102a48bdf4"}} +{"capturedUtc":"2026-05-20T00:04:11.7451686+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7a6b88a56f314779999c261acb49906b"}} +{"capturedUtc":"2026-05-20T00:04:31.8289738+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"07371a1f49594fc5a596bc346dd4d437"}} +{"capturedUtc":"2026-05-20T00:04:45.9155369+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f62197b0a4bf472ea6bf8b5166ef7f3a"}} +{"capturedUtc":"2026-05-20T00:04:46.127996+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"4439b5e197bc4184a1e71ae698cff08e"}} +{"capturedUtc":"2026-05-20T00:04:52.0588685+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ada1c77469784ea59a8bb101125c87ea"}} +{"capturedUtc":"2026-05-20T00:05:13.0077914+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"844b87a92b524843be813b55d96d5875"}} +{"capturedUtc":"2026-05-20T00:05:33.1023928+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d59a0b1f2d364d6481b0a331139c8c56"}} +{"capturedUtc":"2026-05-20T00:05:54.071426+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c802224700834fff8e398ac965f505e3"}} +{"capturedUtc":"2026-05-20T00:06:14.1835898+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"433887b844c5444788b4a42fcb8f144e"}} +{"capturedUtc":"2026-05-20T00:06:34.2740469+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"02bfb70a80ec438ea2b4edd25ab6d569"}} +{"capturedUtc":"2026-05-20T00:06:55.2359042+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4504596677ee4a1fbaf0ddb5930aa869"}} +{"capturedUtc":"2026-05-20T00:07:15.3982793+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d5e175935d91489089c4d9e20deb6e7e"}} +{"capturedUtc":"2026-05-20T00:07:36.3239098+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ddde6f1a9dc843ffb514ab1750d7fcd4"}} +{"capturedUtc":"2026-05-20T00:07:57.3813424+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29889b2012004f79b6c63813e5717c21"}} +{"capturedUtc":"2026-05-20T00:08:17.5147135+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"380b6b9c001242c4b84f4d4e74027b3e"}} +{"capturedUtc":"2026-05-20T00:08:39.4294864+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20e01e71fc4f489585b12b4a33419c0f"}} +{"capturedUtc":"2026-05-20T00:08:59.5899717+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b6b3d73c89b94270bed0b921cdaf2c4a"}} +{"capturedUtc":"2026-05-20T00:09:20.5374213+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"8c559956fa414bc19f0c193519573c18"}} +{"capturedUtc":"2026-05-20T00:09:40.6440388+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3f96e738fdb9445c873b6e446f0c980d"}} +{"capturedUtc":"2026-05-20T00:10:01.632548+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"562db8af4d7248d18e50da0e73044a4d"}} +{"capturedUtc":"2026-05-20T00:10:22.6400177+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5cc5eff100a94a02a345e9c54bea8370"}} +{"capturedUtc":"2026-05-20T00:10:43.7955215+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d78099db688d4efbb228961180e7fd23"}} +{"capturedUtc":"2026-05-20T00:11:03.9315127+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"55f86f868971458dbc8a7a71aa807e48"}} +{"capturedUtc":"2026-05-20T00:11:24.8748321+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d28c83823e5c4613a3787bd812283e84"}} +{"capturedUtc":"2026-05-20T00:11:44.9639006+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9abc2e469eda40778a13dcc814f877ad"}} +{"capturedUtc":"2026-05-20T00:12:05.0329336+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bd9df520d7d64d1591a60f08bbef2b57"}} +{"capturedUtc":"2026-05-20T00:12:26.073924+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bbe2454aa36b47e7a19cf8325ba46511"}} +{"capturedUtc":"2026-05-20T00:12:47.2742193+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf37f27cd0ec44f3b2237b1a7edecff0"}} +{"capturedUtc":"2026-05-20T00:13:07.6181304+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9736b76335ca4dc59d26651a4aee2019"}} +{"capturedUtc":"2026-05-20T00:13:27.6955693+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d6d0252e7382425393acce5b2cee36c3"}} +{"capturedUtc":"2026-05-20T00:13:48.1577572+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ac84bc9e0d047a4ab3013eda57e6865"}} +{"capturedUtc":"2026-05-20T00:14:08.2460046+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"915d21d37dea4bc8a799afebd0d56b79"}} +{"capturedUtc":"2026-05-20T00:14:28.3879144+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"444df5322b9b40dc803c5546d08f6de0"}} +{"capturedUtc":"2026-05-20T00:14:51.2339824+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2976c1433b144146826d56b3944fae2f"}} +{"capturedUtc":"2026-05-20T00:15:11.40386+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2b1334716458489f918f74b2e834cbdf"}} +{"capturedUtc":"2026-05-20T00:15:31.577974+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c3fe77f82d3048f89774837d0bba0743"}} +{"capturedUtc":"2026-05-20T00:15:52.5714727+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f294754e13494b8c893e7ea1a93aa57c"}} +{"capturedUtc":"2026-05-20T00:16:13.5308912+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2be48f2548f0492e9b71eee3c3ca532b"}} +{"capturedUtc":"2026-05-20T00:16:34.5637145+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b062929019d94f4c8e2c4d3918c6a474"}} +{"capturedUtc":"2026-05-20T00:16:55.9606473+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"93e9fb85cf54473a82d36d4c64513f79"}} +{"capturedUtc":"2026-05-20T00:17:16.6459182+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b9a119a0c26f40f99a0280f0257fc5c9"}} +{"capturedUtc":"2026-05-20T00:17:36.7309597+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"40b2ec6475a740a1bd4759cb51373645"}} +{"capturedUtc":"2026-05-20T00:17:56.8085637+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0aca88f32e9d4704bf702fe4698b06dc"}} +{"capturedUtc":"2026-05-20T00:18:16.932945+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83872b2b103149368335255e5df87726"}} +{"capturedUtc":"2026-05-20T00:18:37.1018102+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a2859a03ca654834a98032096d91fbcd"}} +{"capturedUtc":"2026-05-20T00:18:58.8623418+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f805f11ea62a440cb0f94f46f44b7a1e"}} +{"capturedUtc":"2026-05-20T00:19:19.9116326+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f89bcadde1844f28f392410e3141023"}} +{"capturedUtc":"2026-05-20T00:19:40.0090162+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a50da5b3a41a4d58a6fcff3ee5d4e9a4"}} +{"capturedUtc":"2026-05-20T00:20:00.1010074+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"23d30d821f1249bf8419cff1e3eeaa01"}} +{"capturedUtc":"2026-05-20T00:20:20.1759175+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"010806ae39e04d46a511995a6a54736e"}} +{"capturedUtc":"2026-05-20T00:20:40.9525675+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dfb503547b0a48c98a92cc6b047187c9"}} +{"capturedUtc":"2026-05-20T00:21:03.1228571+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3c7853aafa6d441384a2802185fdecad"}} +{"capturedUtc":"2026-05-20T00:21:23.3042251+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"813d95cb0fe44b5983c4daba75e540bc"}} +{"capturedUtc":"2026-05-20T00:21:44.2679423+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d9d5b234860348d3a0612fc50577cf86"}} +{"capturedUtc":"2026-05-20T00:22:04.3497762+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e882d94c8e34713a6a9e95ba1bed633"}} +{"capturedUtc":"2026-05-20T00:22:25.3286734+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"126dbea3f5734841ae35de6a15aa397e"}} +{"capturedUtc":"2026-05-20T00:22:45.4228625+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"45feeda281b042e28f8e8046932a196c"}} +{"capturedUtc":"2026-05-20T00:23:09.5136831+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"38e783bd325a405aad40671155b3391d"}} +{"capturedUtc":"2026-05-20T00:23:31.5646029+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c25f45adc327436fa6c2f1d26ec19cea"}} +{"capturedUtc":"2026-05-20T00:23:51.7142619+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"bdbf9a88929c4eba8ef8cdbaecbe50dd"}} +{"capturedUtc":"2026-05-20T00:24:12.5917957+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf12747ca9d042b5b6fcb992b78e0c47"}} +{"capturedUtc":"2026-05-20T00:24:33.6391557+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"23eb237d51d44a1bb4a1fe76c53a6308"}} +{"capturedUtc":"2026-05-20T00:24:53.7175073+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"dac202f530434b5a9b9c88ffd6f9f224"}} +{"capturedUtc":"2026-05-20T00:25:14.8079462+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c864b3600f874cf2a4f1068f30b0d037"}} +{"capturedUtc":"2026-05-20T00:25:35.7775679+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"29151a3740d646ec8591f7fe3ab574a1"}} +{"capturedUtc":"2026-05-20T00:25:55.8778785+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"645ab705bd8e42caa6d56910636f646e"}} +{"capturedUtc":"2026-05-20T00:26:15.950844+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5130bd61940b4b6e831cdcda798bccc8"}} +{"capturedUtc":"2026-05-20T00:26:36.903969+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"28e9824d32704157a14af3d81d7b827c"}} +{"capturedUtc":"2026-05-20T00:26:56.9835231+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f086ff3ee60642f5a6e041061298aee5"}} +{"capturedUtc":"2026-05-20T00:27:19.0776916+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cadc7ffb5be74dac88491fc2fa515489"}} +{"capturedUtc":"2026-05-20T00:27:40.1328773+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9e18a83ff30646f29337d8bf08960206"}} +{"capturedUtc":"2026-05-20T00:28:00.241541+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a04104e3922b49ffacf225a7e41c096b"}} +{"capturedUtc":"2026-05-20T00:28:21.1929017+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9bb53a7c45b54d409057379999186edb"}} +{"capturedUtc":"2026-05-20T00:28:42.2224922+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"76b497bd8036425bbe90a105407fd797"}} +{"capturedUtc":"2026-05-20T00:29:02.3179179+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"5f27cc950223422c9a94f61844a8fc97"}} +{"capturedUtc":"2026-05-20T00:29:23.337749+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c16a08f8985c42a3899213acb21953b3"}} +{"capturedUtc":"2026-05-20T00:29:43.5691649+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"42a788c18e2b4a10b73b55edd7f55de1"}} +{"capturedUtc":"2026-05-20T00:30:04.435933+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a8f3835bee7a45f3853c63914e15a62b"}} +{"capturedUtc":"2026-05-20T00:30:17.6581776+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"4933bf86f82944078aad6598fec686d1"}} +{"capturedUtc":"2026-05-20T00:30:22.4969152+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83b402e64de8439d9fa2d8af0b560f10"}} +{"capturedUtc":"2026-05-20T00:30:24.5718131+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"f9ea32946a3246cdae4a948d4103356d"}} +{"capturedUtc":"2026-05-20T00:30:44.6576085+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7b48ed8ddc164144a0758cf5f81c05b7"}} +{"capturedUtc":"2026-05-20T00:31:05.5508773+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20a0b78c59994b548cf8ea4e5bc83fdc"}} +{"capturedUtc":"2026-05-20T00:31:27.7599461+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d1df32d53da1413c80ca7c59f00a7432"}} +{"capturedUtc":"2026-05-20T00:31:48.7258457+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"93eaf44349ca41e59fc317e4c93a6fbd"}} +{"capturedUtc":"2026-05-20T00:32:08.827029+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"871add5c94464d978de1d4efd8a97c84"}} +{"capturedUtc":"2026-05-20T00:32:29.8025467+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c97c18cbea9648b4a5469a44d4146b74"}} +{"capturedUtc":"2026-05-20T00:32:49.9082453+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"db29bff9872644698da7eb7f8bed8c8e"}} +{"capturedUtc":"2026-05-20T00:33:10.0116497+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"83bc743da9e44ad4a6a8c62f065f92fb"}} +{"capturedUtc":"2026-05-20T00:33:31.3915869+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9c24f95ad0ee4cbf9162171942b39f52"}} +{"capturedUtc":"2026-05-20T00:33:52.0844624+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cbbb30c1fc954fcf984d2665a596acb0"}} +{"capturedUtc":"2026-05-20T00:34:14.1180913+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0193d4eb15e243ac8ad384212ac8cc25"}} +{"capturedUtc":"2026-05-20T00:34:34.200497+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6379147a53064fdaae2c43a4c4f5196d"}} +{"capturedUtc":"2026-05-20T00:34:55.1977555+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3ed83341b0d141e58cfcaf8bab3a257f"}} +{"capturedUtc":"2026-05-20T00:34:56.236147+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"313ed37c7bb541e4ae04ae90cbdf2417"}} +{"capturedUtc":"2026-05-20T00:34:57.2220877+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"6ce7072cb94b41d3b06ecc75cf51f813"}} +{"capturedUtc":"2026-05-20T00:35:15.3004454+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b499c5ed50734dfbb6b5f66714cab78a"}} +{"capturedUtc":"2026-05-20T00:35:35.7740442+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2e2937da1e9f48cb8030fe3055f52d08"}} +{"capturedUtc":"2026-05-20T00:35:56.3989191+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a939c2392397457da32261c012bcc83c"}} +{"capturedUtc":"2026-05-20T00:36:17.380347+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"49b0d930c2bc490da42011468a7069a3"}} +{"capturedUtc":"2026-05-20T00:37:39.1750996+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"119791390e034b6b8202704fb1f69e27"}} +{"capturedUtc":"2026-05-20T00:37:39.4206562+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"cf7f4502695e4605a317c1ea0f8181db"}} +{"capturedUtc":"2026-05-20T00:37:45.5469178+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ff1425092fe84040a64fbce5b5f12067"}} +{"capturedUtc":"2026-05-20T00:38:06.545089+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e7753efd0c494b30b3a7e131df2241e4"}} +{"capturedUtc":"2026-05-20T00:38:27.5938719+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"92d1f9d1acbc4650927b6d0c26cf0a71"}} +{"capturedUtc":"2026-05-20T00:38:47.7245245+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a487fc2f35484299948d80cc50acac31"}} +{"capturedUtc":"2026-05-20T00:39:07.8244026+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9d3abe921005462faa0a5acaf77b2ced"}} +{"capturedUtc":"2026-05-20T00:39:28.6895456+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"d424d50b045441caa781656223752d8e"}} +{"capturedUtc":"2026-05-20T00:39:48.7854225+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"6c082c4ba9854010b44c50e419edb97f"}} +{"capturedUtc":"2026-05-20T00:40:08.8670384+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"03f06d06050c4eb889d71b1c2f04648e"}} +{"capturedUtc":"2026-05-20T00:40:29.886087+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"244c23e988e94feb8e86fe3ebcf1b89a"}} +{"capturedUtc":"2026-05-20T00:40:49.9822677+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"90883bb183a346dbaeb3488d2b6d0d71"}} +{"capturedUtc":"2026-05-20T00:41:10.0792645+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"c88c569d3dbb499ab200a482eb43aa1f"}} +{"capturedUtc":"2026-05-20T00:41:31.0147175+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"43b5a7434f734c419838584e04a65773"}} +{"capturedUtc":"2026-05-20T00:41:51.1146602+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2a853a3685284abbb496baf5eda5fe38"}} +{"capturedUtc":"2026-05-20T00:42:11.2452336+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"ed0a06b4f268438f823212d54ca88a54"}} +{"capturedUtc":"2026-05-20T00:42:31.324937+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fea8461038644c5b93005d8e3a7b26b2"}} +{"capturedUtc":"2026-05-20T00:42:52.2029116+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e1300c8511ed4f94a1086db9cc0712f1"}} +{"capturedUtc":"2026-05-20T00:43:12.3417075+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"589802d015884e468733cb873dafaf78"}} +{"capturedUtc":"2026-05-20T00:43:33.3447297+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9437ccbb60e94c449e9b46171a9e619e"}} +{"capturedUtc":"2026-05-20T00:44:18.504154+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"63a84916cf824fbd9809504f40615442"}} +{"capturedUtc":"2026-05-20T00:45:22.8131579+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Notification_20150505","operation":"NewRobotToken","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a01c4e8874214017b76c9a7fe50b9254"}} +{"capturedUtc":"2026-05-20T00:45:31.2195925+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Log_20150309","operation":"PutEventsAsync","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"649d043c797e4b10be1e588c46650072"}} +{"capturedUtc":"2026-05-20T00:45:31.3665134+00:00","sink":"http","eventType":"protocol_record","details":{"method":"PUT","host":"api.jibo.com","path":"/upload/log-events","servicePrefix":null,"operation":null,"statusCode":200,"contentType":"text/plain","requestId":"dc3934b0bf6a492a8a3944052d4d9c6e"}} +{"capturedUtc":"2026-05-20T00:45:37.3298725+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"e1365496d38946c7b20fcb0ca106b5ba"}} +{"capturedUtc":"2026-05-20T00:45:46.0666574+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Account_20151111","operation":"Get","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"75db5761908841a3977f5091d5d74ef1"}} +{"capturedUtc":"2026-05-20T00:45:47.0506898+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b193d535b897449ea7ebd9db65e97a00"}} +{"capturedUtc":"2026-05-20T00:45:47.0598428+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"GetRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"7c06a71412b34e15a38a5b3d83a9c4fc"}} +{"capturedUtc":"2026-05-20T00:45:47.3219622+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Media_20160725","operation":"List","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0865dbe2c84b4cbe919ded7e9fc14bb1"}} +{"capturedUtc":"2026-05-20T00:45:47.8283755+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Person_20160801","operation":"ListHolidays","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"3a4ec9f054c3403288b3c47e222cdb77"}} +{"capturedUtc":"2026-05-20T00:45:52.3431608+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"1932f37218c34a82ae7c3afcebf02908"}} +{"capturedUtc":"2026-05-20T00:45:57.5683674+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"edc4f5b9994541a8bdaee06b5a87de08"}} +{"capturedUtc":"2026-05-20T00:46:03.4936356+00:00","sink":"http","eventType":"protocol_record","details":{"method":"GET","host":"api.jibo.com","path":"/","servicePrefix":null,"operation":null,"statusCode":204,"contentType":"text/plain","requestId":"f4a0117bd08c4de9a6147cf492c7820a"}} +{"capturedUtc":"2026-05-20T00:46:21.4865383+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Robot_20160225","operation":"UpdateRobot","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"b398ffe4393c46b18a0b1754875d29ef"}} +{"capturedUtc":"2026-05-20T00:46:23.5291191+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"0e9b7fa24ee64c51a7d087bc86815063"}} +{"capturedUtc":"2026-05-20T00:46:43.648936+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"993dc67e1f1e48d8826ad39ce22f464c"}} +{"capturedUtc":"2026-05-20T00:47:05.6203629+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"add140937c7d4b0f9556ff1f5753be24"}} +{"capturedUtc":"2026-05-20T00:47:25.766382+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9378b35a6f6b46de9ccfa9b76990a15b"}} +{"capturedUtc":"2026-05-20T00:47:46.2046714+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9fa1a8a21350441a9421f8fcca26fa79"}} +{"capturedUtc":"2026-05-20T00:48:06.8110831+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2ef6ee2b0a3448219dd8fb75b58d3f1b"}} +{"capturedUtc":"2026-05-20T00:48:27.5360686+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"edb2f8e9c37a47e3987976e409a2e9fc"}} +{"capturedUtc":"2026-05-20T00:48:48.1266304+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1728a838ae73416b8f1c601a8b4c37af"}} +{"capturedUtc":"2026-05-20T00:49:08.9239419+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"20e9384e7c964c1a839c65dce24e2c24"}} +{"capturedUtc":"2026-05-20T00:49:29.9637483+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"46d11e9d8a134777ac22755e8d56781e"}} +{"capturedUtc":"2026-05-20T00:49:51.0324008+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"afe99323f1f64724baecfc5f514946a4"}} +{"capturedUtc":"2026-05-20T00:50:11.2282387+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"1f9d117438024378b4945fac5f5473ef"}} +{"capturedUtc":"2026-05-20T00:50:31.3509384+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"996d121ca412400faf967964c5c356c9"}} +{"capturedUtc":"2026-05-20T00:50:52.4254713+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"fcf00bcfa4334c73b930be61c33740d7"}} +{"capturedUtc":"2026-05-20T00:51:13.1701991+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"08290b143ff64fd2a04f17253e978454"}} +{"capturedUtc":"2026-05-20T00:51:34.20355+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"a29c69c6da57400e8a223e18951a2d10"}} +{"capturedUtc":"2026-05-20T00:51:55.2470967+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"2314a17404844ea7aaa4dead3781458e"}} +{"capturedUtc":"2026-05-20T00:52:16.2737875+00:00","sink":"http","eventType":"protocol_record","details":{"method":"POST","host":"api.jibo.com","path":"/","servicePrefix":"Loop_20160324","operation":"ListLoops","statusCode":200,"contentType":"application/x-amz-json-1.1","requestId":"9f9fe934395b47d5bb99521318db914b"}} diff --git a/_tmp/jibo-test-48/captures/turn/capture-index.ndjson b/_tmp/jibo-test-48/captures/turn/capture-index.ndjson new file mode 100644 index 0000000..294041b --- /dev/null +++ b/_tmp/jibo-test-48/captures/turn/capture-index.ndjson @@ -0,0 +1,700 @@ +{"capturedUtc":"2026-05-17T23:14:01.3352454+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:09.4772836+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:09.4796756+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:10.102779+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:11.1223946+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:11.1236046+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:11.3663543+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:12.9889657+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:13.0669954+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:13.0679044+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:13.0687499+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:20.2336529+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:20.2338457+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:21.1680845+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:21.1689213+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:22.1691653+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:22.1699032+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:23.5188106+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:23.7206419+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:23.7212985+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:23.7218807+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:46.3868464+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:46.3870165+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:47.2484262+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:47.249176+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:48.2523348+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:48.2531103+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:49.6060135+00:00","sink":"turn","eventType":"chitchat_state_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:49.6062328+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:49.6065552+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:49.682937+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:49.6836363+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:49.6841445+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:53.339179+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:53.3394044+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:54.2605003+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:54.2612807+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:55.2652315+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:55.2660075+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:56.5786791+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:56.6613799+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:56.6620338+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:24:56.6626435+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:02.3324341+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:02.3325917+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:03.2761184+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:03.2771838+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:04.2777126+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:04.2790051+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:05.6142144+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:05.6911212+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:05.6917979+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:05.6923467+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:11.6208915+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:11.6210712+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:12.291887+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:13.2934906+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:13.2941669+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:13.3447177+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:14.2964791+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:15.6132407+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:15.6898295+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:15.6905715+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:15.691184+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:15.6917728+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:21.3951466+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:21.3953497+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:22.3098537+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:22.3107244+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:23.3106362+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:23.3115525+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:24.6597796+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:24.7359564+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:24.7365698+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:24.7371424+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:31.4457255+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:31.4459068+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:32.325229+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:32.3259466+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:33.3259858+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:33.3331821+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:34.6333943+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:34.7101082+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:34.7107627+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:34.7113049+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:41.4130367+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:41.4131892+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:42.3466886+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:42.3472677+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:43.3439835+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:43.3447531+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:44.6647328+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:44.6649783+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:44.7415626+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:44.7421558+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:25:44.7426396+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:04.4966636+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:04.496926+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:05.3757065+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:05.3762392+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:06.3765062+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:06.3788216+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:07.6987281+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:07.6989749+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:07.7755731+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:07.7761539+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:07.7766423+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:30.5492663+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:30.5495121+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:31.4197886+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:31.420281+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:32.4196914+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:32.4202571+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:33.7214458+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:33.7979006+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:33.7985435+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:39.5080178+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:39.508199+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:40.4348101+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:40.4353148+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:41.4355327+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:41.4360784+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:42.7097239+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:42.7861723+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:42.7868238+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:26:42.7872305+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:11.6384973+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:11.6386837+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:12.5467788+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:12.5472719+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:13.5530191+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:13.5536751+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:14.8029517+00:00","sink":"turn","eventType":"personal_report_state_enter","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:14.8032318+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:14.8792061+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:14.8798358+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:14.8802843+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:33.6384293+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:33.6385582+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:34.5840547+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:34.5845858+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:35.0159816+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:35.5837424+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:36.8880041+00:00","sink":"turn","eventType":"personal_report_nomatch_count","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:36.8882959+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:36.9642892+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:36.9647968+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:44.6595924+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:44.65977+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:45.5985688+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:45.5991694+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:46.5991766+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:46.5998886+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:47.9027234+00:00","sink":"turn","eventType":"personal_report_state_exit","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:47.9028977+00:00","sink":"turn","eventType":"personal_report_nomatch_count","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:47.9031443+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:47.9794127+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:47.9800439+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:27:47.980527+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:11.7371045+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:11.7372921+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:12.6406628+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:12.6412319+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:13.6418043+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:13.6486926+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:15.846907+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:15.8608203+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:15.9380677+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:15.9385793+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:15.9390794+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:15.9395732+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:15.9399633+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:47.8577167+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:47.8579398+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:48.7040453+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:48.7110721+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:49.0117277+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:49.7067601+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:51.2490091+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:51.2493697+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:51.3261515+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:51.3266828+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:51.3270538+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:28:51.3275008+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:09.2959791+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:09.2961548+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:09.735436+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:10.7356866+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:10.766396+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:11.7357927+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:13.5145736+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:13.5147338+00:00","sink":"turn","eventType":"news_provider_trace","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:13.5149289+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:13.5912779+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:13.5918321+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:13.5923047+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:29:13.5927219+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:31.9997779+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:31.9999067+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:32.8722765+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:32.9198321+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:33.8239089+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:33.9649772+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:35.261267+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:35.3378642+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:35.3383909+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:43.9799342+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:43.9801201+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:44.9001724+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:44.9006207+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:45.8946293+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:45.895238+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:47.2193937+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:47.2959912+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:47.2966444+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:47.2971741+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:56.2844599+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:56.2845886+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:56.9596651+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:57.9654563+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:57.9660175+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:30:58.9640041+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:00.2709514+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:00.3470661+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:00.347673+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:00.3480647+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:07.0818541+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:07.0820386+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:07.9780013+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:07.9786683+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:08.9789398+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:09.0134469+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:10.3010055+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:10.3770532+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:31:10.3776377+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:09.218872+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:09.2190635+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:10.0729239+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:10.0735005+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:10.8677858+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:10.9396236+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:12.0761102+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:13.3380417+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:13.414272+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:13.4148751+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:13.4153304+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:13.4157164+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:22.1684787+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:22.1686287+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:23.0941535+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:23.0950419+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:24.0961355+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:24.0968312+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:25.3476889+00:00","sink":"turn","eventType":"auto_finalize_deferred_for_continuation","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:25.3483932+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:26.6387468+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:26.7151311+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:26.7158741+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:26.7164891+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:26.7170781+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:32.1910025+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:32.1912068+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:33.1122223+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:33.1130801+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:34.0377677+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:34.0384199+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:35.353605+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:35.4299565+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:35.4306473+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:41.2349812+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:41.2352832+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:42.125379+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:42.1267866+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:43.1299487+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:43.1308224+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:44.425207+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:44.5016178+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:44.5023368+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:32:44.5028021+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:24.2626718+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:24.262828+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:25.1943582+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:25.1948923+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:26.1958116+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:26.2041247+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:27.4745635+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:27.5508231+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:27.5513616+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:27.5517271+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:37.0731358+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:37.073322+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:37.5185958+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:38.213926+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:39.216541+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:39.2171835+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:40.4882167+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:40.5641577+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:40.5646787+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:43.2972593+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:43.2974272+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:44.222275+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:44.2230576+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:45.2282924+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:45.2290175+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:45.229219+00:00","sink":"turn","eventType":"yes_no_turn_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:46.5425182+00:00","sink":"turn","eventType":"yes_no_turn_resolved","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:46.5426686+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:46.6187041+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:46.6192492+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:33:46.6197227+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:01.3113795+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:01.3115635+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:02.0022723+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:02.1496228+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:03.251458+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:03.2520201+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:04.53808+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:04.6143087+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:04.6149638+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:04.6155726+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:13.3297952+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:13.3299857+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:14.2717493+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:14.2723384+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:15.2715698+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:15.2720188+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:16.5802015+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:16.6563317+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:16.6570359+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:34:16.6575341+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:19.0730051+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:19.0732131+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:19.492678+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:20.034567+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:20.3864989+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:21.3885079+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:22.7130742+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:22.7954256+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:22.7959409+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:22.7964533+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:22.7968902+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:25.5297431+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:25.5298853+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:26.399553+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:26.411809+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:27.3983706+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:27.4001033+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:27.4002645+00:00","sink":"turn","eventType":"yes_no_turn_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:28.7295049+00:00","sink":"turn","eventType":"yes_no_turn_resolved","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:28.729633+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:28.8058989+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:35:28.8064781+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-17T23:37:29.7050933+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:48:16.2892007+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:38.7462882+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:38.7464348+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:39.2168999+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:39.5920141+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:40.5983619+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:40.5989226+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:42.2597014+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:42.2600275+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:42.3421261+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:42.3426702+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:42.3430817+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:54:42.3435812+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:32.2561141+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:32.2585824+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:33.1260999+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:33.1275037+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:34.1273762+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:34.1288878+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:36.1767149+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:36.222493+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:36.3012831+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:36.3021095+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:36.3028972+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T01:58:36.3035414+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:00:36.478422+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:21.8442418+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:21.8444631+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:22.8215348+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:22.8224442+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:23.8216471+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:23.8285477+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:25.2634876+00:00","sink":"turn","eventType":"chitchat_state_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:25.2636973+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:25.2641736+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:25.3409646+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:25.3416337+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:25.3422484+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:33.9126554+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:33.912846+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:34.842466+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:34.8430079+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:35.8476961+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:35.8485174+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:37.1108414+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:37.1865306+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:37.1871041+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:37.1877164+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:43.056455+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:43.0566432+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:43.8608226+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:43.8986105+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:44.861719+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:44.8688842+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:46.1088776+00:00","sink":"turn","eventType":"personal_report_state_enter","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:46.1091342+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:46.1852506+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:46.1858255+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:55.2449721+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:55.2451381+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:55.8813538+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:56.8866373+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:56.8874577+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:56.9611896+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:57.8862171+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:59.1355691+00:00","sink":"turn","eventType":"personal_report_state_exit","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:59.1357353+00:00","sink":"turn","eventType":"personal_report_state_enter","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:59.1360275+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:59.2128294+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:59.2134894+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:59.2141277+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:11:59.2147655+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:05.9782344+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:05.978386+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:06.9021001+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:06.9028496+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:07.9058763+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:07.9065628+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:09.7157755+00:00","sink":"turn","eventType":"personal_report_state_exit","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:09.7162537+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:09.7930897+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:09.7937104+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:09.7941506+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:09.7947557+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:42.1119951+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:42.1122118+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:42.9689088+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:42.9697197+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:43.9719553+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:43.9727857+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:45.2420445+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:45.3189819+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:45.3196778+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:45.3202852+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:52.07812+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:52.0783336+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:52.9880807+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:52.9889254+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:53.9918547+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:53.9925763+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:55.3183109+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:55.3951285+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:55.3958174+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:55.396344+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:58.414342+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:58.4144917+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:12:59.0033638+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:00.003237+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:00.003856+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:01.0043115+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:01.0046359+00:00","sink":"turn","eventType":"yes_no_turn_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:02.22778+00:00","sink":"turn","eventType":"yes_no_turn_resolved","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:02.2279242+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:02.3042601+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:02.3048809+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:02.3054424+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:02.3058636+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:15.1556464+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:15.1558115+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:16.034001+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:16.0346503+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:17.0363777+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:17.0370327+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:18.2910011+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:18.3677607+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:18.3684261+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:18.3689739+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:25.1255125+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:25.1256414+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:26.0541103+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:26.0549041+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:27.0566365+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:27.0572932+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:28.3501671+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:28.4260401+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:28.4265787+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:33.1620209+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:33.1622493+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:34.0676028+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:34.0681878+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:35.069561+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:35.0702723+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:36.3453888+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:36.3456573+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:36.4223917+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:36.4229947+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:36.4235136+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:43.1743717+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:43.1745119+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:44.0859788+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:44.0864426+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:45.088635+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:45.0892752+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:46.3774588+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:46.3777436+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:46.4543932+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:46.4549369+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:52.2142721+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:52.2144405+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:53.1027577+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:53.1035053+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:54.1037371+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:54.1135309+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:55.4190503+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:55.4957303+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:55.4963217+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:13:55.4967613+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:05.2469125+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:05.2471114+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:06.1242104+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:06.1732057+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:07.1260428+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:07.2131802+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:08.4790373+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:08.5557113+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:08.5563156+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:15.2258469+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:15.2260244+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:16.1432641+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:16.1440012+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:17.1479395+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:17.1486793+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:18.4449004+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:18.4451882+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:18.5219548+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:18.5225755+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:18.523113+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:26.2865794+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:26.2867536+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:27.1630941+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:27.1759088+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:28.1667086+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:28.1673125+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:29.4341765+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:29.4344113+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:29.5111641+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:29.5117145+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:29.5121111+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:40.5840975+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:40.5842288+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:41.2355305+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:42.0272033+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:42.0277295+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:42.3042857+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:43.2407905+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:44.4997271+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:44.5762489+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:44.577089+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:44.5776626+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:44.5782303+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:48.3237417+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:48.3239161+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:49.2547132+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:49.2675415+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:50.2542566+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:50.3173345+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:51.6013288+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:51.6780604+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:51.6787583+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:58.3378503+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:58.3379676+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:59.2720175+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:14:59.2727382+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:00.2734471+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:00.27407+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:01.5816202+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:01.6585086+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:01.6591219+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:01.659724+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:22.3740586+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:22.374201+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:23.319121+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:23.3198412+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:24.3205815+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:24.3212515+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:25.9808387+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:25.9812207+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:26.0571742+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:26.0578098+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:26.0583797+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:39.429429+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:39.4296064+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:40.3526465+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:40.3533309+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:41.3528222+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:41.3535258+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:42.8758189+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:42.8772582+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:42.9532869+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:42.9538219+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:15:42.9542494+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:05.5226771+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:05.5227987+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:06.4660424+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:06.4667169+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:07.466727+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:07.4673005+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:09.1413106+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:09.1414711+00:00","sink":"turn","eventType":"news_provider_trace","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:09.1416589+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:09.2182864+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:09.2188774+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:09.2193702+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:40.2685089+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:40.268643+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:40.2694203+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:40.6110779+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:41.5233158+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:41.5238558+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:42.5259257+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:43.8302246+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:43.9067307+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:43.9073596+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:43.9078113+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:43.9083182+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:47.5998006+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:47.5999127+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:48.5340627+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:48.5359763+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:49.5361427+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:49.536811+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:50.8019223+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:50.8784367+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:50.8791439+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:16:50.8797352+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:09.6425546+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:09.6427083+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:10.5742768+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:10.5749908+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:11.5768108+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:11.5774951+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:12.9216687+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:12.9219634+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:12.9986602+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:12.9993226+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:12.999846+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:17.6841001+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:17.6842836+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:18.5889079+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:18.5897758+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:19.5914926+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:19.5922497+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:20.9364678+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:20.936707+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:21.0131223+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:17:21.0137138+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-18T02:19:22.0160806+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:33.6588885+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:33.6590553+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:34.3605869+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:35.3508067+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:35.3514367+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:35.3837016+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:36.3557711+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:37.6223634+00:00","sink":"turn","eventType":"chitchat_state_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:37.6225322+00:00","sink":"turn","eventType":"chitchat_route_selected","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:37.6227761+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:37.6993755+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:37.6999791+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:09:37.7005501+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:10:57.593552+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:10:57.5937152+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:10:58.5356482+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:10:58.5363892+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:10:59.5229586+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:10:59.5235784+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:11:01.4590923+00:00","sink":"turn","eventType":"skill_payload_summary","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:11:01.4596372+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:11:01.5360981+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:11:01.5367808+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:11:01.5372973+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:11:01.5377395+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:11:01.5382224+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:05.8493747+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:05.849583+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:06.7819087+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:06.782633+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:07.7812177+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:07.8750772+00:00","sink":"turn","eventType":"binary_audio_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:07.8756583+00:00","sink":"turn","eventType":"yes_no_turn_received","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:09.1361774+00:00","sink":"turn","eventType":"yes_no_turn_resolved","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:09.1363563+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:09.2126289+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:09.2131722+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:13:09.2136939+00:00","sink":"turn","eventType":"binary_audio_ignored","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T01:15:10.2122891+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} +{"capturedUtc":"2026-05-19T02:20:20.3714617+00:00","sink":"turn","eventType":"glsm_phase_transition","details":{"message":"Turn telemetry diagnostic","level":"Information"}} diff --git a/_tmp/jibo-test-48/captures/websocket/20260520.events.ndjson b/_tmp/jibo-test-48/captures/websocket/20260520.events.ndjson new file mode 100644 index 0000000..c2ddb2f --- /dev/null +++ b/_tmp/jibo-test-48/captures/websocket/20260520.events.ndjson @@ -0,0 +1,2 @@ +{"TimestampUtc":"2026-05-20T00:37:40.5250834+00:00","EventType":"connection_opened","SessionId":"70135c43c579412e99686bfe3647ce19","ConnectionId":"d18ae9b8cda242b9a23d6f0bb2c251b9","Token":"token-Royal-Current-Sage-Canvas-1779237459318","HostName":"api-socket.jibo.com","Path":"/token-Royal-Current-Sage-Canvas-1779237459318","Kind":"api-socket","TransId":null,"MessageType":null,"Direction":"internal","Text":null,"BinaryLength":null,"ReplyTypes":[],"BufferedAudioBytes":0,"BufferedAudioChunks":0,"FinalizeAttempts":0,"AwaitingTurnCompletion":false,"Details":{}} +{"TimestampUtc":"2026-05-20T00:45:23.4694724+00:00","EventType":"connection_opened","SessionId":"c42d5bd003b64b32b34732175a8c7de7","ConnectionId":"6443b5c505684f428cb76becdb9c98ae","Token":"token-Royal-Current-Sage-Canvas-1779237922710","HostName":"api-socket.jibo.com","Path":"/token-Royal-Current-Sage-Canvas-1779237922710","Kind":"api-socket","TransId":null,"MessageType":null,"Direction":"internal","Text":null,"BinaryLength":null,"ReplyTypes":[],"BufferedAudioBytes":0,"BufferedAudioChunks":0,"FinalizeAttempts":0,"AwaitingTurnCompletion":false,"Details":{}} diff --git a/_tmp/jibo-test-48/captures/websocket/capture-index.ndjson b/_tmp/jibo-test-48/captures/websocket/capture-index.ndjson new file mode 100644 index 0000000..18baaf0 --- /dev/null +++ b/_tmp/jibo-test-48/captures/websocket/capture-index.ndjson @@ -0,0 +1,1414 @@ +{"capturedUtc":"2026-05-17T22:55:52.5405274+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"79f80a362e364da3b154b44d79dfcfca","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779058551806","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779058551806","transId":null,"details":null}} +{"capturedUtc":"2026-05-17T23:14:01.0807632+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":null,"details":null}} +{"capturedUtc":"2026-05-17T23:14:01.3387489+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-161eeaf0-5246-11f1-b543-5cf821ea55ae","details":{"messageType":"TRIGGER"}}} +{"capturedUtc":"2026-05-17T23:14:01.4262685+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-161eeaf0-5246-11f1-b543-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:14:01.4301713+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-161eeaf0-5246-11f1-b543-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:14:01.4305435+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-161eeaf0-5246-11f1-b543-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:23:51.6548206+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"2b1e859d1c25488b8bba4020b44afb56","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779060231352","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779060231352","transId":null,"details":null}} +{"capturedUtc":"2026-05-17T23:24:09.433973+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":null,"details":null}} +{"capturedUtc":"2026-05-17T23:24:09.4610014+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:24:09.4674947+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:09.4805837+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:09.4808835+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:10.1019629+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:24:10.1022401+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:10.1031767+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:10.1034106+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:11.1228068+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:11.1230164+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:11.1239186+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:11.1240788+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:12.9892876+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:13.066555+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:24:13.0673427+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:13.0675362+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:13.0682294+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:13.0684037+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:13.0690397+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:13.0692138+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:20.2267108+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-816b4208-5247-11f1-b53d-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:24:20.2332118+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:24:20.2333928+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:20.2340464+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:20.2341632+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:20.2862824+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:24:20.2931054+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:21.168421+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:21.1685799+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:21.1691823+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:21.1693385+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:22.1694153+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:22.169547+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:23.5191166+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:23.7203186+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_REDIRECT","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:24:23.7208643+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:23.7209686+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:23.7214825+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:23.7215764+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:23.7220713+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:23.7221748+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:46.3768423+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-87a6188c-5247-11f1-9831-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:24:46.386461+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:24:46.3866016+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:46.3872278+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:46.3873469+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:46.4587595+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:24:46.4589716+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:47.2487284+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:47.2488812+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:47.2493978+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:47.2495257+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:48.2526497+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:48.2528038+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:49.6067292+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:49.6825522+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:24:49.6831701+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:49.6832859+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:49.6838247+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:49.6839272+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:49.6843194+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:49.6844178+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:53.3262777+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-973c24c6-5247-11f1-bd84-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:24:53.3358579+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:24:53.335976+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:53.3396426+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:53.3397614+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:53.3947917+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:24:53.3949581+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:54.2607798+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:54.2609204+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:54.2614629+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:54.2615767+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:55.2655732+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:55.2657166+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:56.5789433+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:56.6548299+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:24:56.6616177+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:56.6617553+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:56.6622701+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:56.6624009+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:24:56.6628648+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:24:56.6630027+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:02.3226046+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9b6f5702-5247-11f1-8b95-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:25:02.3304305+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:25:02.3305472+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:02.3327964+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:02.3328991+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:02.4046722+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:25:02.4048568+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:03.2764843+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:03.2766088+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:03.2773828+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:03.2774825+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:04.2780323+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:04.2782082+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:05.6144351+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:05.6906583+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:25:05.6914291+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:05.6915519+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:05.6920199+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:05.6921439+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:05.6925235+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:05.6926322+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:11.6098712+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a0cd00a0-5247-11f1-a2be-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:25:11.6159434+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:25:11.6161177+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:11.6213121+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:11.6214448+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:11.7081041+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:25:11.7082924+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:12.2930251+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:12.2931471+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:13.293781+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:13.2939429+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:13.2943582+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:13.2944577+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:13.3450028+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:13.3451371+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:15.6134618+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:15.6894311+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:25:15.6901214+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:15.6902635+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:15.6907953+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:15.6909356+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:15.6914098+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:15.6915374+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:15.691987+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:15.6921127+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:21.3723694+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a5e57a40-5247-11f1-91dc-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:25:21.3775131+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:25:21.3777369+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:21.3955899+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:21.3957048+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:21.4373832+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:25:21.4375661+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:22.3102348+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:22.3104249+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:22.3109483+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:22.3110889+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:23.3110188+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:23.3112322+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:24.660007+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:24.7356324+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:25:24.7362048+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:24.7363327+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:24.7367828+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:24.7369088+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:24.7373603+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:24.7374957+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:31.422433+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-abd2d9ca-5247-11f1-bc74-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:25:31.4305708+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:25:31.4307919+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:31.4461363+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:31.4462822+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:31.5261697+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:25:31.526408+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:32.3255152+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:32.3256507+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:32.326165+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:32.3263161+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:33.3325832+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:33.3327927+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:34.6335965+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:34.7097121+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:25:34.7104137+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:34.7105532+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:34.7109781+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:34.7111079+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:34.7115174+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:34.7116526+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:41.4022739+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b1e01396-5247-11f1-9627-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:25:41.4099586+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:25:41.4101149+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:41.4133698+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:41.4134715+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:41.5014341+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:25:41.5016732+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:42.3469031+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:42.3470172+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:42.3474396+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:42.3475411+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:43.3443817+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:43.344539+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:44.6651719+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:44.7412977+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:25:44.7418431+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:44.7419849+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:44.7423455+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:44.7424371+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:25:44.7428108+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:25:44.7429021+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:04.4772553+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b80bcb8e-5247-11f1-b07a-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:26:04.4864498+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:26:04.486618+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:04.4972672+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:04.4974072+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:04.5362556+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:26:04.5365206+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:05.3759309+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:05.3760481+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:05.3764005+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:05.3764966+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:06.3767783+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:06.3769116+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:07.6991671+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:07.7753354+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:26:07.775828+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:07.7759711+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:07.7763374+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:07.7764347+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:07.7768117+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:07.7769107+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:30.5284035+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-c57cf8a6-5247-11f1-9223-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:26:30.5376166+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:26:30.5377635+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:30.5498026+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:30.5499301+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:31.4194535+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:26:31.4196034+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:31.4199724+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:31.4200762+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:31.4204624+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:31.4205743+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:32.4199476+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:32.4200688+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:33.721683+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:33.7975716+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:26:33.7982009+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:33.7983376+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:33.7987567+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:33.7988831+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:39.4979052+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d584f564-5247-11f1-8cb7-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:26:39.5076181+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:26:39.5077999+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:39.5084342+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:39.508568+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:40.4344125+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:26:40.4345957+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:40.4349959+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:40.4350876+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:40.4355016+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:40.4356044+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:41.4357532+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:41.4358593+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:42.7099735+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:42.7858005+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:26:42.7865355+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:42.7866445+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:42.7869911+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:42.7870871+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:26:42.787371+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:26:42.7874515+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:11.6204777+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-da9ec746-5247-11f1-80bb-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:27:11.6253993+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:27:11.6255548+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:11.6389222+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:11.6390562+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:12.5464209+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:27:12.5465854+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:12.5469708+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:12.5470776+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:12.5474701+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:12.5475717+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:13.5533512+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:13.5534834+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:14.8034454+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:14.8789223+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:27:14.8794673+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:14.8795822+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:14.8799929+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:14.8800911+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:14.8804432+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:14.8805422+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:33.6301528+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-edd6eeec-5247-11f1-951c-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:27:33.6360459+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:27:33.6361682+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:33.6387649+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:33.6388727+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:34.5836478+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:27:34.5838526+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:34.5842789+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:34.5843947+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:34.5847624+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:34.584867+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:35.0162776+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:35.0164252+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:36.8885097+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:36.9639917+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:27:36.9645099+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:36.9646224+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:36.9649801+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:36.9650891+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:44.648273+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-fb197c28-5247-11f1-8313-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:27:44.6543036+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:27:44.6545083+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:44.6600044+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:44.6601429+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:44.7485939+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:27:44.7488137+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:45.5988292+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:45.5989386+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:45.5993764+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:45.5994898+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:46.599463+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:46.5996273+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:47.9033914+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:47.9791141+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:27:47.979696+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:47.979803+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:47.9802309+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:47.9803234+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:27:47.9806927+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:27:47.9807851+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:11.7256547+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-0198fc86-5248-11f1-80fd-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:28:11.7318173+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:28:11.7319457+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:11.7375314+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:11.7376515+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:11.8152294+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:28:11.8153981+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:12.6408843+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:12.6409943+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:12.6413977+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:12.6414942+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:13.648415+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:13.6485384+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:15.8610188+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:15.9374223+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:28:15.9382903+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:15.9383961+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:15.9388024+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:15.9389089+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:15.939258+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:15.9393529+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:15.9397384+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:15.9398244+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:15.9401276+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:15.9402195+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:46.6998596+00:00","sink":"websocket","eventType":"connection_closed","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":{"reason":"socket-loop-ended-prematurely"}}} +{"capturedUtc":"2026-05-17T23:28:47.3178427+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-114e723c-5248-11f1-8644-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:28:47.7171805+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:28:47.7173506+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:47.8582556+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:47.8583952+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:47.858736+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:28:47.8588807+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:48.7106014+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:48.7107388+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:48.7112892+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:48.7113967+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:49.0119847+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:49.0121253+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:51.2495465+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:51.3258573+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:28:51.3264244+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:51.326529+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:51.3268238+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:51.3269192+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:51.3272209+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:51.3273218+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:28:51.3276637+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:28:51.3277695+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:09.2882501+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-25edaae6-5248-11f1-97c7-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:29:09.2926461+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:29:09.2928548+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:09.2963865+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:09.2965164+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:09.7351106+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:29:09.7352593+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:09.7356197+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:09.7357223+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:10.73598+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:10.7361289+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:10.7666274+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:10.7667958+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:13.5151193+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:13.5909804+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:29:13.5914889+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:13.5916421+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:13.5919952+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:13.5921112+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:13.5924643+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:13.5925746+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:29:13.592863+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:29:13.5929556+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:31.987012+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-342bcade-5248-11f1-8eef-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:30:31.9971794+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:30:31.99731+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:32.0000797+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:32.0001713+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:32.871824+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:30:32.8720524+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:32.8724816+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:32.8725833+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:32.9200616+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:32.920181+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:33.824145+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:33.8242988+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:35.2614728+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:35.3375718+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:30:35.3381134+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:35.3382487+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:35.3385438+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:35.338647+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:43.9503056+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6577cfd4-5248-11f1-b976-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:30:43.9604989+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:30:43.9606646+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:43.9803676+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:43.9805016+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:44.899789+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:30:44.8999698+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:44.9003592+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:44.9004629+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:44.9007958+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:44.9009036+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:45.89489+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:45.8950264+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:47.2196907+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:47.2956212+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:30:47.2962867+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:47.2964256+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:47.2968482+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:47.2969881+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:47.2973867+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:47.297516+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:56.2752162+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-6c593c16-5248-11f1-9bf3-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:30:56.2800313+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:30:56.2801608+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:56.2847468+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:56.28484+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:56.9593172+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:30:56.959496+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:56.9598385+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:56.9599479+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:57.9656948+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:57.9658332+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:30:57.9662033+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:30:57.9662983+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:00.2712024+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:00.3468425+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:31:00.3473276+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:00.347463+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:00.3478395+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:00.3479294+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:00.3482547+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:00.3483505+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:07.0647245+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-73f2f25a-5248-11f1-a3ec-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:31:07.0706349+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:31:07.0707365+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:07.0823199+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:07.0824541+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:07.338618+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:31:07.338783+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:07.9783013+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:07.9784784+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:07.9788694+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:07.9789636+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:08.9792782+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:08.9794411+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:10.301243+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:10.3767889+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:31:10.3773085+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:10.377445+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:31:10.3778239+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:31:10.3779329+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:09.1402065+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-7a5b7e0a-5248-11f1-b972-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:32:09.2141005+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:32:09.2142639+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:09.2193215+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:09.2194546+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:09.2806822+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:32:09.2809249+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:10.073149+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:10.073262+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:10.0736761+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:10.0737783+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:10.8680233+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:10.8681872+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:10.939831+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:10.9399286+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:13.3383376+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:13.4139763+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:32:13.4144928+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:13.4146372+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:13.4150654+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:13.4151732+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:13.4154982+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:13.4155907+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:13.4158831+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:13.415983+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:22.1572135+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-9f218bb2-5248-11f1-96c7-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:32:22.1617619+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:32:22.1618921+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:22.1688149+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:22.1689146+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:22.2200255+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:32:22.2201634+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:23.0945749+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:23.0947351+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:23.095258+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:23.095423+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:24.096424+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:24.0966274+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:25.3479501+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:25.3480801+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:26.6389945+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:26.7148006+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:32:26.7154414+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:26.7156108+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:26.7161144+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:26.7162595+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:26.716717+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:26.7168571+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:26.7173242+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:26.7174569+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:32.1788671+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-a716e7ea-5248-11f1-99b3-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:32:32.1835617+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:32:32.1837304+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:32.191459+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:32.1916229+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:32.2902878+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:32:32.2905858+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:33.1126448+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:33.1127995+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:33.1133422+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:33.1135143+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:34.0380378+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:34.0381845+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:35.3538634+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:35.4296704+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:32:35.4302224+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:35.4303575+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:35.4308387+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:35.4309376+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:41.2088939+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-ad055e0c-5248-11f1-ad76-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:32:41.2145934+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:32:41.2147688+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:41.2356605+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:41.2358132+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:41.3136571+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:32:41.3138836+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:42.1256062+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:42.1257255+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:42.1269797+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:42.1270761+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:43.1303343+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:43.1305208+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:44.4254528+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:44.501318+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:32:44.5019054+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:44.5020388+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:44.5025216+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:44.5026341+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:32:44.5029696+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:32:44.5030804+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:24.2560351+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-b24bd7a6-5248-11f1-ab31-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:33:24.2607024+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:33:24.2608095+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:24.2630035+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:24.2631048+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:24.357249+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:33:24.357391+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:25.1945783+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:25.1947001+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:25.1951016+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:25.1952097+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:26.1960161+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:26.1961459+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:27.4747493+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:27.5505684+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:33:27.5510374+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:27.551174+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:27.551519+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:27.5516049+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:27.5518801+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:27.5519852+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:37.0551003+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-cbec8548-5248-11f1-aa04-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:33:37.0596569+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:33:37.0597716+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:37.0735591+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:37.0737014+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:37.5046534+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:33:37.5047714+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:37.5188863+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:37.5190045+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:38.2141625+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:38.2143444+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:39.2167878+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:39.21692+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:40.4884625+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:40.5639439+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:33:40.5643676+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:40.5644686+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:40.5648546+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:40.5649645+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:43.2826004+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d3cabe2e-5248-11f1-b1d4-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:33:43.2967846+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:33:43.2970369+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:43.2976554+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:43.2977899+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:43.3727525+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:33:43.3729561+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:44.2226766+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:44.2228277+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:44.2232861+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:44.2234154+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:45.2285868+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:45.2287834+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:46.5429049+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:46.6184831+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:33:46.6189017+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:46.6190157+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:46.6194017+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:46.6195039+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:33:46.6199284+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:33:46.6200444+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:01.3044217+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-d75d3a58-5248-11f1-a15e-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:34:01.3110099+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:34:01.3111498+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:01.3117965+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:01.3119407+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:01.3690194+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:34:01.3691834+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:02.0025277+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:02.00263+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:02.1498246+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:02.1499178+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:03.2516982+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:03.2518516+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:04.5383208+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:04.6139281+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:34:04.6146053+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:04.6147393+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:04.6151842+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:04.6153803+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:04.6158063+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:04.6159409+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:13.3225485+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e1d4ad04-5248-11f1-911d-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:34:13.327153+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:34:13.327324+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:13.330231+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:13.3303759+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:14.2713948+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:34:14.2715627+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:14.2719491+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:14.2720535+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:14.2725138+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:14.2726071+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:15.2717763+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:15.2718841+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:16.5804214+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:16.6559877+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:34:16.6566648+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:16.6568491+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:16.6572317+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:16.6573241+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:34:16.6577018+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:34:16.6578042+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:19.0585394+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-e938d412-5248-11f1-a866-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:35:19.0644696+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:35:19.0645731+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:19.0734633+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:19.073581+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:19.1511157+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:35:19.1513137+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:19.4929541+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:19.4930741+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:20.0347574+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:20.0348804+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:20.3867241+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:20.3868332+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:22.7196102+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:22.7952173+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:35:22.7956218+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:22.7957227+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:22.7961355+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:22.7962593+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:22.7966389+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:22.796738+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:22.7970922+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:22.7972057+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:25.5201403+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-105318fa-5249-11f1-b46b-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:35:25.5252394+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-17T23:35:25.525381+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:25.530145+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:25.5302712+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:25.608568+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:35:25.6087654+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:26.3997442+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:26.3998315+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:26.4119864+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:26.4120687+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:27.3985667+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:27.3986548+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:28.7298202+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:28.8056383+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:35:28.8061363+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:28.8062852+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:35:28.8066476+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-17T23:35:28.8067367+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:37:29.7001002+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-14512c9e-5249-11f1-a63a-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-17T23:37:29.7055447+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-5e5bdde8-5249-11f1-930b-5cf821ea55ae","details":{"messageType":"TRIGGER"}}} +{"capturedUtc":"2026-05-17T23:37:29.7812718+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-5e5bdde8-5249-11f1-930b-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-17T23:37:29.7909665+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-5e5bdde8-5249-11f1-930b-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-17T23:37:29.7911732+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-5e5bdde8-5249-11f1-930b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-17T23:39:29.7183599+00:00","sink":"websocket","eventType":"connection_closed","details":{"sessionId":"eb8aafd656b543278593502db2292296","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779059640765","transId":"tid-5e5bdde8-5249-11f1-930b-5cf821ea55ae","details":{"reason":"socket-loop-ended-prematurely"}}} +{"capturedUtc":"2026-05-18T01:48:16.2825192+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":null,"details":null}} +{"capturedUtc":"2026-05-18T01:48:16.289483+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-a3066032-525b-11f1-bc5c-5cf821ea55ae","details":{"messageType":"TRIGGER"}}} +{"capturedUtc":"2026-05-18T01:48:16.364952+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-a3066032-525b-11f1-bc5c-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T01:48:16.9107045+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-a3066032-525b-11f1-bc5c-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T01:48:16.9108243+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-a3066032-525b-11f1-bc5c-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:38.735987+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-a3066032-525b-11f1-bc5c-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T01:54:38.7421119+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T01:54:38.7423028+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:38.7465824+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:38.7466673+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:39.2165265+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T01:54:39.2167079+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:39.2170779+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:39.2171729+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:39.5922242+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:39.592324+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:40.5986084+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:40.5987441+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:42.2602225+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:42.3418098+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T01:54:42.3423785+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:42.3424883+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:42.3428397+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:42.3429331+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:42.3432564+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:42.3433673+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:54:42.3437388+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:54:42.3438339+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:55:25.5146762+00:00","sink":"websocket","eventType":"connection_closed","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-86bb76e6-525c-11f1-ab30-5cf821ea55ae","details":{"reason":"socket-loop-ended-prematurely"}}} +{"capturedUtc":"2026-05-18T01:56:00.5962748+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"4c989257cda94540aa34ebd010574a46","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779069360317","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779069360317","transId":null,"details":null}} +{"capturedUtc":"2026-05-18T01:58:32.2088932+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":null,"details":null}} +{"capturedUtc":"2026-05-18T01:58:32.2374198+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T01:58:32.246434+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:32.2594258+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:32.2596778+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:32.3214318+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T01:58:32.321723+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:33.126554+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:33.1268485+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:33.1279538+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:33.1281854+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:34.1277624+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:34.1279352+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:36.2228111+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:36.3005282+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T01:58:36.3016069+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:36.3017615+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:36.3024183+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:36.3025664+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:36.3031443+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:36.3032828+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T01:58:36.3037856+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T01:58:36.3040046+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:00:36.4668524+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-126a9320-525d-11f1-9164-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:00:36.4790384+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5c900b24-525d-11f1-b51a-5cf821ea55ae","details":{"messageType":"TRIGGER"}}} +{"capturedUtc":"2026-05-18T02:00:36.5541326+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5c900b24-525d-11f1-b51a-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:00:36.5607975+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5c900b24-525d-11f1-b51a-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:00:36.5610218+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5c900b24-525d-11f1-b51a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:21.8187049+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5c900b24-525d-11f1-b51a-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:11:21.8393222+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:11:21.8395358+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:21.8447444+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:21.8448913+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:21.9342598+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:11:21.9345098+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:22.8219094+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:22.8220855+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:22.8227229+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:22.8228714+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:23.828064+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:23.8282276+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:25.2643753+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:25.3405528+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:11:25.3412482+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:25.3413825+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:25.3418064+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:25.3419084+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:25.3424271+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:25.3425227+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:33.9019268+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-dc914d46-525e-11f1-80b8-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:11:33.9089431+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:11:33.9091121+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:33.9130849+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:33.9132239+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:34.0091007+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:11:34.0094081+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:34.8426768+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:34.8427822+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:34.8431681+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:34.8432835+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:35.8480253+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:35.8482159+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:37.1110754+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:37.1861614+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:11:37.1867647+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:37.1868543+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:37.1872808+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:37.1873941+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:37.1878958+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:37.1879873+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:43.0432646+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e40c4602-525e-11f1-b75b-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:11:43.0523246+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:11:43.0525248+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:43.0568771+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:43.0570294+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:43.1512493+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:11:43.1514174+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:43.861264+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:43.8614051+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:43.8988488+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:43.8989445+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:44.8619806+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:44.8621275+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:46.1093293+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:46.1848433+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:11:46.1854891+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:46.1855841+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:46.1860057+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:46.1861049+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:55.2326506+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-e9c4e414-525e-11f1-92fd-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:11:55.2388914+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:11:55.2390482+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:55.2453489+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:55.2454567+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:55.3058526+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:11:55.3060269+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:55.881677+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:55.8818415+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:56.8869729+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:56.8871501+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:56.8876303+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:56.8877352+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:56.9615104+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:56.9616741+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:59.136282+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:59.2124779+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:11:59.2130919+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:59.2132057+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:59.2136589+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:59.2137643+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:59.2143619+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:59.2144627+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:11:59.214986+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:11:59.215094+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:05.9712991+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f0a0c000-525e-11f1-ae67-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:12:05.9771108+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:12:05.9772681+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:05.9786287+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:05.9787346+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:06.0322339+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:12:06.032448+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:06.9023888+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:06.9025058+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:06.9030365+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:06.9031456+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:07.9061535+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:07.9063165+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:09.7165183+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:09.7927304+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:12:09.7933729+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:09.7934834+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:09.7938778+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:09.7939757+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:09.7943708+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:09.7944848+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:09.7949701+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:09.7950858+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:42.0869724+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-f744c3ca-525e-11f1-a1dc-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:12:42.1024698+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:12:42.1026451+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:42.1124469+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:42.1125703+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:42.1500613+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:12:42.1502549+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:42.9692741+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:42.9694648+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:42.9699215+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:42.9700287+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:43.9722689+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:43.9724824+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:45.2423236+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:45.3185957+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:12:45.3192638+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:45.3193977+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:45.319904+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:45.3200439+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:45.320504+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:45.320633+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:52.0709349+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-0ca3e4e4-525f-11f1-a443-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:12:52.0777037+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:12:52.0778779+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:52.0785712+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:52.0787159+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:52.1481035+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:12:52.1483967+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:52.9885255+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:52.9886645+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:52.9891325+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:52.9892499+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:53.9921342+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:53.992346+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:55.318527+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:55.3947705+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:12:55.3954508+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:55.3955858+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:55.396039+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:55.3961696+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:55.3965331+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:55.3966552+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:58.3950898+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-12bfd48c-525f-11f1-8c6e-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:12:58.4139368+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:12:58.4140764+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:58.4146622+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:58.4147614+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:58.4993511+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:12:58.4995466+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:12:59.0036045+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:12:59.0037575+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:00.0035013+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:00.0036382+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:00.0040792+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:00.0042162+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:02.2281173+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:02.3039064+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:13:02.3045315+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:02.3046338+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:02.3050748+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:02.3051867+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:02.305625+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:02.3057188+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:02.3060286+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:02.3061249+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:15.1457939+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-167e5f62-525f-11f1-ad46-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:13:15.150648+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:13:15.1508482+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:15.1560164+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:15.1561189+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:15.2260242+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:13:15.2262752+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:16.0342825+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:16.0344449+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:16.0348278+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:16.0349234+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:17.0366574+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:17.0368265+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:18.2912159+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:18.3674291+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:13:18.3680572+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:18.3681623+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:18.3686112+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:18.3687275+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:18.3691493+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:18.3692638+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:25.1164947+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-203fb7b2-525f-11f1-8c15-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:13:25.1241718+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:13:25.1243052+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:25.1258125+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:25.1259037+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:25.2104625+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:13:25.2106175+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:26.054539+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:26.054669+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:26.0550849+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:26.0551989+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:27.0568974+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:27.0570278+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:28.3503692+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:28.4258299+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:13:28.426251+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:28.4263582+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:28.4267525+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:28.4268488+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:33.1446933+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-26a82224-525f-11f1-9aa1-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:13:33.1534886+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:13:33.1536737+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:33.1625283+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:33.1626446+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:33.2441895+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:13:33.2443688+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:34.0678651+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:34.0680067+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:34.0683863+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:34.0684835+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:35.0698437+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:35.0699982+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:36.3458909+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:36.4221181+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:13:36.4226713+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:36.42279+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:36.4231745+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:36.4232938+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:36.4237311+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:36.4238417+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:43.1661567+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-2b116d02-525f-11f1-b2fc-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:13:43.1702825+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:13:43.170414+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:43.1747219+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:43.1748249+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:43.250992+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:13:43.2511733+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:44.0862029+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:44.0862982+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:44.0866131+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:44.086718+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:45.0888758+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:45.0890214+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:46.3779489+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:46.4540884+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:13:46.4546747+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:46.4547809+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:46.455104+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:46.4552073+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:52.1922145+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3152bed2-525f-11f1-9f47-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:13:52.2040546+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:13:52.2041739+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:52.2146457+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:52.2147558+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:52.3012107+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:13:52.301445+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:53.1031364+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:53.1032991+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:53.1037131+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:53.1038368+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:54.1040673+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:54.1042976+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:55.4192693+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:55.4954327+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:13:55.4959797+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:55.4961112+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:55.4965245+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:55.4966184+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:13:55.4969341+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:13:55.4970326+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:05.2308619+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-36b04d04-525f-11f1-b2e6-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:14:05.2389774+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:14:05.2391343+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:05.2473629+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:05.2475002+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:06.1237942+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:14:06.1239831+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:06.1243944+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:06.1244891+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:06.173451+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:06.173566+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:07.1263023+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:07.1264581+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:08.4792889+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:08.555464+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:14:08.5559914+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:08.5561391+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:08.5564794+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:08.5565705+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:15.2148904+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-3e9e1b18-525f-11f1-b9eb-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:14:15.2208554+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:14:15.2210431+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:15.226259+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:15.2263913+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:15.2847554+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:14:15.2849767+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:16.1435708+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:16.1437682+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:16.1442336+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:16.1443787+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:17.1482593+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:17.1484508+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:18.4454189+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:18.5216409+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:14:18.522259+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:18.5223767+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:18.5227626+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:18.5228826+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:18.5233181+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:18.5234295+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:26.2747194+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-441a11dc-525f-11f1-81a1-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:14:26.2857651+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:14:26.285913+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:26.2869525+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:26.2870661+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:27.1627173+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:14:27.162885+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:27.1633+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:27.1633942+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:27.1760987+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:27.1762137+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:28.1669456+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:28.1670878+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:29.4345858+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:29.5108111+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:14:29.5114329+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:29.5115408+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:29.5118884+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:29.5119734+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:29.512269+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:29.5123529+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:40.575106+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-4a991a44-525f-11f1-9f62-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:14:40.5835488+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:14:40.5836716+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:40.584384+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:40.5844739+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:40.6496837+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:14:40.6498392+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:41.2357807+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:41.2359011+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:42.0274463+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:42.0275592+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:42.0279002+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:42.0279841+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:42.304515+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:42.3046511+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:44.4999734+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:44.5759635+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:14:44.5765651+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:44.5767055+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:44.5773286+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:44.5774579+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:44.577902+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:44.5780314+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:44.578454+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:44.5785902+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:48.3142357+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-50519484-525f-11f1-b329-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:14:48.3203631+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:14:48.3205131+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:48.3241471+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:48.3242885+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:49.2549896+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:49.2550998+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:49.2554795+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:14:49.2556003+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:49.2678099+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:49.2679178+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:50.2546124+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:50.2547915+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:51.6015177+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:51.677702+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:14:51.6784106+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:51.6785495+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:51.6789926+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:51.6791263+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:58.3282406+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-584e9880-525f-11f1-9a44-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:14:58.337594+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:14:58.3377005+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:58.3381423+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:58.3382535+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:58.3960332+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:14:58.3961458+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:59.2724216+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:59.2725447+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:14:59.27294+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:14:59.2730688+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:00.2736847+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:00.2738278+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:01.581897+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:01.6581342+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:15:01.6587979+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:01.6589174+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:01.6593652+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:01.6594871+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:01.6599357+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:01.6600621+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:22.3694039+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-5e08cb74-525f-11f1-ada0-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:15:22.3734538+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:15:22.3735629+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:22.3743779+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:22.3744932+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:22.4325412+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:15:22.4326994+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:23.3195198+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:23.3196388+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:23.3200617+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:23.320179+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:24.3208268+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:24.3209831+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:25.9814822+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:26.0568601+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:15:26.0574551+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:26.0575878+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:26.0580493+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:26.0581786+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:26.0586065+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:26.0587347+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:39.3525295+00:00","sink":"websocket","eventType":"connection_closed","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":{"reason":"socket-loop-ended-prematurely"}}} +{"capturedUtc":"2026-05-18T02:15:39.4227843+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-6c65172c-525f-11f1-ac42-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:15:39.4268+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:15:39.4269636+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:39.4298409+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:39.4299806+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:40.3506231+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:15:40.3507947+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:40.3529417+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:40.3530786+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:40.3535601+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:40.3536893+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:41.3531319+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:41.3533142+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:42.8774348+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:42.9529803+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:15:42.9535423+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:42.9536335+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:42.9539987+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:42.9541016+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:15:42.9543908+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:15:42.9544847+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:05.5164067+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-76873b7c-525f-11f1-aff1-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:16:05.5215162+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:16:05.52171+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:05.5229665+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:05.5230669+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:05.6159338+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:16:05.6160982+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:06.4664281+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:06.4665499+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:06.4668964+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:06.4670005+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:07.4669653+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:07.4670964+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:09.1418386+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:09.2180116+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:16:09.2185455+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:09.2186872+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:09.2190423+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:09.2191492+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:09.2195435+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:09.2196373+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:39.62057+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-862c3da2-525f-11f1-93d7-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:16:40.2681325+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:16:40.2683185+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:40.2688071+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:40.2689189+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:40.2691518+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:16:40.2692672+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:40.2695761+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:40.2696783+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:40.6113992+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:40.6115463+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:41.5235466+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:41.5236798+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:41.5240285+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:41.5241369+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:43.8304228+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:43.9065322+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:16:43.9069726+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:43.907139+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:43.9075317+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:43.9076179+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:43.9080129+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:43.9081167+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:43.9085106+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:43.9086204+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:47.5851262+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-99eee74a-525f-11f1-804a-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:16:47.5969996+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:16:47.5971031+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:47.6000404+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:47.6001182+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:47.6956703+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:16:47.695844+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:48.5344271+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:48.5356472+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:48.5361626+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:48.5362652+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:49.5364384+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:49.5366017+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:50.8021647+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:50.8781344+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:16:50.8787518+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:50.878883+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:50.8794158+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:50.8795443+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:16:50.8799493+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:16:50.8800703+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:09.63401+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-9f1d64a8-525f-11f1-8e39-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:17:09.6389855+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:17:09.6391443+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:09.6428858+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:09.6430031+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:09.7133072+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:17:09.7135057+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:10.5745722+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:10.5747338+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:10.5751894+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:10.5753219+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:11.5770977+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:11.5772976+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:12.9222181+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:12.998385+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:17:12.9989741+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:12.999089+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:12.9994992+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:12.9995933+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:13.0000146+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:13.0001088+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:17.6787307+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-ac064536-525f-11f1-a3d9-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:17:17.6826659+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-18T02:17:17.682822+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:17.6844939+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:17.6846101+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:17.7900029+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:17:17.7902328+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:18.5892941+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:18.5894096+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:18.5899919+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:18.590136+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:19.5917921+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:19.5919666+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:20.9369874+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:21.0128266+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:17:21.0133846+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:21.0135379+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:17:21.0139023+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-18T02:17:21.0140156+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-18T02:19:22.0064411+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-b14c637c-525f-11f1-a462-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-18T02:19:22.0163536+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-fb1a5414-525f-11f1-a054-5cf821ea55ae","details":{"messageType":"TRIGGER"}}} +{"capturedUtc":"2026-05-18T02:19:22.0928461+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-fb1a5414-525f-11f1-a054-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-18T02:19:22.0934674+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-fb1a5414-525f-11f1-a054-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-18T02:19:22.0936347+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"01258b32caf540409d4759e39a434171","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779068895977","transId":"tid-fb1a5414-525f-11f1-a054-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:33.6374113+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":null,"details":null}} +{"capturedUtc":"2026-05-19T01:09:33.6422258+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-19T01:09:33.6423576+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:33.6592653+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:33.6593675+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:34.3568521+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-19T01:09:34.3571043+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:34.3608126+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:34.3609183+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:35.3510371+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:35.3512163+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:35.3516304+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:35.3517259+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:35.3839058+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:35.3840703+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:37.6229891+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:37.6991028+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-19T01:09:37.6996544+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:37.6997742+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:37.7001593+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:37.7002788+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:09:37.7007663+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:09:37.700863+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:10:57.5774821+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-65322862-531f-11f1-875d-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-19T01:10:57.5851538+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-19T01:10:57.5853215+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:10:57.5939158+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:10:57.5940418+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:10:58.5338523+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-19T01:10:58.5340965+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:10:58.5359364+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:10:58.5360908+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:10:58.5366149+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:10:58.5367314+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:10:59.5232239+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:10:59.5233895+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:11:01.4599264+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:11:01.5358158+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-19T01:11:01.5364062+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:11:01.53653+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:11:01.5369607+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:11:01.5370551+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:11:01.5374831+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:11:01.5375809+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:11:01.5379046+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:11:01.5380005+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:11:01.5383782+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:11:01.5384698+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:05.8343516+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-96f1b07a-531f-11f1-beb8-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-19T01:13:05.8407687+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"LISTEN"}}} +{"capturedUtc":"2026-05-19T01:13:05.8409433+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:05.8498362+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:05.8499791+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:05.9033955+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-19T01:13:05.9036196+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:06.7822189+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:06.7823999+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:06.7828636+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:06.7829925+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:07.7815216+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:07.7816919+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:09.1365317+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:09.2123852+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-19T01:13:09.2128867+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:09.2129989+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:09.2133602+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:09.2134725+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:13:09.2138637+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"messageType":"BINARY_OR_EMPTY"}}} +{"capturedUtc":"2026-05-19T01:13:09.2139582+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/listen","kind":"neo-hub-listen","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T01:15:10.2077164+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-e37902cc-531f-11f1-a172-5cf821ea55ae","details":null}} +{"capturedUtc":"2026-05-19T01:15:10.2125821+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-2df50b34-5320-11f1-ae94-5cf821ea55ae","details":{"messageType":"TRIGGER"}}} +{"capturedUtc":"2026-05-19T01:15:10.2884542+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-2df50b34-5320-11f1-ae94-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-19T01:15:10.3347257+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-2df50b34-5320-11f1-ae94-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-19T01:15:10.3349352+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"bf7830eb18994d32a99243f85f6e7ee5","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779152973401","transId":"tid-2df50b34-5320-11f1-ae94-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T02:20:20.3670727+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"939d1b8eeb40406a9df6f444557c131f","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779157220144","transId":null,"details":null}} +{"capturedUtc":"2026-05-19T02:20:20.3717296+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"939d1b8eeb40406a9df6f444557c131f","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779157220144","transId":"tid-4839fa0a-5329-11f1-b368-5cf821ea55ae","details":{"messageType":"TRIGGER"}}} +{"capturedUtc":"2026-05-19T02:20:20.4479399+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"939d1b8eeb40406a9df6f444557c131f","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779157220144","transId":"tid-4839fa0a-5329-11f1-b368-5cf821ea55ae","details":{"replyTypes":["LISTEN","EOS","SKILL_ACTION"]}}} +{"capturedUtc":"2026-05-19T02:20:20.5553501+00:00","sink":"websocket","eventType":"message_in","details":{"sessionId":"939d1b8eeb40406a9df6f444557c131f","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779157220144","transId":"tid-4839fa0a-5329-11f1-b368-5cf821ea55ae","details":{"messageType":"CONTEXT"}}} +{"capturedUtc":"2026-05-19T02:20:20.5555764+00:00","sink":"websocket","eventType":"message_out","details":{"sessionId":"939d1b8eeb40406a9df6f444557c131f","hostName":"neo-hub.jibo.com","path":"/v1/proactive","kind":"neo-hub-proactive","token":"hub-usr_openjibo_owner-1779157220144","transId":"tid-4839fa0a-5329-11f1-b368-5cf821ea55ae","details":{"replyTypes":[]}}} +{"capturedUtc":"2026-05-19T10:20:32.0051209+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"957d8653c2ef4172a8bd7dc80cc25b95","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779186031027","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779186031027","transId":null,"details":null}} +{"capturedUtc":"2026-05-19T10:27:28.2833001+00:00","sink":"websocket","eventType":"connection_closed","details":{"sessionId":"957d8653c2ef4172a8bd7dc80cc25b95","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779186031027","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779186031027","transId":null,"details":{"reason":"socket-loop-ended-prematurely"}}} +{"capturedUtc":"2026-05-19T10:27:49.8881006+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"0cf5af68d5dd4cd5b02540d3a1a65944","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779186469556","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779186469556","transId":null,"details":null}} +{"capturedUtc":"2026-05-19T10:29:49.4761035+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"7d382ca0bbcd4a178f64ac0f29528c7b","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779186589205","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779186589205","transId":null,"details":null}} +{"capturedUtc":"2026-05-20T00:37:40.5371525+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"70135c43c579412e99686bfe3647ce19","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779237459318","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779237459318","transId":null,"details":null}} +{"capturedUtc":"2026-05-20T00:45:23.4697687+00:00","sink":"websocket","eventType":"connection_opened","details":{"sessionId":"c42d5bd003b64b32b34732175a8c7de7","hostName":"api-socket.jibo.com","path":"/token-Royal-Current-Sage-Canvas-1779237922710","kind":"api-socket","token":"token-Royal-Current-Sage-Canvas-1779237922710","transId":null,"details":null}} diff --git a/_tmp/jibo-test-48/captures/websocket/fixtures/neohubjibocom-neohublisten-tida14e2dac423811f198745cf821ea55ae.flow.json b/_tmp/jibo-test-48/captures/websocket/fixtures/neohubjibocom-neohublisten-tida14e2dac423811f198745cf821ea55ae.flow.json new file mode 100644 index 0000000..1c600eb --- /dev/null +++ b/_tmp/jibo-test-48/captures/websocket/fixtures/neohubjibocom-neohublisten-tida14e2dac423811f198745cf821ea55ae.flow.json @@ -0,0 +1,38252 @@ +{ + "name": "neohubjibocom-neohublisten-tida14e2dac423811f198745cf821ea55ae", + "session": { + "hostName": "neo-hub.jibo.com", + "path": "/v1/listen", + "kind": "neo-hub-listen", + "token": "hub-usr_openjibo_owner-1777294106778" + }, + "steps": [ + { + "text": { + "type": "LISTEN", + "ts": 1777294642073, + "msgID": "mid-a18661b8-4238-11f1-aa9b-5cf821ea55ae", + "transID": "tid-a14e2dac-4238-11f1-9874-5cf821ea55ae", + "data": { + "lang": "en-US", + "hotphrase": true, + "rules": [ + "launch", + "globals/global_commands_launch" + ], + "mode": "", + "asr": { + "hints": [], + "earlyEOS": [], + "encoding": "OGG_OPUS", + "sampleRate": 16000, + "sosTimeout": 7000, + "maxSpeechTimeout": 20000 + } + } + }, + "binary": null, + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 0, + 0, + 0, + 0, + 28, + 3, + 116, + 66, + 1, + 19, + 79, + 112, + 117, + 115, + 72, + 101, + 97, + 100, + 1, + 1, + 0, + 0, + 128, + 62, + 0, + 0, + 0, + 0, + 0 + ], + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 128, + 78, + 19, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 1, + 0, + 0, + 0, + 85, + 28, + 84, + 215, + 26, + 46, + 231, + 174, + 169, + 167, + 176, + 153, + 149, + 149, + 166, + 154, + 152, + 151, + 191, + 154, + 151, + 150, + 153, + 157, + 171, + 180, + 175, + 166, + 156, + 152, + 152, + 79, + 112, + 117, + 115, + 84, + 97, + 103, + 115, + 13, + 0, + 0, + 0, + 108, + 105, + 98, + 111, + 112, + 117, + 115, + 32, + 49, + 46, + 49, + 46, + 50, + 1, + 0, + 0, + 0, + 13, + 0, + 0, + 0, + 106, + 105, + 98, + 111, + 61, + 100, + 101, + 118, + 45, + 116, + 101, + 115, + 116, + 184, + 123, + 31, + 60, + 47, + 249, + 113, + 188, + 89, + 202, + 88, + 103, + 138, + 202, + 118, + 21, + 120, + 119, + 158, + 207, + 21, + 235, + 226, + 44, + 92, + 87, + 212, + 240, + 97, + 134, + 79, + 150, + 167, + 85, + 86, + 42, + 248, + 132, + 222, + 243, + 106, + 247, + 149, + 152, + 148, + 197, + 26, + 94, + 218, + 212, + 79, + 163, + 217, + 70, + 202, + 85, + 255, + 186, + 204, + 231, + 190, + 144, + 172, + 224, + 158, + 22, + 71, + 54, + 67, + 207, + 249, + 13, + 186, + 23, + 190, + 65, + 124, + 159, + 200, + 231, + 33, + 194, + 247, + 137, + 249, + 131, + 35, + 159, + 39, + 185, + 227, + 60, + 112, + 55, + 157, + 12, + 65, + 6, + 87, + 4, + 10, + 212, + 128, + 85, + 94, + 140, + 124, + 249, + 19, + 133, + 91, + 157, + 41, + 247, + 72, + 61, + 170, + 124, + 114, + 111, + 5, + 72, + 80, + 249, + 46, + 158, + 156, + 61, + 170, + 11, + 212, + 15, + 56, + 211, + 197, + 203, + 92, + 253, + 182, + 180, + 2, + 122, + 151, + 4, + 160, + 89, + 18, + 62, + 213, + 79, + 62, + 181, + 122, + 77, + 168, + 250, + 172, + 86, + 193, + 114, + 220, + 119, + 92, + 175, + 50, + 31, + 186, + 170, + 63, + 102, + 247, + 164, + 132, + 117, + 243, + 50, + 14, + 152, + 111, + 33, + 231, + 190, + 33, + 94, + 5, + 204, + 233, + 228, + 12, + 196, + 107, + 140, + 128, + 255, + 209, + 236, + 39, + 241, + 93, + 83, + 186, + 99, + 203, + 253, + 103, + 23, + 102, + 16, + 183, + 241, + 55, + 216, + 90, + 125, + 79, + 191, + 124, + 173, + 44, + 125, + 59, + 58, + 175, + 112, + 222, + 20, + 156, + 218, + 46, + 112, + 212, + 184, + 197, + 187, + 168, + 80, + 152, + 235, + 132, + 94, + 244, + 242, + 74, + 239, + 180, + 65, + 139, + 210, + 171, + 166, + 1, + 172, + 233, + 58, + 29, + 52, + 246, + 40, + 184, + 87, + 196, + 87, + 49, + 211, + 66, + 255, + 66, + 202, + 241, + 146, + 7, + 176, + 236, + 211, + 73, + 183, + 60, + 109, + 4, + 223, + 229, + 29, + 202, + 77, + 218, + 145, + 11, + 47, + 46, + 144, + 248, + 204, + 2, + 156, + 35, + 55, + 200, + 167, + 148, + 211, + 190, + 40, + 198, + 89, + 57, + 182, + 90, + 17, + 169, + 168, + 203, + 199, + 6, + 43, + 180, + 116, + 147, + 173, + 100, + 19, + 202, + 210, + 72, + 22, + 21, + 245, + 204, + 38, + 127, + 69, + 90, + 80, + 145, + 156, + 214, + 88, + 133, + 72, + 252, + 16, + 119, + 180, + 154, + 125, + 59, + 81, + 15, + 210, + 81, + 80, + 42, + 169, + 177, + 254, + 192, + 101, + 72, + 10, + 60, + 46, + 197, + 30, + 136, + 242, + 189, + 169, + 218, + 178, + 93, + 100, + 241, + 44, + 17, + 113, + 62, + 72, + 30, + 37, + 74, + 138, + 100, + 171, + 89, + 203, + 252, + 190, + 118, + 250, + 150, + 41, + 240, + 169, + 192, + 206, + 214, + 246, + 41, + 217, + 29, + 13, + 172, + 62, + 80, + 26, + 205, + 184, + 174, + 100, + 50, + 45, + 48, + 87, + 155, + 184, + 24, + 135, + 129, + 8, + 67, + 66, + 157, + 79, + 121, + 237, + 166, + 144, + 31, + 109, + 97, + 254, + 142, + 5, + 215, + 175, + 34, + 101, + 210, + 77, + 110, + 141, + 248, + 124, + 7, + 34, + 226, + 56, + 111, + 31, + 39, + 228, + 20, + 133, + 125, + 214, + 158, + 8, + 26, + 36, + 110, + 201, + 204, + 149, + 129, + 148, + 197, + 133, + 223, + 10, + 223, + 30, + 210, + 229, + 62, + 52, + 233, + 41, + 105, + 94, + 52, + 161, + 84, + 251, + 189, + 244, + 212, + 3, + 144, + 17, + 89, + 70, + 210, + 96, + 148, + 172, + 151, + 147, + 145, + 224, + 118, + 191, + 97, + 112, + 193, + 137, + 179, + 214, + 102, + 152, + 158, + 81, + 165, + 147, + 201, + 70, + 85, + 86, + 125, + 195, + 224, + 244, + 85, + 177, + 117, + 204, + 246, + 103, + 54, + 242, + 58, + 71, + 255, + 169, + 160, + 51, + 87, + 57, + 235, + 176, + 122, + 234, + 138, + 13, + 152, + 8, + 28, + 216, + 115, + 170, + 174, + 153, + 133, + 183, + 52, + 239, + 111, + 11, + 255, + 42, + 225, + 205, + 158, + 234, + 215, + 162, + 136, + 153, + 181, + 27, + 198, + 146, + 204, + 47, + 217, + 109, + 184, + 171, + 128, + 5, + 139, + 16, + 241, + 133, + 183, + 10, + 145, + 154, + 39, + 86, + 171, + 27, + 171, + 206, + 3, + 231, + 139, + 159, + 124, + 199, + 73, + 37, + 179, + 30, + 150, + 133, + 159, + 58, + 235, + 52, + 221, + 41, + 247, + 57, + 60, + 73, + 90, + 233, + 56, + 67, + 55, + 153, + 61, + 221, + 43, + 182, + 243, + 187, + 86, + 159, + 6, + 33, + 110, + 49, + 10, + 77, + 54, + 251, + 189, + 242, + 223, + 247, + 224, + 159, + 76, + 58, + 140, + 169, + 76, + 111, + 187, + 107, + 79, + 80, + 38, + 174, + 185, + 4, + 242, + 146, + 83, + 189, + 100, + 216, + 245, + 146, + 98, + 72, + 118, + 17, + 52, + 121, + 36, + 246, + 247, + 166, + 58, + 10, + 152, + 117, + 144, + 125, + 109, + 24, + 218, + 228, + 23, + 104, + 188, + 215, + 179, + 226, + 64, + 68, + 20, + 42, + 88, + 179, + 76, + 7, + 103, + 230, + 16, + 189, + 241, + 37, + 4, + 202, + 182, + 74, + 85, + 84, + 218, + 95, + 200, + 248, + 250, + 97, + 3, + 220, + 243, + 157, + 247, + 132, + 57, + 248, + 43, + 139, + 18, + 236, + 41, + 107, + 111, + 89, + 54, + 90, + 142, + 207, + 9, + 2, + 181, + 69, + 109, + 184, + 194, + 124, + 250, + 102, + 104, + 196, + 217, + 125, + 54, + 129, + 111, + 23, + 237, + 219, + 190, + 251, + 89, + 135, + 196, + 77, + 156, + 40, + 222, + 243, + 134, + 214, + 23, + 38, + 58, + 15, + 102, + 40, + 128, + 237, + 162, + 156, + 114, + 225, + 52, + 174, + 161, + 224, + 53, + 38, + 50, + 81, + 107, + 242, + 205, + 175, + 38, + 235, + 164, + 198, + 67, + 169, + 38, + 83, + 147, + 114, + 179, + 170, + 165, + 100, + 157, + 56, + 212, + 39, + 133, + 68, + 152, + 162, + 33, + 236, + 149, + 140, + 80, + 133, + 4, + 251, + 5, + 166, + 18, + 217, + 156, + 170, + 228, + 148, + 63, + 235, + 252, + 191, + 175, + 241, + 36, + 201, + 227, + 141, + 99, + 255, + 48, + 150, + 189, + 136, + 113, + 0, + 159, + 206, + 213, + 112, + 58, + 69, + 89, + 195, + 189, + 161, + 179, + 11, + 43, + 72, + 31, + 185, + 112, + 141, + 169, + 38, + 240, + 82, + 202, + 63, + 34, + 159, + 193, + 139, + 55, + 165, + 40, + 18, + 233, + 55, + 251, + 73, + 216, + 248, + 212, + 196, + 146, + 107, + 159, + 82, + 3, + 87, + 17, + 58, + 236, + 221, + 82, + 168, + 215, + 132, + 85, + 199, + 172, + 224, + 90, + 175, + 241, + 232, + 165, + 128, + 126, + 129, + 44, + 49, + 205, + 184, + 194, + 112, + 111, + 59, + 20, + 62, + 228, + 21, + 211, + 152, + 10, + 224, + 20, + 237, + 239, + 53, + 38, + 87, + 2, + 96, + 95, + 68, + 159, + 39, + 152, + 96, + 179, + 26, + 213, + 167, + 212, + 236, + 60, + 6, + 97, + 109, + 148, + 8, + 39, + 121, + 252, + 67, + 183, + 200, + 117, + 214, + 41, + 100, + 131, + 189, + 52, + 97, + 125, + 92, + 91, + 210, + 73, + 87, + 217, + 175, + 65, + 59, + 44, + 8, + 115, + 64, + 212, + 63, + 217, + 230, + 159, + 57, + 145, + 76, + 57, + 234, + 177, + 23, + 187, + 130, + 65, + 132, + 57, + 6, + 24, + 149, + 106, + 98, + 110, + 156, + 30, + 192, + 190, + 241, + 189, + 227, + 2, + 206, + 91, + 15, + 221, + 62, + 149, + 221, + 226, + 74, + 54, + 171, + 51, + 204, + 151, + 10, + 201, + 121, + 27, + 125, + 7, + 19, + 143, + 79, + 252, + 113, + 71, + 252, + 108, + 99, + 101, + 86, + 169, + 3, + 14, + 249, + 53, + 212, + 96, + 137, + 96, + 36, + 8, + 137, + 188, + 153, + 221, + 97, + 134, + 73, + 40, + 64, + 213, + 48, + 101, + 205, + 184, + 193, + 200, + 154, + 233, + 109, + 238, + 0, + 80, + 87, + 226, + 48, + 58, + 130, + 105, + 81, + 240, + 101, + 95, + 60, + 6, + 59, + 129, + 180, + 57, + 62, + 216, + 231, + 130, + 217, + 100, + 184, + 252, + 77, + 113, + 203, + 8, + 48, + 122, + 129, + 38, + 255, + 31, + 49, + 165, + 165, + 211, + 47, + 182, + 53, + 100, + 50, + 75, + 122, + 212, + 215, + 140, + 33, + 164, + 189, + 80, + 212, + 219, + 142, + 81, + 130, + 138, + 137, + 185, + 37, + 58, + 96, + 93, + 60, + 217, + 5, + 45, + 59, + 60, + 97, + 111, + 207, + 122, + 108, + 41, + 50, + 23, + 126, + 156, + 210, + 27, + 138, + 85, + 200, + 22, + 224, + 93, + 245, + 99, + 251, + 14, + 181, + 155, + 252, + 221, + 137, + 174, + 158, + 110, + 18, + 12, + 140, + 229, + 39, + 190, + 165, + 232, + 168, + 58, + 5, + 184, + 9, + 95, + 207, + 173, + 50, + 230, + 31, + 142, + 13, + 27, + 205, + 69, + 246, + 40, + 72, + 97, + 187, + 52, + 118, + 182, + 234, + 199, + 80, + 219, + 53, + 33, + 0, + 205, + 184, + 18, + 113, + 168, + 28, + 15, + 5, + 212, + 206, + 70, + 254, + 12, + 121, + 123, + 226, + 100, + 206, + 93, + 241, + 117, + 136, + 189, + 246, + 103, + 146, + 218, + 74, + 225, + 5, + 87, + 116, + 145, + 226, + 53, + 71, + 155, + 194, + 154, + 213, + 133, + 86, + 132, + 198, + 104, + 67, + 62, + 75, + 35, + 184, + 92, + 156, + 202, + 213, + 160, + 8, + 5, + 49, + 254, + 199, + 146, + 182, + 113, + 104, + 45, + 193, + 81, + 198, + 15, + 229, + 10, + 247, + 130, + 138, + 170, + 52, + 208, + 202, + 214, + 146, + 239, + 198, + 149, + 152, + 83, + 16, + 9, + 253, + 148, + 96, + 40, + 183, + 137, + 40, + 164, + 234, + 61, + 235, + 122, + 8, + 74, + 19, + 160, + 74, + 83, + 28, + 171, + 94, + 63, + 46, + 220, + 3, + 119, + 165, + 0, + 86, + 192, + 237, + 78, + 154, + 110, + 157, + 47, + 61, + 156, + 26, + 27, + 71, + 232, + 81, + 22, + 75, + 64, + 84, + 241, + 138, + 164, + 98, + 6, + 114, + 178, + 156, + 242, + 122, + 177, + 204, + 186, + 123, + 34, + 247, + 184, + 33, + 13, + 204, + 218, + 187, + 98, + 6, + 89, + 92, + 168, + 219, + 139, + 184, + 3, + 154, + 185, + 157, + 65, + 116, + 82, + 236, + 150, + 103, + 59, + 200, + 213, + 202, + 228, + 247, + 34, + 221, + 42, + 86, + 241, + 71, + 51, + 30, + 20, + 117, + 33, + 60, + 66, + 114, + 121, + 29, + 38, + 74, + 52, + 221, + 216, + 178, + 51, + 104, + 180, + 208, + 198, + 99, + 180, + 84, + 102, + 71, + 151, + 126, + 59, + 88, + 44, + 90, + 79, + 126, + 88, + 247, + 31, + 155, + 26, + 99, + 190, + 176, + 223, + 124, + 72, + 212, + 122, + 206, + 111, + 40, + 247, + 76, + 37, + 136, + 116, + 217, + 96, + 137, + 254, + 97, + 144, + 134, + 71, + 81, + 111, + 95, + 112, + 6, + 120, + 52, + 158, + 211, + 146, + 54, + 150, + 54, + 99, + 28, + 246, + 11, + 247, + 66, + 141, + 203, + 236, + 100, + 6, + 154, + 75, + 113, + 221, + 136, + 226, + 158, + 47, + 84, + 201, + 64, + 0, + 218, + 191, + 161, + 194, + 135, + 214, + 205, + 103, + 36, + 165, + 151, + 157, + 135, + 101, + 78, + 139, + 87, + 248, + 12, + 52, + 188, + 165, + 120, + 236, + 158, + 106, + 145, + 122, + 54, + 252, + 117, + 184, + 3, + 5, + 197, + 123, + 109, + 85, + 144, + 9, + 32, + 185, + 246, + 200, + 73, + 43, + 16, + 66, + 19, + 242, + 88, + 1, + 129, + 29, + 119, + 123, + 196, + 50, + 208, + 147, + 50, + 50, + 233, + 155, + 89, + 186, + 114, + 100, + 91, + 200, + 78, + 227, + 137, + 210, + 119, + 48, + 149, + 80, + 205, + 202, + 93, + 116, + 179, + 98, + 218, + 178, + 2, + 137, + 66, + 178, + 96, + 102, + 187, + 29, + 227, + 171, + 92, + 118, + 34, + 7, + 154, + 54, + 111, + 241, + 9, + 119, + 43, + 54, + 52, + 167, + 249, + 65, + 161, + 15, + 110, + 185, + 173, + 227, + 30, + 159, + 69, + 189, + 94, + 73, + 117, + 242, + 209, + 13, + 84, + 165, + 1, + 132, + 79, + 248, + 74, + 197, + 23, + 251, + 34, + 8, + 172, + 212, + 107, + 173, + 10, + 148, + 223, + 45, + 74, + 170, + 148, + 4, + 38, + 169, + 220, + 19, + 97, + 95, + 72, + 0, + 179, + 162, + 129, + 110, + 152, + 215, + 50, + 90, + 143, + 90, + 95, + 106, + 17, + 36, + 128, + 173, + 10, + 162, + 199, + 255, + 238, + 136, + 11, + 245, + 106, + 184, + 22, + 114, + 204, + 48, + 120, + 245, + 28, + 72, + 29, + 42, + 232, + 100, + 74, + 159, + 49, + 61, + 123, + 107, + 77, + 204, + 53, + 28, + 231, + 90, + 77, + 172, + 36, + 32, + 127, + 34, + 37, + 223, + 222, + 103, + 202, + 86, + 141, + 227, + 180, + 22, + 255, + 129, + 193, + 225, + 5, + 163, + 203, + 105, + 218, + 90, + 122, + 142, + 72, + 139, + 206, + 77, + 245, + 116, + 38, + 78, + 25, + 215, + 203, + 34, + 13, + 136, + 94, + 94, + 177, + 94, + 96, + 208, + 112, + 187, + 227, + 213, + 117, + 96, + 40, + 48, + 211, + 195, + 125, + 147, + 118, + 240, + 167, + 60, + 122, + 213, + 175, + 173, + 83, + 212, + 109, + 183, + 188, + 167, + 90, + 223, + 133, + 156, + 129, + 46, + 135, + 17, + 13, + 113, + 31, + 24, + 116, + 245, + 147, + 165, + 200, + 71, + 107, + 93, + 201, + 195, + 40, + 213, + 98, + 232, + 210, + 110, + 61, + 60, + 250, + 97, + 61, + 41, + 160, + 185, + 205, + 119, + 107, + 160, + 78, + 185, + 83, + 31, + 202, + 238, + 29, + 95, + 164, + 174, + 203, + 121, + 121, + 184, + 56, + 176, + 196, + 17, + 46, + 62, + 189, + 242, + 78, + 79, + 50, + 9, + 181, + 28, + 160, + 58, + 207, + 191, + 155, + 101, + 77, + 106, + 228, + 248, + 56, + 131, + 162, + 46, + 176, + 142, + 235, + 165, + 17, + 56, + 25, + 78, + 105, + 145, + 9, + 13, + 133, + 216, + 180, + 70, + 146, + 200, + 189, + 43, + 119, + 45, + 57, + 148, + 50, + 142, + 222, + 99, + 210, + 12, + 22, + 125, + 31, + 234, + 107, + 81, + 131, + 169, + 45, + 100, + 142, + 115, + 128, + 81, + 250, + 98, + 130, + 243, + 46, + 101, + 188, + 54, + 55, + 119, + 201, + 12, + 161, + 213, + 119, + 222, + 75, + 62, + 111, + 62, + 177, + 155, + 222, + 74, + 202, + 85, + 252, + 1, + 114, + 52, + 30, + 1, + 230, + 87, + 59, + 15, + 53, + 66, + 45, + 204, + 224, + 130, + 169, + 97, + 126, + 204, + 254, + 177, + 172, + 171, + 120, + 108, + 145, + 199, + 153, + 58, + 157, + 239, + 26, + 230, + 51, + 220, + 119, + 19, + 49, + 99, + 108, + 249, + 27, + 229, + 131, + 100, + 50, + 248, + 152, + 9, + 0, + 241, + 184, + 123, + 1, + 240, + 0, + 246, + 233, + 176, + 67, + 40, + 234, + 22, + 137, + 79, + 143, + 194, + 216, + 248, + 178, + 86, + 80, + 7, + 219, + 170, + 93, + 76, + 97, + 191, + 43, + 197, + 246, + 163, + 223, + 26, + 249, + 9, + 91, + 109, + 67, + 45, + 90, + 39, + 53, + 157, + 222, + 253, + 164, + 211, + 255, + 42, + 187, + 225, + 62, + 39, + 43, + 54, + 51, + 160, + 210, + 193, + 25, + 131, + 236, + 94, + 30, + 61, + 9, + 212, + 125, + 250, + 159, + 0, + 212, + 68, + 167, + 102, + 239, + 232, + 92, + 253, + 110, + 161, + 236, + 79, + 244, + 55, + 253, + 141, + 79, + 19, + 22, + 121, + 78, + 140, + 48, + 213, + 250, + 128, + 78, + 27, + 13, + 101, + 242, + 50, + 141, + 193, + 47, + 82, + 212, + 40, + 173, + 173, + 248, + 184, + 137, + 149, + 45, + 251, + 66, + 11, + 151, + 103, + 165, + 160, + 52, + 51, + 237, + 124, + 28, + 61, + 55, + 59, + 25, + 116, + 244, + 10, + 62, + 248, + 171, + 165, + 229, + 184, + 212, + 202, + 142, + 223, + 53, + 199, + 123, + 206, + 213, + 122, + 207, + 245, + 199, + 240, + 133, + 2, + 24, + 224, + 69, + 5, + 136, + 90, + 201, + 55, + 73, + 136, + 50, + 223, + 73, + 69, + 149, + 59, + 125, + 167, + 74, + 233, + 70, + 141, + 140, + 85, + 124, + 207, + 235, + 19, + 252, + 226, + 196, + 157, + 135, + 184, + 197, + 180, + 9, + 243, + 224, + 24, + 151, + 198, + 44, + 241, + 171, + 166, + 207, + 133, + 126, + 70, + 161, + 57, + 48, + 63, + 254, + 184, + 52, + 44, + 127, + 145, + 160, + 8, + 213, + 28, + 99, + 99, + 136, + 78, + 202, + 118, + 145, + 228, + 106, + 208, + 255, + 130, + 22, + 223, + 119, + 204, + 98, + 48, + 76, + 8, + 140, + 176, + 226, + 6, + 99, + 209, + 69, + 36, + 103, + 8, + 134, + 64, + 247, + 222, + 154, + 216, + 157, + 201, + 245, + 139, + 113, + 35, + 137, + 136, + 83, + 209, + 206, + 38, + 97, + 27, + 245, + 97, + 53, + 131, + 33, + 247, + 87, + 161, + 184, + 153, + 102, + 192, + 112, + 137, + 23, + 241, + 146, + 37, + 144, + 76, + 157, + 205, + 41, + 199, + 241, + 227, + 40, + 161, + 234, + 222, + 140, + 26, + 30, + 25, + 237, + 47, + 181, + 217, + 204, + 234, + 117, + 197, + 60, + 86, + 101, + 117, + 76, + 39, + 45, + 232, + 230, + 142, + 188, + 153, + 82, + 9, + 48, + 232, + 115, + 100, + 89, + 92, + 47, + 77, + 99, + 229, + 64, + 84, + 75, + 19, + 177, + 114, + 41, + 184, + 192, + 228, + 68, + 242, + 228, + 142, + 193, + 246, + 236, + 141, + 107, + 199, + 42, + 94, + 239, + 143, + 226, + 57, + 101, + 89, + 2, + 25, + 118, + 201, + 152, + 81, + 45, + 255, + 214, + 83, + 202, + 103, + 157, + 146, + 54, + 159, + 155, + 16, + 75, + 47, + 143, + 12, + 4, + 19, + 100, + 29, + 37, + 116, + 69, + 155, + 41, + 4, + 72, + 5, + 242, + 125, + 62, + 205, + 148, + 116, + 164, + 218, + 93, + 167, + 50, + 254, + 3, + 245, + 45, + 108, + 176, + 14, + 102, + 175, + 31, + 228, + 248, + 104, + 67, + 228, + 233, + 11, + 161, + 235, + 209, + 113, + 189, + 224, + 153, + 120, + 13, + 72, + 224, + 43, + 236, + 2, + 164, + 195, + 118, + 9, + 183, + 13, + 141, + 103, + 147, + 147, + 163, + 239, + 29, + 117, + 202, + 217, + 241, + 42, + 240, + 17, + 241, + 223, + 165, + 40, + 46, + 26, + 137, + 1, + 32, + 147, + 133, + 169, + 126, + 85, + 68, + 46, + 119, + 105, + 23, + 15, + 217, + 90, + 149, + 146, + 249, + 204, + 50, + 164, + 54, + 188, + 203, + 204, + 99, + 41, + 184, + 195, + 12, + 104, + 47, + 39, + 226, + 36, + 44, + 249, + 82, + 149, + 102, + 46, + 234, + 125, + 110, + 39, + 189, + 218, + 64, + 11, + 20, + 58, + 248, + 198, + 238, + 15, + 248, + 112, + 171, + 239, + 239, + 159, + 145, + 226, + 43, + 103, + 214, + 205, + 208, + 223, + 233, + 15, + 195, + 139, + 216, + 106, + 56, + 112, + 217, + 121, + 178, + 28, + 212, + 150, + 36, + 196, + 100, + 125, + 210, + 83, + 140, + 168, + 138, + 82, + 226, + 130, + 27, + 49, + 148, + 141, + 68, + 225, + 205, + 170, + 84, + 183, + 83, + 2, + 92, + 40, + 244, + 134, + 162, + 76, + 143, + 97, + 88, + 42, + 202, + 207, + 83, + 25, + 74, + 137, + 156, + 94, + 204, + 48, + 56, + 140, + 23, + 193, + 77, + 125, + 141, + 50, + 40, + 41, + 249, + 233, + 244, + 91, + 147, + 173, + 31, + 17, + 181, + 71, + 107, + 253, + 190, + 45, + 138, + 154, + 240, + 224, + 129, + 59, + 104, + 54, + 128, + 206, + 26, + 102, + 188, + 137, + 34, + 241, + 67, + 199, + 142, + 233, + 163, + 225, + 67, + 56, + 99, + 29, + 184, + 195, + 3, + 250, + 252, + 129, + 121, + 53, + 156, + 99, + 195, + 155, + 206, + 220, + 176, + 92, + 49, + 176, + 184, + 3, + 129, + 144, + 201, + 237, + 217, + 139, + 8, + 224, + 217, + 65, + 254, + 22, + 74, + 227, + 109, + 86, + 86, + 28, + 97, + 199, + 38, + 194, + 137, + 226, + 222, + 55, + 231, + 87, + 141, + 217, + 132, + 211, + 209, + 181, + 21, + 122, + 188, + 111, + 89, + 39, + 127, + 193, + 36, + 33, + 92, + 165, + 55, + 107, + 61, + 125, + 120, + 50, + 17, + 80, + 92, + 27, + 97, + 144, + 182, + 100, + 18, + 248, + 135, + 2, + 253, + 86, + 123, + 34, + 116, + 169, + 182, + 124, + 247, + 4, + 19, + 227, + 252, + 18, + 106, + 129, + 173, + 169, + 181, + 207, + 37, + 39, + 17, + 79, + 239, + 64, + 190, + 38, + 136, + 199, + 40, + 129, + 94, + 144, + 214, + 132, + 220, + 40, + 60, + 101, + 58, + 3, + 57, + 191, + 118, + 1, + 111, + 241, + 148, + 162, + 39, + 54, + 152, + 73, + 220, + 42, + 73, + 204, + 86, + 151, + 156, + 14, + 36, + 8, + 154, + 198, + 113, + 171, + 23, + 184, + 194, + 122, + 49, + 212, + 197, + 194, + 170, + 15, + 204, + 218, + 68, + 99, + 135, + 149, + 63, + 90, + 190, + 198, + 240, + 8, + 71, + 227, + 190, + 51, + 39, + 183, + 66, + 101, + 93, + 192, + 13, + 139, + 77, + 243, + 137, + 228, + 35, + 162, + 224, + 226, + 167, + 96, + 208, + 5, + 242, + 81, + 183, + 79, + 122, + 167, + 177, + 8, + 100, + 185, + 125, + 49, + 84, + 96, + 171, + 252, + 101, + 113, + 218, + 252, + 17, + 246, + 69, + 27, + 221, + 74, + 157, + 177, + 51, + 196, + 105, + 169, + 196, + 208, + 204, + 217, + 135, + 212, + 224, + 214, + 63, + 109, + 7, + 52, + 21, + 123, + 55, + 59, + 160, + 205, + 134, + 217, + 32, + 69, + 188, + 210, + 63, + 35, + 37, + 129, + 180, + 192, + 211, + 175, + 162, + 2, + 178, + 118, + 81, + 183, + 69, + 18, + 226, + 250, + 216, + 254, + 103, + 28, + 164, + 239, + 43, + 69, + 7, + 58, + 30, + 168, + 208, + 24, + 177, + 129, + 201, + 127, + 42, + 169, + 3, + 142, + 118, + 91, + 64, + 129, + 220, + 11, + 24, + 10, + 242, + 193, + 228, + 107, + 115, + 95, + 127, + 17, + 184, + 194, + 252, + 183, + 66, + 211, + 122, + 173, + 92, + 16, + 139, + 147, + 216, + 77, + 217, + 214, + 85, + 225, + 77, + 206, + 125, + 181, + 10, + 3, + 241, + 198, + 54, + 172, + 223, + 173, + 4, + 106, + 70, + 219, + 155, + 247, + 108, + 27, + 238, + 223, + 136, + 159, + 40, + 43, + 10, + 232, + 100, + 198, + 240, + 216, + 172, + 105, + 55, + 197, + 78, + 18, + 202, + 136, + 164, + 194, + 212, + 64, + 171, + 52, + 99, + 138, + 168, + 217, + 23, + 232, + 167, + 109, + 44, + 183, + 154, + 111, + 85, + 26, + 103, + 63, + 81, + 146, + 65, + 58, + 212, + 114, + 251, + 59, + 151, + 7, + 216, + 133, + 190, + 131, + 11, + 163, + 121, + 226, + 54, + 3, + 220, + 45, + 73, + 233, + 63, + 33, + 120, + 123, + 19, + 195, + 106, + 43, + 148, + 129, + 56, + 52, + 140, + 152, + 160, + 118, + 102, + 51, + 93, + 4, + 176, + 140, + 182, + 141, + 240, + 110, + 41, + 76, + 164, + 16, + 138, + 230, + 82, + 103, + 191, + 37, + 172, + 111, + 133, + 172, + 36, + 54, + 222, + 223, + 163, + 217, + 129, + 210, + 69, + 59, + 241, + 135, + 19, + 246, + 250, + 150, + 163, + 95, + 184, + 236, + 1, + 202, + 208, + 138, + 145, + 34, + 145, + 184, + 193, + 3, + 78, + 195, + 25, + 190, + 79, + 168, + 154, + 145, + 43, + 20, + 70, + 200, + 51, + 247, + 133, + 190, + 201, + 142, + 202, + 55, + 143, + 9, + 157, + 53, + 86, + 254, + 62, + 204, + 214, + 97, + 31, + 42, + 104, + 209, + 151, + 167, + 24, + 106, + 223, + 34, + 6, + 170, + 174, + 204, + 204, + 85, + 85, + 194, + 159, + 75, + 216, + 166, + 16, + 211, + 167, + 136, + 188, + 116, + 64, + 113, + 219, + 125, + 112, + 190, + 121, + 130, + 4, + 136, + 184, + 142, + 59, + 121, + 251, + 203, + 137, + 205, + 18, + 173, + 42, + 239, + 88, + 149, + 119, + 46, + 221, + 184, + 20, + 253, + 75, + 251, + 69, + 60, + 160, + 146, + 70, + 97, + 76, + 166, + 85, + 207, + 179, + 53, + 87, + 158, + 57, + 16, + 140, + 76, + 225, + 230, + 138, + 108, + 126, + 146, + 145, + 201, + 223, + 131, + 111, + 148, + 3, + 146, + 85, + 114, + 191, + 0, + 137, + 148, + 128, + 190, + 140, + 83, + 170, + 165, + 169, + 102, + 91, + 232, + 236, + 132, + 55, + 140, + 143, + 190, + 142, + 134, + 86, + 86, + 236, + 153, + 7, + 1, + 63, + 208, + 247, + 28, + 194, + 197, + 255, + 218, + 115, + 153, + 138, + 235, + 224, + 114, + 229, + 112, + 161, + 77, + 106, + 159, + 142, + 40, + 9, + 18, + 23, + 184, + 194, + 246, + 79, + 252, + 1, + 49, + 116, + 162, + 17, + 53, + 115, + 133, + 43, + 93, + 22, + 163, + 239, + 238, + 86, + 68, + 211, + 58, + 9, + 84, + 254, + 192, + 141, + 46, + 137, + 81, + 131, + 67, + 228, + 19, + 224, + 1, + 65, + 157, + 164, + 61, + 92, + 76, + 187, + 131, + 153, + 180, + 35, + 97, + 81, + 159, + 38, + 231, + 176, + 166, + 8, + 152, + 54, + 212, + 236, + 208, + 180, + 132, + 27, + 235, + 221, + 237, + 187, + 246, + 224, + 3, + 157, + 215, + 100, + 20, + 127, + 133, + 73, + 62, + 147, + 207, + 156, + 22, + 198, + 21, + 251, + 158, + 39, + 173, + 208, + 50, + 205, + 44, + 48, + 55, + 143, + 90, + 83, + 87, + 26, + 188, + 3, + 61, + 224, + 34, + 4, + 65, + 207, + 217, + 141, + 26, + 143, + 106, + 124, + 63, + 50, + 179, + 116, + 51, + 244, + 82, + 200, + 162, + 253, + 185, + 10, + 98, + 184, + 14, + 249, + 229, + 176, + 190, + 12, + 59, + 64, + 179, + 94, + 96, + 46, + 220, + 24, + 32, + 133, + 146, + 208, + 172, + 160, + 41, + 87, + 169, + 232, + 230, + 173, + 21, + 28, + 38, + 156, + 88, + 221, + 253, + 89, + 79, + 172, + 56, + 0, + 216, + 37, + 176, + 222, + 115, + 162, + 145, + 166, + 23, + 184, + 10, + 29, + 53, + 163, + 137, + 152, + 179, + 251, + 253, + 60, + 104, + 121, + 36, + 228, + 85, + 200, + 247, + 201, + 162, + 128, + 9, + 12, + 142, + 151, + 154, + 64, + 243, + 233, + 9, + 38, + 240, + 121, + 69, + 255, + 2, + 209, + 184, + 250, + 184, + 1, + 71, + 245, + 146, + 106, + 161, + 167, + 118, + 96, + 93, + 3, + 146, + 27, + 153, + 173, + 148, + 252, + 164, + 77, + 95, + 193, + 139, + 110, + 185, + 1, + 165, + 37, + 71, + 150, + 254, + 16, + 94, + 38, + 52, + 119, + 45, + 95, + 223, + 18, + 167, + 156, + 70, + 65, + 85, + 217, + 16, + 247, + 239, + 52, + 86, + 236, + 85, + 112, + 170, + 111, + 67, + 159, + 157, + 216, + 252, + 118, + 155, + 122, + 60, + 137, + 145, + 210, + 66, + 209, + 32, + 2, + 186, + 10, + 153, + 179, + 134, + 86, + 72, + 102, + 101, + 71, + 23, + 123, + 124, + 27, + 25, + 18, + 201, + 149, + 23, + 117, + 113, + 184, + 15, + 25, + 6, + 133, + 159, + 184, + 109, + 180, + 86, + 35, + 82, + 249, + 230, + 235, + 49, + 196, + 148, + 157, + 198, + 82, + 12, + 232, + 62, + 78, + 88, + 156, + 108, + 61, + 120, + 7, + 228, + 48, + 173, + 184, + 8, + 143, + 82, + 134, + 76, + 20, + 219, + 203, + 169, + 31, + 64, + 58, + 11, + 171, + 170, + 174, + 127, + 148, + 50, + 108, + 56, + 17, + 114, + 195, + 107, + 245, + 29, + 218, + 251, + 211, + 80, + 165, + 53, + 82, + 97, + 255, + 88, + 5, + 224, + 191, + 44, + 155, + 156, + 80, + 121, + 84, + 162, + 81, + 71, + 30, + 197, + 21, + 94, + 173, + 20, + 159, + 60, + 85, + 250, + 102, + 139, + 105, + 67, + 251, + 156, + 160, + 2, + 180, + 39, + 89, + 232, + 131, + 241, + 51, + 83, + 160, + 98, + 249, + 41, + 108, + 133, + 5, + 204, + 37, + 32, + 168, + 130, + 93, + 110, + 254, + 172, + 45, + 219, + 53, + 56, + 91, + 173, + 202, + 77, + 223, + 156, + 75, + 41, + 145, + 90, + 237, + 238, + 44, + 176, + 32, + 216, + 9, + 250, + 116, + 54, + 152, + 195, + 169, + 44, + 54, + 154, + 161, + 234, + 156, + 124, + 224, + 84, + 98, + 205, + 132, + 37, + 167, + 222, + 132, + 153, + 19, + 199, + 92, + 114, + 149, + 78, + 40, + 163, + 208, + 200, + 121, + 46, + 114, + 105, + 138, + 233, + 40, + 215, + 33, + 226, + 184, + 21, + 218, + 69, + 103, + 146, + 130, + 226, + 169, + 128, + 251, + 205, + 120, + 145, + 127, + 130, + 68, + 134, + 58, + 218, + 107, + 236, + 244, + 131, + 101, + 120, + 239, + 249, + 162, + 72, + 100, + 124, + 120, + 75, + 56, + 151, + 190, + 151, + 198, + 147, + 96, + 229, + 54, + 140, + 53, + 126, + 56, + 176, + 254, + 249, + 217, + 233, + 123, + 179, + 209, + 43, + 123, + 29, + 168, + 26, + 2, + 129, + 199, + 252, + 176, + 233, + 154, + 238, + 222, + 137, + 46, + 27, + 146, + 66, + 6, + 119, + 231, + 25, + 244, + 102, + 72, + 112, + 3, + 179, + 180, + 163, + 127, + 43, + 208, + 164, + 184, + 118, + 206, + 26, + 246, + 209, + 202, + 121, + 163, + 17, + 128, + 162, + 51, + 126, + 80, + 185, + 204, + 212, + 99, + 85, + 85, + 213, + 169, + 195, + 226, + 28, + 201, + 201, + 189, + 70, + 90, + 206, + 85, + 147, + 203, + 99, + 18, + 133, + 134, + 212, + 84, + 94, + 178, + 89, + 37, + 245, + 148, + 69, + 173, + 238, + 138, + 76, + 223, + 138, + 68, + 141, + 136, + 221, + 52, + 17, + 154, + 59, + 184, + 32, + 42, + 197, + 159, + 31, + 207, + 91, + 92, + 69, + 77, + 220, + 186, + 187, + 97, + 4, + 98, + 118, + 223, + 206, + 248, + 5, + 189, + 254, + 64, + 85, + 24, + 246, + 175, + 167, + 93, + 178, + 206, + 125, + 100, + 227, + 63, + 255, + 44, + 8, + 115, + 208, + 138, + 167, + 221, + 151, + 37, + 76, + 49, + 98, + 7, + 200, + 145, + 248, + 140, + 141, + 140, + 96, + 51, + 44, + 98, + 15, + 208, + 140, + 36, + 117, + 51, + 70, + 79, + 177, + 213, + 134, + 160, + 36, + 170, + 143, + 116, + 186, + 145, + 84, + 128, + 141, + 242, + 38, + 59, + 67, + 8, + 182, + 51, + 56, + 119, + 99, + 240, + 220, + 161, + 189, + 178, + 209, + 248, + 84, + 113, + 109, + 84, + 58, + 214, + 204, + 205, + 242, + 25, + 232, + 128, + 93, + 3, + 218, + 238, + 5, + 9, + 179, + 110, + 36, + 132, + 211, + 35, + 125, + 41, + 152, + 78, + 192, + 17, + 198, + 180, + 31, + 214, + 142, + 203, + 171, + 83, + 239, + 91, + 155, + 34, + 254, + 198, + 94, + 229, + 196, + 248, + 196, + 34, + 214, + 161, + 90 + ], + "expectedReplyTypes": [] + }, + { + "text": { + "type": "CONTEXT", + "ts": 1777294642904, + "msgID": "mid-a2051cba-4238-11f1-8b95-5cf821ea55ae", + "transID": "tid-a14e2dac-4238-11f1-9874-5cf821ea55ae", + "data": { + "runtime": { + "character": { + "emotion": { + "name": "NEUTRAL", + "valence": 0.45, + "confidence": 0.2 + }, + "motivation": { + "social": 1, + "playful": 0.36478467592590976 + } + }, + "perception": { + "speaker": null, + "peoplePresent": [] + }, + "location": { + "city": "Pleasant Hill", + "state": "Missouri", + "stateAbbr": "MO", + "country": "United States", + "countryCode": "US", + "lat": 38.8358494, + "lng": -94.1427229, + "iso": "2026-04-27T07:57:22.855-05:00" + }, + "loop": { + "loopId": "5c0b221fdf9d450019c5e253", + "users": [ + { + "firstName": "Erin", + "lastName": "Picone", + "phoneticName": "Erin", + "gender": "female", + "birthdate": 649209600000, + "id": "5c0b221fdf9d450019c5e255", + "accountId": "5c0b20547c46170019235759" + } + ], + "jibo": { + "color": "WHITE", + "birthdate": 1544234645598, + "id": "5c0b221fdf9d450019c5e254" + }, + "owner": "5c0b221fdf9d450019c5e255" + }, + "dialog": { + "referent": null + } + }, + "skill": { + "id": "chitchat-skill" + }, + "general": { + "release": "1.9.2" + } + } + }, + "binary": null, + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 0, + 176, + 19, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 2, + 0, + 0, + 0, + 182, + 139, + 118, + 14, + 26, + 149, + 166, + 176, + 174, + 168, + 172, + 147, + 141, + 141, + 136, + 135, + 153, + 161, + 161, + 161, + 161, + 161, + 198, + 141, + 144, + 161, + 161, + 161, + 161, + 161, + 161, + 184, + 6, + 33, + 254, + 179, + 211, + 143, + 189, + 244, + 191, + 215, + 230, + 84, + 26, + 231, + 247, + 184, + 227, + 104, + 228, + 247, + 1, + 103, + 211, + 123, + 176, + 234, + 238, + 158, + 222, + 216, + 85, + 162, + 234, + 75, + 94, + 64, + 126, + 225, + 93, + 232, + 192, + 120, + 228, + 76, + 62, + 149, + 93, + 28, + 238, + 243, + 216, + 75, + 239, + 8, + 35, + 180, + 85, + 196, + 25, + 47, + 192, + 160, + 240, + 92, + 77, + 126, + 137, + 66, + 242, + 172, + 238, + 254, + 111, + 234, + 141, + 224, + 237, + 233, + 239, + 12, + 6, + 10, + 160, + 152, + 232, + 75, + 136, + 102, + 90, + 93, + 121, + 234, + 245, + 116, + 182, + 177, + 193, + 38, + 96, + 112, + 34, + 200, + 30, + 14, + 239, + 247, + 27, + 109, + 117, + 68, + 247, + 9, + 100, + 169, + 131, + 71, + 71, + 230, + 206, + 43, + 211, + 14, + 63, + 150, + 7, + 223, + 196, + 55, + 163, + 95, + 10, + 239, + 236, + 184, + 193, + 202, + 233, + 224, + 182, + 169, + 151, + 237, + 148, + 228, + 66, + 62, + 95, + 240, + 184, + 195, + 9, + 29, + 80, + 219, + 50, + 232, + 150, + 122, + 18, + 236, + 67, + 118, + 153, + 242, + 19, + 35, + 226, + 50, + 199, + 155, + 18, + 0, + 23, + 88, + 205, + 91, + 70, + 59, + 127, + 178, + 81, + 91, + 103, + 17, + 241, + 91, + 140, + 85, + 102, + 86, + 236, + 27, + 2, + 49, + 139, + 91, + 248, + 147, + 15, + 102, + 238, + 64, + 105, + 165, + 85, + 101, + 150, + 112, + 119, + 76, + 34, + 27, + 168, + 195, + 56, + 46, + 8, + 195, + 152, + 52, + 229, + 36, + 157, + 208, + 119, + 3, + 130, + 120, + 113, + 225, + 57, + 72, + 105, + 0, + 101, + 95, + 97, + 230, + 37, + 211, + 1, + 49, + 135, + 212, + 44, + 61, + 235, + 28, + 40, + 192, + 196, + 93, + 23, + 136, + 65, + 66, + 231, + 141, + 84, + 179, + 118, + 159, + 58, + 112, + 53, + 126, + 132, + 61, + 230, + 116, + 10, + 72, + 163, + 122, + 232, + 105, + 62, + 164, + 89, + 145, + 159, + 9, + 105, + 60, + 209, + 93, + 172, + 192, + 72, + 14, + 183, + 111, + 52, + 161, + 136, + 64, + 103, + 92, + 167, + 149, + 195, + 174, + 78, + 9, + 118, + 67, + 239, + 219, + 245, + 67, + 176, + 222, + 250, + 41, + 184, + 216, + 94, + 157, + 144, + 78, + 162, + 14, + 99, + 0, + 31, + 10, + 35, + 222, + 220, + 90, + 78, + 217, + 155, + 197, + 19, + 120, + 242, + 127, + 98, + 83, + 109, + 167, + 197, + 234, + 39, + 28, + 218, + 245, + 88, + 7, + 237, + 173, + 91, + 233, + 55, + 166, + 31, + 199, + 212, + 205, + 240, + 12, + 63, + 175, + 240, + 171, + 222, + 240, + 36, + 198, + 75, + 160, + 159, + 170, + 13, + 226, + 91, + 117, + 8, + 246, + 134, + 209, + 52, + 37, + 102, + 65, + 214, + 114, + 203, + 43, + 111, + 136, + 30, + 251, + 33, + 160, + 214, + 176, + 52, + 131, + 242, + 87, + 13, + 183, + 37, + 237, + 213, + 137, + 143, + 1, + 247, + 197, + 33, + 31, + 10, + 216, + 89, + 85, + 64, + 199, + 233, + 187, + 94, + 65, + 55, + 168, + 168, + 166, + 178, + 79, + 226, + 158, + 30, + 177, + 115, + 226, + 150, + 73, + 124, + 151, + 156, + 130, + 177, + 71, + 33, + 215, + 160, + 96, + 232, + 36, + 207, + 254, + 248, + 143, + 83, + 111, + 15, + 20, + 217, + 215, + 151, + 244, + 67, + 162, + 227, + 210, + 139, + 219, + 27, + 199, + 49, + 198, + 197, + 13, + 155, + 116, + 169, + 232, + 176, + 215, + 166, + 226, + 180, + 15, + 147, + 188, + 46, + 56, + 155, + 81, + 184, + 5, + 106, + 222, + 174, + 51, + 218, + 39, + 5, + 77, + 70, + 85, + 115, + 247, + 196, + 210, + 161, + 43, + 238, + 28, + 218, + 224, + 52, + 230, + 177, + 47, + 235, + 48, + 107, + 162, + 103, + 159, + 197, + 78, + 217, + 120, + 94, + 204, + 180, + 25, + 43, + 1, + 107, + 215, + 50, + 254, + 170, + 43, + 90, + 112, + 255, + 85, + 236, + 60, + 184, + 186, + 58, + 166, + 134, + 168, + 196, + 171, + 85, + 223, + 21, + 55, + 193, + 252, + 33, + 2, + 9, + 117, + 129, + 198, + 163, + 181, + 23, + 171, + 67, + 138, + 133, + 95, + 157, + 207, + 212, + 173, + 127, + 137, + 161, + 195, + 1, + 49, + 237, + 56, + 1, + 180, + 60, + 83, + 209, + 239, + 146, + 62, + 41, + 1, + 224, + 40, + 249, + 252, + 192, + 104, + 78, + 148, + 95, + 59, + 142, + 55, + 99, + 49, + 87, + 221, + 54, + 254, + 79, + 26, + 22, + 63, + 151, + 161, + 60, + 5, + 218, + 108, + 118, + 71, + 158, + 91, + 83, + 141, + 34, + 175, + 137, + 208, + 128, + 15, + 227, + 124, + 202, + 18, + 206, + 194, + 164, + 79, + 39, + 205, + 30, + 80, + 177, + 223, + 44, + 236, + 79, + 10, + 23, + 33, + 115, + 27, + 167, + 196, + 199, + 74, + 127, + 27, + 76, + 51, + 184, + 171, + 0, + 69, + 29, + 74, + 29, + 59, + 46, + 206, + 158, + 123, + 154, + 24, + 198, + 40, + 25, + 237, + 138, + 42, + 168, + 40, + 244, + 157, + 153, + 24, + 157, + 41, + 100, + 123, + 100, + 188, + 159, + 40, + 23, + 218, + 229, + 143, + 14, + 138, + 207, + 122, + 199, + 219, + 172, + 136, + 117, + 186, + 246, + 165, + 151, + 236, + 54, + 18, + 127, + 26, + 103, + 0, + 79, + 135, + 143, + 155, + 185, + 116, + 5, + 223, + 254, + 60, + 230, + 11, + 213, + 56, + 123, + 251, + 84, + 202, + 36, + 163, + 140, + 36, + 154, + 191, + 49, + 212, + 163, + 81, + 199, + 65, + 100, + 75, + 213, + 174, + 19, + 35, + 138, + 102, + 225, + 167, + 221, + 208, + 242, + 161, + 123, + 183, + 81, + 217, + 25, + 108, + 88, + 79, + 172, + 224, + 14, + 174, + 76, + 120, + 95, + 93, + 79, + 168, + 247, + 7, + 22, + 181, + 96, + 21, + 70, + 24, + 36, + 157, + 51, + 227, + 147, + 194, + 153, + 120, + 16, + 84, + 220, + 34, + 209, + 9, + 178, + 157, + 98, + 172, + 138, + 131, + 77, + 227, + 14, + 224, + 193, + 226, + 208, + 217, + 125, + 62, + 159, + 8, + 226, + 149, + 249, + 22, + 153, + 135, + 154, + 137, + 184, + 19, + 101, + 36, + 178, + 54, + 227, + 142, + 244, + 145, + 16, + 151, + 245, + 115, + 96, + 146, + 20, + 246, + 9, + 246, + 109, + 135, + 117, + 143, + 200, + 239, + 144, + 2, + 165, + 252, + 186, + 24, + 146, + 43, + 222, + 232, + 191, + 29, + 69, + 54, + 98, + 123, + 252, + 54, + 160, + 106, + 70, + 87, + 37, + 197, + 118, + 45, + 4, + 13, + 78, + 220, + 127, + 193, + 47, + 107, + 40, + 110, + 212, + 5, + 174, + 19, + 40, + 254, + 133, + 103, + 64, + 123, + 136, + 237, + 239, + 199, + 118, + 198, + 110, + 51, + 34, + 227, + 23, + 73, + 230, + 154, + 156, + 99, + 23, + 188, + 96, + 220, + 185, + 105, + 201, + 207, + 218, + 62, + 55, + 247, + 146, + 208, + 180, + 78, + 9, + 81, + 19, + 221, + 17, + 89, + 193, + 122, + 187, + 5, + 49, + 57, + 173, + 149, + 57, + 182, + 54, + 74, + 7, + 45, + 65, + 211, + 59, + 87, + 167, + 102, + 76, + 71, + 186, + 30, + 203, + 204, + 130, + 3, + 35, + 138, + 241, + 246, + 51, + 240, + 167, + 78, + 199, + 16, + 71, + 140, + 255, + 195, + 182, + 5, + 234, + 164, + 70, + 78, + 64, + 180, + 191, + 248, + 109, + 103, + 22, + 170, + 255, + 77, + 75, + 154, + 15, + 98, + 184, + 28, + 231, + 72, + 234, + 161, + 167, + 47, + 91, + 60, + 208, + 192, + 105, + 215, + 113, + 228, + 228, + 1, + 146, + 57, + 23, + 94, + 67, + 86, + 227, + 160, + 200, + 21, + 181, + 109, + 140, + 197, + 197, + 184, + 211, + 31, + 242, + 152, + 171, + 94, + 90, + 86, + 68, + 149, + 252, + 213, + 54, + 191, + 37, + 238, + 63, + 138, + 151, + 52, + 55, + 38, + 164, + 3, + 94, + 104, + 23, + 150, + 26, + 201, + 25, + 240, + 33, + 236, + 217, + 61, + 107, + 29, + 219, + 237, + 62, + 39, + 154, + 4, + 239, + 73, + 216, + 245, + 174, + 43, + 236, + 111, + 155, + 179, + 14, + 168, + 234, + 157, + 4, + 15, + 5, + 160, + 19, + 117, + 131, + 166, + 229, + 67, + 153, + 56, + 235, + 202, + 12, + 21, + 95, + 132, + 41, + 122, + 246, + 123, + 239, + 128, + 25, + 206, + 108, + 48, + 216, + 241, + 69, + 21, + 111, + 27, + 235, + 184, + 173, + 185, + 75, + 249, + 214, + 125, + 139, + 130, + 250, + 190, + 120, + 170, + 126, + 83, + 178, + 36, + 109, + 112, + 132, + 184, + 32, + 66, + 219, + 8, + 126, + 22, + 12, + 169, + 81, + 105, + 236, + 123, + 200, + 107, + 14, + 18, + 124, + 114, + 93, + 143, + 181, + 145, + 67, + 198, + 107, + 195, + 129, + 119, + 234, + 13, + 226, + 30, + 133, + 99, + 17, + 152, + 67, + 185, + 89, + 210, + 102, + 90, + 39, + 71, + 222, + 132, + 12, + 10, + 147, + 210, + 109, + 55, + 19, + 224, + 175, + 6, + 220, + 199, + 222, + 238, + 105, + 20, + 152, + 66, + 102, + 187, + 55, + 153, + 114, + 180, + 54, + 95, + 93, + 228, + 85, + 47, + 229, + 233, + 32, + 116, + 64, + 37, + 23, + 132, + 64, + 21, + 37, + 143, + 5, + 62, + 73, + 175, + 160, + 207, + 89, + 146, + 24, + 237, + 140, + 190, + 199, + 139, + 130, + 38, + 225, + 101, + 58, + 158, + 154, + 166, + 178, + 99, + 71, + 151, + 156, + 230, + 39, + 251, + 117, + 97, + 219, + 165, + 124, + 24, + 162, + 188, + 206, + 3, + 223, + 105, + 75, + 0, + 178, + 71, + 126, + 214, + 7, + 136, + 65, + 158, + 184, + 21, + 167, + 96, + 164, + 185, + 195, + 157, + 84, + 187, + 80, + 244, + 164, + 152, + 207, + 100, + 237, + 199, + 120, + 171, + 226, + 129, + 75, + 149, + 224, + 251, + 246, + 125, + 11, + 70, + 185, + 179, + 178, + 191, + 182, + 96, + 34, + 8, + 21, + 94, + 4, + 229, + 171, + 41, + 139, + 246, + 119, + 214, + 115, + 254, + 53, + 150, + 74, + 168, + 18, + 223, + 146, + 193, + 158, + 174, + 93, + 187, + 152, + 146, + 223, + 8, + 143, + 195, + 230, + 8, + 142, + 23, + 125, + 146, + 13, + 207, + 5, + 158, + 110, + 100, + 189, + 238, + 220, + 19, + 251, + 185, + 90, + 193, + 73, + 2, + 5, + 138, + 80, + 125, + 251, + 41, + 178, + 114, + 231, + 250, + 218, + 46, + 87, + 4, + 150, + 169, + 133, + 117, + 66, + 188, + 186, + 192, + 217, + 227, + 180, + 160, + 19, + 110, + 80, + 35, + 26, + 41, + 177, + 1, + 181, + 80, + 183, + 181, + 159, + 124, + 191, + 216, + 68, + 178, + 176, + 119, + 51, + 35, + 57, + 46, + 28, + 184, + 16, + 81, + 63, + 84, + 35, + 82, + 36, + 148, + 93, + 253, + 236, + 29, + 35, + 173, + 202, + 220, + 83, + 30, + 132, + 12, + 75, + 227, + 58, + 53, + 14, + 112, + 51, + 150, + 202, + 200, + 16, + 244, + 209, + 92, + 241, + 159, + 121, + 188, + 199, + 107, + 146, + 32, + 14, + 88, + 183, + 120, + 235, + 129, + 94, + 218, + 168, + 136, + 107, + 46, + 232, + 65, + 239, + 1, + 1, + 72, + 166, + 35, + 185, + 189, + 7, + 93, + 31, + 241, + 212, + 248, + 145, + 185, + 156, + 155, + 247, + 218, + 228, + 149, + 128, + 55, + 70, + 175, + 103, + 97, + 30, + 251, + 246, + 156, + 220, + 111, + 97, + 235, + 35, + 121, + 165, + 161, + 200, + 98, + 88, + 245, + 156, + 255, + 214, + 53, + 132, + 98, + 56, + 229, + 18, + 108, + 254, + 91, + 88, + 225, + 114, + 42, + 27, + 177, + 89, + 94, + 19, + 67, + 233, + 49, + 203, + 60, + 251, + 142, + 79, + 206, + 71, + 96, + 67, + 4, + 193, + 184, + 65, + 197, + 8, + 64, + 138, + 18, + 238, + 216, + 182, + 232, + 238, + 166, + 123, + 10, + 89, + 142, + 34, + 124, + 243, + 166, + 247, + 63, + 18, + 87, + 134, + 164, + 44, + 230, + 111, + 197, + 206, + 195, + 114, + 21, + 43, + 69, + 249, + 136, + 166, + 126, + 78, + 10, + 162, + 220, + 227, + 192, + 255, + 98, + 53, + 91, + 68, + 108, + 253, + 86, + 250, + 149, + 196, + 224, + 251, + 72, + 227, + 196, + 128, + 74, + 244, + 43, + 7, + 202, + 38, + 129, + 195, + 209, + 183, + 91, + 182, + 47, + 200, + 81, + 114, + 116, + 71, + 148, + 128, + 151, + 131, + 176, + 99, + 178, + 31, + 56, + 161, + 219, + 165, + 30, + 184, + 253, + 112, + 217, + 104, + 156, + 72, + 239, + 253, + 186, + 197, + 192, + 124, + 148, + 185, + 135, + 185, + 226, + 128, + 18, + 39, + 13, + 113, + 81, + 179, + 19, + 117, + 240, + 198, + 81, + 83, + 117, + 57, + 60, + 181, + 40, + 247, + 25, + 137, + 29, + 184, + 66, + 4, + 188, + 199, + 27, + 200, + 233, + 228, + 119, + 118, + 247, + 249, + 46, + 132, + 105, + 209, + 191, + 92, + 108, + 39, + 142, + 98, + 103, + 92, + 58, + 228, + 218, + 240, + 234, + 5, + 47, + 2, + 194, + 225, + 237, + 79, + 238, + 219, + 143, + 31, + 93, + 248, + 196, + 164, + 158, + 67, + 251, + 1, + 67, + 173, + 45, + 9, + 3, + 234, + 82, + 15, + 166, + 70, + 184, + 75, + 78, + 46, + 224, + 177, + 113, + 0, + 142, + 230, + 156, + 209, + 152, + 65, + 212, + 226, + 103, + 225, + 7, + 220, + 99, + 179, + 42, + 8, + 227, + 197, + 56, + 228, + 24, + 61, + 235, + 108, + 34, + 116, + 190, + 48, + 228, + 233, + 187, + 5, + 130, + 151, + 142, + 181, + 102, + 144, + 161, + 108, + 12, + 185, + 124, + 124, + 174, + 252, + 131, + 71, + 163, + 68, + 3, + 210, + 63, + 99, + 102, + 22, + 248, + 57, + 244, + 27, + 205, + 55, + 115, + 147, + 2, + 96, + 59, + 243, + 222, + 83, + 72, + 160, + 212, + 250, + 84, + 49, + 143, + 213, + 65, + 109, + 8, + 133, + 41, + 187, + 76, + 158, + 184, + 18, + 200, + 50, + 62, + 73, + 251, + 112, + 61, + 6, + 226, + 197, + 240, + 134, + 11, + 222, + 130, + 5, + 251, + 128, + 12, + 204, + 168, + 213, + 197, + 15, + 131, + 224, + 56, + 163, + 170, + 141, + 225, + 18, + 50, + 245, + 250, + 119, + 96, + 157, + 7, + 68, + 142, + 107, + 113, + 208, + 27, + 240, + 147, + 63, + 112, + 116, + 72, + 128, + 185, + 101, + 207, + 17, + 208, + 104, + 167, + 24, + 144, + 205, + 239, + 244, + 7, + 120, + 78, + 17, + 59, + 130, + 240, + 203, + 9, + 251, + 126, + 119, + 253, + 152, + 29, + 152, + 38, + 190, + 53, + 251, + 154, + 4, + 54, + 123, + 246, + 46, + 153, + 206, + 138, + 59, + 230, + 49, + 60, + 225, + 109, + 232, + 238, + 216, + 108, + 159, + 9, + 240, + 24, + 16, + 84, + 137, + 34, + 231, + 108, + 161, + 148, + 9, + 168, + 210, + 61, + 184, + 169, + 56, + 199, + 5, + 150, + 118, + 156, + 129, + 226, + 98, + 221, + 9, + 203, + 127, + 70, + 99, + 224, + 225, + 123, + 221, + 71, + 94, + 244, + 95, + 169, + 34, + 82, + 195, + 50, + 44, + 101, + 137, + 55, + 161, + 200, + 105, + 16, + 17, + 133, + 184, + 61, + 196, + 109, + 101, + 214, + 66, + 214, + 40, + 102, + 216, + 145, + 106, + 85, + 142, + 161, + 55, + 187, + 70, + 57, + 82, + 247, + 96, + 30, + 237, + 162, + 206, + 121, + 17, + 121, + 50, + 238, + 199, + 74, + 127, + 75, + 177, + 95, + 154, + 92, + 2, + 189, + 150, + 122, + 185, + 252, + 157, + 52, + 22, + 41, + 223, + 192, + 113, + 7, + 154, + 26, + 170, + 13, + 74, + 130, + 151, + 39, + 61, + 135, + 0, + 200, + 216, + 196, + 9, + 28, + 154, + 113, + 214, + 111, + 38, + 237, + 181, + 117, + 38, + 153, + 230, + 135, + 72, + 48, + 237, + 103, + 212, + 109, + 43, + 15, + 14, + 93, + 62, + 222, + 162, + 168, + 74, + 233, + 238, + 226, + 178, + 115, + 48, + 227, + 160, + 238, + 41, + 44, + 178, + 27, + 232, + 94, + 93, + 88, + 192, + 94, + 244, + 152, + 111, + 120, + 202, + 154, + 163, + 191, + 60, + 42, + 88, + 167, + 242, + 233, + 193, + 50, + 235, + 25, + 219, + 225, + 211, + 181, + 157, + 46, + 181, + 187, + 82, + 87, + 251, + 216, + 149, + 119, + 183, + 193, + 51, + 133, + 97, + 34, + 110, + 113, + 162, + 110, + 119, + 154, + 125, + 184, + 22, + 106, + 156, + 217, + 94, + 21, + 155, + 188, + 133, + 31, + 211, + 95, + 10, + 200, + 109, + 17, + 32, + 76, + 89, + 71, + 132, + 151, + 93, + 31, + 80, + 245, + 86, + 71, + 229, + 173, + 239, + 30, + 210, + 94, + 34, + 200, + 135, + 15, + 181, + 221, + 59, + 118, + 185, + 31, + 148, + 123, + 172, + 192, + 31, + 241, + 113, + 128, + 234, + 136, + 7, + 130, + 107, + 214, + 184, + 139, + 233, + 59, + 121, + 144, + 175, + 205, + 137, + 124, + 15, + 173, + 121, + 3, + 204, + 220, + 175, + 53, + 136, + 210, + 58, + 223, + 8, + 44, + 200, + 220, + 74, + 64, + 235, + 43, + 242, + 225, + 184, + 108, + 205, + 59, + 246, + 236, + 116, + 95, + 179, + 181, + 127, + 22, + 108, + 137, + 193, + 37, + 108, + 251, + 195, + 249, + 123, + 144, + 36, + 35, + 175, + 102, + 121, + 159, + 202, + 205, + 137, + 39, + 222, + 250, + 18, + 78, + 156, + 52, + 110, + 169, + 161, + 121, + 63, + 51, + 56, + 246, + 233, + 50, + 26, + 16, + 59, + 111, + 4, + 133, + 157, + 3, + 146, + 183, + 222, + 144, + 220, + 59, + 126, + 255, + 106, + 184, + 235, + 129, + 210, + 240, + 184, + 25, + 172, + 150, + 214, + 215, + 254, + 80, + 249, + 28, + 19, + 216, + 205, + 57, + 210, + 243, + 138, + 31, + 254, + 168, + 140, + 50, + 245, + 91, + 2, + 90, + 162, + 175, + 161, + 116, + 134, + 14, + 221, + 172, + 96, + 253, + 79, + 9, + 52, + 95, + 88, + 86, + 190, + 157, + 79, + 169, + 66, + 203, + 54, + 4, + 48, + 194, + 131, + 123, + 25, + 194, + 160, + 67, + 117, + 159, + 2, + 237, + 125, + 158, + 157, + 211, + 233, + 254, + 21, + 187, + 27, + 114, + 13, + 156, + 128, + 218, + 51, + 250, + 59, + 25, + 138, + 53, + 149, + 18, + 128, + 24, + 130, + 185, + 187, + 178, + 167, + 148, + 101, + 117, + 231, + 127, + 37, + 71, + 65, + 186, + 5, + 171, + 2, + 227, + 118, + 183, + 54, + 175, + 140, + 171, + 254, + 166, + 111, + 31, + 119, + 96, + 1, + 106, + 75, + 253, + 61, + 184, + 204, + 250, + 111, + 151, + 33, + 127, + 75, + 217, + 49, + 85, + 172, + 82, + 198, + 241, + 75, + 54, + 221, + 218, + 113, + 109, + 216, + 83, + 229, + 16, + 34, + 56, + 52, + 50, + 34, + 61, + 200, + 27, + 8, + 230, + 65, + 124, + 1, + 242, + 182, + 184, + 61, + 197, + 35, + 236, + 217, + 159, + 49, + 236, + 205, + 218, + 113, + 153, + 110, + 122, + 243, + 101, + 24, + 121, + 13, + 20, + 112, + 148, + 36, + 239, + 140, + 220, + 153, + 252, + 122, + 129, + 87, + 41, + 154, + 147, + 159, + 54, + 154, + 87, + 213, + 67, + 6, + 162, + 5, + 12, + 101, + 4, + 56, + 178, + 61, + 164, + 103, + 107, + 134, + 189, + 225, + 58, + 251, + 191, + 90, + 87, + 208, + 173, + 20, + 126, + 34, + 187, + 168, + 195, + 162, + 151, + 252, + 120, + 48, + 153, + 97, + 207, + 176, + 48, + 163, + 90, + 126, + 245, + 117, + 250, + 139, + 191, + 136, + 199, + 232, + 187, + 210, + 229, + 236, + 98, + 185, + 209, + 225, + 233, + 72, + 148, + 117, + 12, + 138, + 10, + 205, + 122, + 82, + 17, + 210, + 224, + 38, + 169, + 58, + 200, + 154, + 241, + 125, + 230, + 184, + 241, + 129, + 152, + 144, + 121, + 98, + 80, + 232, + 216, + 210, + 189, + 18, + 50, + 48, + 182, + 201, + 200, + 175, + 139, + 214, + 174, + 34, + 251, + 85, + 159, + 34, + 182, + 41, + 232, + 31, + 61, + 5, + 239, + 48, + 220, + 3, + 64, + 186, + 239, + 21, + 124, + 184, + 122, + 245, + 220, + 119, + 241, + 168, + 189, + 181, + 201, + 31, + 56, + 240, + 102, + 219, + 118, + 254, + 232, + 184, + 2, + 153, + 150, + 231, + 244, + 21, + 7, + 246, + 240, + 62, + 103, + 63, + 207, + 133, + 177, + 250, + 85, + 15, + 144, + 123, + 175, + 47, + 236, + 178, + 223, + 242, + 8, + 183, + 134, + 99, + 78, + 33, + 219, + 238, + 250, + 210, + 83, + 45, + 169, + 142, + 67, + 105, + 153, + 233, + 153, + 140, + 239, + 147, + 76, + 45, + 210, + 132, + 162, + 161, + 83, + 136, + 232, + 178, + 139, + 223, + 104, + 214, + 9, + 164, + 88, + 78, + 102, + 182, + 133, + 231, + 68, + 22, + 27, + 177, + 33, + 243, + 28, + 115, + 85, + 230, + 59, + 178, + 13, + 181, + 109, + 98, + 171, + 249, + 211, + 119, + 97, + 252, + 21, + 152, + 184, + 68, + 210, + 93, + 230, + 154, + 178, + 165, + 151, + 205, + 36, + 175, + 103, + 75, + 137, + 4, + 161, + 18, + 186, + 124, + 231, + 251, + 25, + 149, + 17, + 100, + 107, + 106, + 118, + 233, + 20, + 47, + 76, + 212, + 87, + 81, + 88, + 29, + 137, + 49, + 172, + 96, + 179, + 243, + 237, + 240, + 73, + 31, + 205, + 133, + 51, + 247, + 238, + 114, + 23, + 134, + 179, + 92, + 136, + 195, + 24, + 78, + 111, + 248, + 79, + 250, + 230, + 202, + 42, + 88, + 175, + 238, + 251, + 19, + 216, + 116, + 108, + 64, + 192, + 31, + 167, + 54, + 93, + 0, + 97, + 184, + 62, + 52, + 14, + 126, + 57, + 195, + 135, + 93, + 48, + 133, + 155, + 194, + 95, + 150, + 132, + 209, + 53, + 133, + 70, + 219, + 169, + 249, + 93, + 200, + 153, + 205, + 66, + 188, + 19, + 223, + 185, + 222, + 165, + 79, + 250, + 184, + 223, + 101, + 168, + 162, + 59, + 244, + 81, + 19, + 85, + 61, + 220, + 72, + 157, + 55, + 195, + 47, + 174, + 93, + 70, + 109, + 250, + 87, + 22, + 243, + 3, + 198, + 173, + 34, + 19, + 243, + 131, + 33, + 84, + 96, + 94, + 131, + 158, + 184, + 236, + 91, + 39, + 221, + 54, + 171, + 32, + 126, + 153, + 52, + 178, + 30, + 121, + 141, + 114, + 43, + 116, + 237, + 234, + 136, + 162, + 181, + 38, + 124, + 176, + 22, + 21, + 47, + 94, + 156, + 76, + 84, + 79, + 134, + 156, + 2, + 198, + 251, + 56, + 72, + 89, + 68, + 195, + 80, + 175, + 129, + 13, + 244, + 120, + 118, + 45, + 23, + 10, + 184, + 72, + 83, + 52, + 222, + 115, + 78, + 195, + 117, + 55, + 65, + 86, + 68, + 184, + 16, + 154, + 125, + 78, + 205, + 118, + 187, + 78, + 3, + 172, + 181, + 182, + 76, + 2, + 195, + 110, + 9, + 225, + 68, + 236, + 146, + 51, + 237, + 33, + 173, + 70, + 58, + 80, + 63, + 14, + 43, + 172, + 167, + 87, + 197, + 64, + 181, + 186, + 127, + 92, + 0, + 29, + 54, + 46, + 245, + 251, + 122, + 12, + 171, + 75, + 5, + 68, + 181, + 113, + 83, + 31, + 76, + 110, + 195, + 129, + 110, + 58, + 69, + 80, + 181, + 66, + 146, + 78, + 137, + 75, + 98, + 192, + 214, + 103, + 250, + 222, + 164, + 230, + 28, + 161, + 147, + 125, + 11, + 39, + 2, + 75, + 216, + 108, + 243, + 124, + 239, + 250, + 58, + 202, + 148, + 59, + 226, + 149, + 156, + 229, + 3, + 137, + 12, + 86, + 51, + 182, + 55, + 201, + 5, + 164, + 212, + 220, + 112, + 156, + 19, + 132, + 207, + 33, + 191, + 19, + 92, + 63, + 149, + 160, + 46, + 36, + 167, + 218, + 75, + 133, + 12, + 251, + 208, + 66, + 44, + 124, + 105, + 162, + 229, + 238, + 212, + 112, + 218, + 184, + 21, + 252, + 135, + 80, + 190, + 70, + 146, + 76, + 129, + 219, + 142, + 76, + 31, + 186, + 168, + 141, + 118, + 123, + 123, + 147, + 151, + 103, + 24, + 154, + 86, + 55, + 96, + 4, + 35, + 182, + 10, + 229, + 105, + 80, + 31, + 95, + 247, + 197, + 57, + 144, + 77, + 146, + 17, + 243, + 122, + 209, + 250, + 201, + 51, + 4, + 24, + 144, + 114, + 44, + 71, + 199, + 180, + 123, + 168, + 30, + 40, + 79, + 214, + 232, + 204, + 160, + 248, + 143, + 183, + 232, + 194, + 126, + 191, + 254, + 196, + 216, + 155, + 199, + 9, + 182, + 3, + 208, + 108, + 84, + 79, + 133, + 142, + 45, + 193, + 136, + 59, + 254, + 194, + 104, + 133, + 138, + 179, + 133, + 182, + 244, + 35, + 40, + 33, + 11, + 100, + 150, + 20, + 172, + 56, + 237, + 219, + 40, + 26, + 183, + 65, + 250, + 38, + 234, + 113, + 243, + 145, + 102, + 99, + 114, + 152, + 50, + 233, + 144, + 14, + 212, + 183, + 121, + 166, + 200, + 23, + 109, + 99, + 65, + 220, + 213, + 231, + 64, + 203, + 92, + 176, + 128, + 19, + 230, + 8, + 165, + 158, + 28, + 175, + 57, + 165, + 133, + 221, + 132, + 44, + 110, + 184, + 3, + 234, + 4, + 57, + 2, + 22, + 159, + 4, + 250, + 252, + 239, + 169, + 215, + 195, + 254, + 92, + 166, + 183, + 51, + 11, + 205, + 196, + 163, + 144, + 237, + 170, + 186, + 34, + 81, + 43, + 63, + 33, + 4, + 245, + 4, + 55, + 79, + 10, + 169, + 103, + 183, + 108, + 182, + 198, + 161, + 28, + 207, + 208, + 132, + 107, + 84, + 138, + 8, + 95, + 47, + 67, + 104, + 225, + 132, + 190, + 228, + 167, + 228, + 68, + 209, + 187, + 16, + 195, + 216, + 242, + 202, + 64, + 192, + 80, + 172, + 84, + 136, + 142, + 228, + 204, + 183, + 177, + 75, + 50, + 228, + 141, + 250, + 210, + 202, + 82, + 63, + 111, + 134, + 20, + 40, + 190, + 140, + 250, + 23, + 219, + 29, + 238, + 21, + 255, + 135, + 173, + 221, + 41, + 68, + 160, + 206, + 73, + 201, + 60, + 180, + 244, + 17, + 110, + 240, + 194, + 137, + 95, + 81, + 106, + 127, + 85, + 202, + 20, + 247, + 95, + 82, + 177, + 51, + 174, + 80, + 73, + 8, + 221, + 18, + 230, + 202, + 160, + 243, + 155, + 202, + 152, + 213, + 72, + 0, + 206, + 220, + 255, + 188, + 181, + 35, + 227, + 84, + 222, + 159, + 146, + 184, + 8, + 180, + 30, + 197, + 209, + 184, + 206, + 70, + 109, + 58, + 72, + 25, + 238, + 117, + 131, + 117, + 5, + 0, + 121, + 198, + 229, + 33, + 10, + 66, + 77, + 18, + 249, + 15, + 63, + 120, + 161, + 163, + 91, + 136, + 10, + 244, + 92, + 83, + 103, + 231, + 137, + 46, + 166, + 7, + 68, + 214, + 51, + 97, + 68, + 134, + 102, + 201, + 64, + 20, + 50, + 78, + 213, + 75, + 144, + 43, + 215, + 14, + 170, + 145, + 35, + 170, + 81, + 225, + 74, + 82, + 55, + 111, + 132, + 57, + 41, + 39, + 117, + 79, + 252, + 89, + 161, + 187, + 65, + 135, + 177, + 132, + 168, + 229, + 75, + 185, + 52, + 94, + 213, + 54, + 76, + 133, + 28, + 163, + 156, + 112, + 114, + 183, + 236, + 19, + 252, + 227, + 178, + 124, + 195, + 253, + 233, + 103, + 11, + 7, + 67, + 140, + 55, + 32, + 102, + 2, + 164, + 153, + 113, + 130, + 25, + 131, + 78, + 82, + 171, + 59, + 25, + 108, + 80, + 43, + 135, + 213, + 163, + 61, + 78, + 56, + 19, + 25, + 169, + 202, + 73, + 139, + 68, + 70, + 164, + 151, + 81, + 107, + 158, + 117, + 82, + 109, + 245, + 59, + 146, + 52, + 184, + 20, + 79, + 248, + 53, + 50, + 88, + 92, + 178, + 30, + 27, + 96, + 27, + 92, + 236, + 234, + 27, + 10, + 218, + 61, + 111, + 64, + 214, + 5, + 7, + 171, + 74, + 253, + 171, + 20, + 231, + 89, + 185, + 222, + 221, + 204, + 16, + 72, + 115, + 131, + 63, + 95, + 29, + 162, + 107, + 70, + 240, + 95, + 195, + 28, + 46, + 179, + 205, + 240, + 241, + 117, + 136, + 211, + 72, + 114, + 109, + 63, + 65, + 213, + 251, + 79, + 98, + 249, + 200, + 253, + 220, + 46, + 43, + 164, + 235, + 124, + 234, + 116, + 16, + 14, + 158, + 92, + 176, + 148, + 8, + 45, + 183, + 192, + 123, + 147, + 77, + 177, + 163, + 210, + 242, + 130, + 161, + 119, + 174, + 40, + 245, + 40, + 191, + 196, + 25, + 28, + 250, + 99, + 85, + 230, + 112, + 51, + 114, + 29, + 235, + 153, + 51, + 97, + 193, + 13, + 232, + 196, + 165, + 139, + 107, + 151, + 152, + 145, + 34, + 170, + 136, + 84, + 92, + 225, + 66, + 40, + 161, + 146, + 153, + 255, + 25, + 55, + 160, + 244, + 108, + 42, + 76, + 169, + 29, + 141, + 62, + 199, + 182, + 80, + 107, + 79, + 47, + 198, + 41, + 106, + 40, + 184, + 16, + 77, + 164, + 46, + 4, + 220, + 15, + 241, + 66, + 63, + 14, + 48, + 234, + 251, + 74, + 243, + 7, + 78, + 214, + 143, + 101, + 11, + 70, + 183, + 137, + 184, + 145, + 219, + 46, + 70, + 209, + 56, + 247, + 179, + 133, + 12, + 69, + 127, + 79, + 27, + 46, + 73, + 163, + 240, + 215, + 55, + 238, + 51, + 20, + 150, + 251, + 70, + 238, + 79, + 124, + 157, + 168, + 90, + 204, + 60, + 116, + 24, + 26, + 69, + 235, + 80, + 152, + 109, + 215, + 91, + 234, + 108, + 145, + 122, + 120, + 66, + 53, + 69, + 5, + 252, + 109, + 226, + 91, + 198, + 171, + 237, + 233, + 186, + 160, + 133, + 90, + 120, + 198, + 183, + 96, + 90, + 52, + 96, + 141, + 13, + 28, + 170, + 180, + 244, + 175, + 123, + 148, + 201, + 128, + 14, + 182, + 164, + 58, + 217, + 148, + 140, + 195, + 202, + 18, + 15, + 234, + 19, + 216, + 249, + 220, + 50, + 17, + 50, + 180, + 105, + 171, + 59, + 48, + 244, + 1, + 209, + 158, + 23, + 189, + 13, + 193, + 99, + 192, + 197, + 61, + 45, + 36, + 196, + 212, + 47, + 71, + 91, + 98, + 174, + 13, + 243, + 2, + 188, + 79, + 179, + 184, + 17, + 78, + 117, + 26, + 186, + 105, + 167, + 222, + 99, + 242, + 9, + 37, + 19, + 186, + 107, + 12, + 9, + 223, + 118, + 254, + 69, + 6, + 221, + 191, + 82, + 104, + 154, + 187, + 243, + 228, + 202, + 12, + 205, + 238, + 35, + 145, + 24, + 252, + 134, + 7, + 189, + 167, + 161, + 184, + 201, + 214, + 33, + 91, + 221, + 23, + 252, + 132, + 106, + 195, + 3, + 113, + 6, + 137, + 149, + 191, + 37, + 166, + 5, + 227, + 167, + 80, + 124, + 136, + 58, + 24, + 2, + 247, + 80, + 32, + 224, + 120, + 37, + 159, + 175, + 14, + 160, + 85, + 27, + 180, + 101, + 238, + 195, + 253, + 64, + 108, + 47, + 94, + 152, + 246, + 47, + 170, + 149, + 3, + 211, + 54, + 254, + 5, + 98, + 104, + 53, + 198, + 234, + 178, + 100, + 208, + 242, + 11, + 120, + 158, + 225, + 57, + 37, + 22, + 108, + 236, + 71, + 36, + 78, + 64, + 227, + 227, + 66, + 45, + 124, + 143, + 202, + 208, + 229, + 248, + 15, + 18, + 82, + 170, + 77, + 91, + 142, + 234, + 198, + 246, + 74, + 177, + 61, + 97, + 26, + 150, + 200, + 64, + 219, + 148, + 210, + 135, + 242, + 77, + 63, + 115 + ], + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 128, + 17, + 20, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 3, + 0, + 0, + 0, + 64, + 43, + 62, + 62, + 26, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 184, + 20, + 60, + 85, + 146, + 156, + 220, + 54, + 238, + 250, + 54, + 189, + 63, + 243, + 239, + 78, + 146, + 82, + 26, + 186, + 182, + 80, + 197, + 223, + 148, + 7, + 77, + 153, + 71, + 2, + 36, + 48, + 168, + 196, + 232, + 94, + 84, + 83, + 103, + 83, + 198, + 212, + 87, + 205, + 204, + 4, + 122, + 216, + 114, + 239, + 216, + 146, + 211, + 254, + 207, + 204, + 254, + 221, + 182, + 29, + 253, + 116, + 178, + 225, + 23, + 138, + 186, + 102, + 175, + 69, + 27, + 241, + 64, + 19, + 212, + 178, + 55, + 227, + 197, + 88, + 114, + 69, + 134, + 75, + 201, + 215, + 123, + 254, + 37, + 226, + 207, + 232, + 241, + 43, + 143, + 157, + 135, + 67, + 229, + 189, + 111, + 83, + 59, + 134, + 30, + 189, + 22, + 194, + 217, + 60, + 92, + 178, + 177, + 176, + 11, + 59, + 238, + 220, + 45, + 6, + 241, + 52, + 81, + 151, + 185, + 72, + 137, + 141, + 173, + 169, + 151, + 8, + 123, + 146, + 101, + 182, + 147, + 179, + 118, + 211, + 65, + 94, + 234, + 247, + 162, + 143, + 10, + 61, + 213, + 183, + 19, + 29, + 97, + 238, + 175, + 23, + 111, + 217, + 34, + 41, + 231, + 184, + 7, + 0, + 7, + 189, + 182, + 144, + 217, + 147, + 239, + 134, + 204, + 90, + 27, + 172, + 43, + 148, + 247, + 160, + 66, + 81, + 251, + 63, + 183, + 0, + 72, + 99, + 157, + 114, + 132, + 171, + 0, + 228, + 67, + 189, + 50, + 107, + 182, + 8, + 240, + 33, + 23, + 247, + 42, + 170, + 34, + 48, + 123, + 142, + 136, + 93, + 171, + 128, + 114, + 207, + 189, + 221, + 178, + 188, + 42, + 202, + 31, + 242, + 47, + 1, + 177, + 59, + 48, + 166, + 169, + 148, + 39, + 228, + 99, + 228, + 188, + 254, + 94, + 5, + 163, + 178, + 248, + 9, + 224, + 224, + 206, + 99, + 106, + 123, + 62, + 97, + 8, + 68, + 59, + 141, + 205, + 190, + 155, + 9, + 26, + 149, + 211, + 223, + 226, + 92, + 170, + 183, + 61, + 94, + 30, + 241, + 98, + 73, + 2, + 217, + 12, + 52, + 4, + 49, + 110, + 95, + 175, + 222, + 49, + 126, + 158, + 154, + 186, + 222, + 107, + 39, + 97, + 44, + 227, + 86, + 18, + 181, + 225, + 153, + 28, + 209, + 240, + 206, + 232, + 79, + 76, + 157, + 217, + 167, + 210, + 59, + 32, + 199, + 153, + 118, + 87, + 80, + 143, + 124, + 247, + 253, + 184, + 65, + 8, + 37, + 169, + 83, + 29, + 23, + 238, + 162, + 248, + 85, + 110, + 1, + 106, + 153, + 145, + 201, + 81, + 67, + 96, + 118, + 208, + 38, + 82, + 70, + 243, + 36, + 102, + 191, + 109, + 172, + 118, + 112, + 155, + 62, + 20, + 166, + 224, + 123, + 212, + 241, + 146, + 154, + 10, + 2, + 30, + 39, + 27, + 98, + 16, + 78, + 166, + 191, + 100, + 83, + 60, + 13, + 25, + 71, + 171, + 42, + 158, + 64, + 25, + 145, + 36, + 114, + 23, + 116, + 22, + 108, + 151, + 142, + 187, + 34, + 236, + 86, + 207, + 35, + 97, + 242, + 219, + 104, + 191, + 155, + 233, + 91, + 33, + 132, + 75, + 204, + 176, + 213, + 49, + 67, + 105, + 214, + 171, + 220, + 250, + 91, + 95, + 33, + 35, + 70, + 150, + 210, + 215, + 164, + 237, + 233, + 24, + 35, + 31, + 185, + 236, + 220, + 57, + 157, + 90, + 130, + 108, + 6, + 73, + 136, + 179, + 149, + 199, + 182, + 70, + 106, + 167, + 97, + 251, + 183, + 177, + 99, + 214, + 146, + 20, + 36, + 131, + 233, + 53, + 194, + 94, + 227, + 75, + 238, + 89, + 95, + 159, + 65, + 170, + 211, + 1, + 112, + 27, + 93, + 237, + 184, + 67, + 72, + 226, + 17, + 162, + 206, + 37, + 119, + 253, + 85, + 32, + 83, + 205, + 12, + 162, + 188, + 208, + 218, + 205, + 132, + 205, + 240, + 244, + 229, + 170, + 108, + 213, + 53, + 216, + 163, + 138, + 195, + 42, + 168, + 170, + 171, + 107, + 104, + 19, + 140, + 29, + 130, + 68, + 248, + 205, + 181, + 213, + 191, + 113, + 154, + 112, + 84, + 222, + 203, + 220, + 255, + 53, + 65, + 182, + 30, + 107, + 35, + 114, + 186, + 218, + 170, + 10, + 109, + 42, + 25, + 125, + 48, + 187, + 158, + 207, + 134, + 142, + 190, + 94, + 160, + 29, + 153, + 84, + 237, + 255, + 26, + 245, + 231, + 21, + 244, + 106, + 26, + 143, + 236, + 68, + 35, + 203, + 211, + 21, + 97, + 22, + 1, + 69, + 127, + 105, + 174, + 122, + 125, + 53, + 109, + 28, + 106, + 234, + 92, + 0, + 229, + 206, + 132, + 231, + 21, + 116, + 35, + 182, + 253, + 11, + 30, + 80, + 145, + 200, + 206, + 4, + 147, + 116, + 90, + 164, + 250, + 59, + 253, + 253, + 133, + 220, + 246, + 81, + 111, + 56, + 24, + 219, + 242, + 240, + 39, + 243, + 227, + 31, + 96, + 18, + 148, + 238, + 145, + 199, + 152, + 184, + 17, + 23, + 65, + 86, + 164, + 139, + 176, + 87, + 26, + 177, + 47, + 148, + 100, + 206, + 60, + 11, + 210, + 32, + 56, + 72, + 36, + 101, + 27, + 92, + 180, + 69, + 48, + 20, + 233, + 169, + 41, + 142, + 246, + 196, + 165, + 88, + 27, + 188, + 154, + 63, + 55, + 107, + 160, + 177, + 51, + 246, + 10, + 171, + 76, + 218, + 197, + 77, + 162, + 218, + 22, + 172, + 161, + 191, + 84, + 105, + 160, + 212, + 45, + 211, + 26, + 8, + 96, + 237, + 23, + 80, + 222, + 6, + 55, + 112, + 91, + 11, + 202, + 31, + 73, + 80, + 21, + 18, + 128, + 153, + 208, + 203, + 136, + 213, + 64, + 214, + 76, + 168, + 185, + 61, + 107, + 114, + 43, + 148, + 234, + 132, + 223, + 52, + 175, + 203, + 234, + 220, + 21, + 93, + 126, + 173, + 247, + 138, + 106, + 149, + 239, + 154, + 221, + 164, + 26, + 30, + 106, + 122, + 97, + 102, + 25, + 140, + 203, + 68, + 142, + 46, + 170, + 69, + 99, + 35, + 210, + 57, + 134, + 160, + 147, + 196, + 253, + 86, + 11, + 237, + 103, + 223, + 169, + 56, + 162, + 190, + 121, + 61, + 180, + 20, + 46, + 53, + 50, + 215, + 203, + 96, + 184, + 66, + 203, + 73, + 47, + 201, + 220, + 167, + 166, + 25, + 69, + 199, + 92, + 54, + 221, + 151, + 217, + 236, + 82, + 60, + 131, + 235, + 247, + 153, + 27, + 210, + 89, + 231, + 166, + 137, + 168, + 187, + 98, + 184, + 120, + 184, + 39, + 151, + 16, + 189, + 125, + 159, + 217, + 218, + 74, + 194, + 69, + 103, + 51, + 48, + 205, + 10, + 112, + 48, + 170, + 171, + 253, + 83, + 195, + 152, + 172, + 197, + 116, + 186, + 251, + 105, + 157, + 245, + 97, + 237, + 110, + 158, + 88, + 124, + 189, + 152, + 124, + 216, + 200, + 93, + 44, + 84, + 122, + 254, + 231, + 224, + 23, + 39, + 125, + 145, + 116, + 53, + 27, + 185, + 246, + 65, + 39, + 197, + 171, + 203, + 142, + 68, + 19, + 236, + 168, + 43, + 190, + 49, + 116, + 66, + 217, + 105, + 93, + 137, + 73, + 155, + 12, + 249, + 1, + 65, + 125, + 38, + 242, + 239, + 104, + 112, + 116, + 176, + 147, + 172, + 36, + 137, + 77, + 175, + 86, + 221, + 236, + 164, + 103, + 140, + 230, + 114, + 24, + 213, + 51, + 221, + 241, + 201, + 55, + 122, + 99, + 230, + 109, + 133, + 238, + 195, + 35, + 70, + 237, + 109, + 192, + 184, + 6, + 66, + 23, + 122, + 86, + 106, + 219, + 192, + 73, + 111, + 85, + 210, + 187, + 28, + 45, + 95, + 226, + 131, + 196, + 108, + 42, + 103, + 225, + 9, + 33, + 150, + 109, + 225, + 156, + 197, + 45, + 74, + 230, + 43, + 100, + 243, + 251, + 55, + 228, + 26, + 16, + 228, + 76, + 28, + 118, + 43, + 195, + 187, + 70, + 9, + 145, + 170, + 229, + 93, + 184, + 49, + 33, + 132, + 229, + 106, + 179, + 20, + 80, + 39, + 229, + 192, + 206, + 66, + 89, + 193, + 105, + 118, + 208, + 143, + 29, + 202, + 116, + 227, + 162, + 226, + 33, + 9, + 31, + 48, + 145, + 52, + 147, + 190, + 57, + 35, + 34, + 171, + 9, + 159, + 203, + 67, + 10, + 41, + 151, + 183, + 165, + 14, + 14, + 226, + 32, + 48, + 133, + 37, + 4, + 153, + 101, + 46, + 28, + 239, + 239, + 100, + 143, + 167, + 59, + 29, + 215, + 63, + 193, + 190, + 183, + 252, + 134, + 192, + 32, + 124, + 170, + 8, + 221, + 145, + 29, + 69, + 179, + 188, + 91, + 73, + 61, + 171, + 118, + 150, + 136, + 151, + 86, + 198, + 211, + 90, + 198, + 135, + 210, + 251, + 104, + 255, + 205, + 65, + 249, + 16, + 184, + 65, + 107, + 224, + 34, + 91, + 18, + 113, + 204, + 169, + 209, + 136, + 87, + 235, + 56, + 221, + 100, + 152, + 224, + 145, + 216, + 185, + 111, + 221, + 122, + 32, + 23, + 100, + 129, + 65, + 249, + 143, + 146, + 103, + 202, + 75, + 64, + 212, + 182, + 129, + 140, + 210, + 57, + 78, + 99, + 89, + 185, + 199, + 251, + 71, + 106, + 120, + 137, + 4, + 70, + 181, + 141, + 16, + 160, + 12, + 56, + 2, + 33, + 155, + 210, + 188, + 198, + 95, + 140, + 113, + 66, + 230, + 61, + 235, + 107, + 52, + 161, + 106, + 52, + 14, + 135, + 40, + 123, + 141, + 183, + 73, + 92, + 17, + 8, + 109, + 222, + 130, + 112, + 41, + 193, + 219, + 193, + 41, + 192, + 37, + 80, + 218, + 62, + 193, + 183, + 248, + 151, + 66, + 36, + 249, + 85, + 145, + 146, + 50, + 80, + 201, + 134, + 49, + 162, + 112, + 38, + 143, + 86, + 24, + 37, + 72, + 154, + 95, + 9, + 216, + 36, + 2, + 140, + 218, + 91, + 145, + 224, + 233, + 210, + 111, + 86, + 26, + 7, + 140, + 155, + 117, + 175, + 110, + 125, + 183, + 182, + 243, + 3, + 21, + 200, + 108, + 125, + 173, + 232, + 123, + 218, + 184, + 18, + 68, + 143, + 198, + 4, + 184, + 19, + 16, + 135, + 12, + 248, + 64, + 248, + 132, + 208, + 32, + 236, + 217, + 85, + 6, + 81, + 166, + 209, + 27, + 72, + 67, + 189, + 192, + 242, + 131, + 14, + 211, + 99, + 28, + 116, + 191, + 114, + 32, + 238, + 21, + 7, + 36, + 254, + 204, + 70, + 172, + 25, + 123, + 168, + 253, + 201, + 152, + 109, + 137, + 223, + 86, + 162, + 56, + 207, + 193, + 4, + 16, + 142, + 84, + 39, + 133, + 34, + 62, + 34, + 0, + 226, + 51, + 133, + 104, + 79, + 166, + 79, + 147, + 201, + 181, + 170, + 96, + 50, + 251, + 78, + 81, + 108, + 119, + 169, + 171, + 211, + 188, + 83, + 167, + 211, + 60, + 68, + 66, + 250, + 130, + 19, + 12, + 181, + 104, + 46, + 154, + 42, + 150, + 118, + 8, + 254, + 154, + 90, + 200, + 221, + 74, + 9, + 176, + 169, + 168, + 157, + 177, + 117, + 201, + 68, + 67, + 225, + 74, + 117, + 208, + 70, + 49, + 18, + 120, + 247, + 26, + 43, + 229, + 66, + 248, + 245, + 0, + 101, + 125, + 182, + 99, + 191, + 193, + 240, + 234, + 198, + 180, + 237, + 151, + 164, + 137, + 249, + 205, + 155, + 165, + 184, + 61, + 231, + 163, + 5, + 81, + 35, + 199, + 188, + 240, + 40, + 40, + 5, + 77, + 105, + 232, + 136, + 29, + 65, + 51, + 157, + 199, + 55, + 192, + 233, + 113, + 85, + 52, + 179, + 64, + 111, + 189, + 190, + 94, + 173, + 172, + 246, + 113, + 69, + 96, + 56, + 242, + 33, + 118, + 244, + 228, + 144, + 200, + 172, + 184, + 102, + 84, + 78, + 207, + 113, + 132, + 160, + 25, + 12, + 140, + 124, + 228, + 61, + 233, + 150, + 7, + 183, + 27, + 253, + 215, + 178, + 57, + 221, + 77, + 78, + 19, + 2, + 205, + 57, + 3, + 47, + 25, + 0, + 191, + 147, + 70, + 136, + 79, + 121, + 176, + 143, + 149, + 65, + 25, + 85, + 145, + 76, + 227, + 64, + 195, + 250, + 101, + 3, + 140, + 25, + 166, + 229, + 183, + 61, + 220, + 241, + 167, + 136, + 116, + 78, + 146, + 102, + 99, + 182, + 192, + 205, + 205, + 88, + 104, + 161, + 230, + 141, + 120, + 239, + 60, + 139, + 198, + 24, + 105, + 250, + 200, + 254, + 9, + 172, + 70, + 42, + 135, + 240, + 102, + 204, + 137, + 239, + 37, + 85, + 10, + 222, + 83, + 51, + 235, + 120, + 57, + 202, + 42, + 129, + 201, + 206, + 184, + 194, + 160, + 99, + 4, + 53, + 240, + 45, + 136, + 110, + 171, + 253, + 182, + 23, + 225, + 46, + 126, + 195, + 18, + 63, + 19, + 73, + 160, + 91, + 193, + 217, + 104, + 159, + 7, + 85, + 115, + 152, + 23, + 122, + 12, + 36, + 34, + 173, + 243, + 193, + 57, + 190, + 157, + 71, + 150, + 38, + 30, + 248, + 252, + 55, + 112, + 97, + 121, + 218, + 56, + 37, + 114, + 182, + 174, + 214, + 201, + 193, + 9, + 244, + 10, + 182, + 27, + 247, + 55, + 74, + 100, + 97, + 9, + 165, + 59, + 134, + 81, + 44, + 189, + 192, + 184, + 107, + 42, + 5, + 1, + 219, + 70, + 201, + 219, + 140, + 132, + 170, + 175, + 154, + 94, + 112, + 173, + 38, + 211, + 171, + 221, + 251, + 250, + 21, + 145, + 211, + 68, + 18, + 38, + 225, + 41, + 170, + 201, + 189, + 241, + 133, + 31, + 120, + 211, + 99, + 29, + 90, + 66, + 253, + 216, + 223, + 79, + 84, + 69, + 16, + 79, + 16, + 152, + 70, + 246, + 226, + 40, + 68, + 68, + 36, + 190, + 247, + 104, + 228, + 219, + 129, + 84, + 43, + 138, + 79, + 201, + 30, + 166, + 241, + 221, + 35, + 16, + 248, + 6, + 12, + 205, + 184, + 66, + 3, + 224, + 206, + 221, + 179, + 217, + 224, + 14, + 69, + 234, + 49, + 182, + 213, + 178, + 233, + 1, + 138, + 202, + 104, + 98, + 203, + 137, + 16, + 184, + 32, + 48, + 198, + 173, + 204, + 193, + 31, + 198, + 212, + 30, + 132, + 45, + 9, + 168, + 114, + 106, + 10, + 125, + 126, + 10, + 81, + 182, + 96, + 213, + 30, + 104, + 190, + 178, + 193, + 170, + 240, + 149, + 105, + 38, + 6, + 128, + 72, + 166, + 181, + 204, + 70, + 1, + 143, + 1, + 225, + 70, + 142, + 108, + 117, + 218, + 38, + 69, + 253, + 82, + 186, + 45, + 107, + 77, + 38, + 207, + 219, + 95, + 71, + 184, + 42, + 229, + 50, + 146, + 213, + 135, + 29, + 96, + 202, + 105, + 128, + 209, + 11, + 244, + 3, + 50, + 23, + 135, + 233, + 84, + 114, + 55, + 88, + 79, + 72, + 57, + 75, + 79, + 28, + 53, + 60, + 61, + 202, + 202, + 39, + 121, + 170, + 192, + 129, + 14, + 74, + 45, + 179, + 184, + 55, + 26, + 155, + 174, + 93, + 9, + 217, + 9, + 146, + 202, + 22, + 207, + 65, + 126, + 1, + 174, + 93, + 118, + 251, + 217, + 192, + 60, + 141, + 143, + 157, + 237, + 203, + 184, + 2, + 189, + 101, + 52, + 245, + 162, + 229, + 62, + 29, + 207, + 218, + 38, + 124, + 99, + 159, + 86, + 166, + 111, + 1, + 201, + 222, + 129, + 32, + 114, + 44, + 76, + 48, + 26, + 101, + 80, + 121, + 116, + 240, + 149, + 224, + 49, + 114, + 65, + 40, + 30, + 177, + 188, + 64, + 76, + 94, + 85, + 147, + 69, + 202, + 59, + 75, + 56, + 134, + 240, + 0, + 57, + 244, + 97, + 55, + 36, + 241, + 149, + 210, + 42, + 235, + 222, + 43, + 60, + 186, + 212, + 220, + 148, + 253, + 237, + 27, + 244, + 254, + 113, + 137, + 176, + 70, + 51, + 145, + 70, + 121, + 206, + 101, + 128, + 21, + 203, + 50, + 175, + 132, + 236, + 45, + 25, + 5, + 255, + 101, + 108, + 158, + 86, + 108, + 243, + 170, + 90, + 230, + 235, + 124, + 167, + 89, + 192, + 237, + 185, + 249, + 30, + 69, + 18, + 220, + 110, + 28, + 138, + 90, + 175, + 134, + 47, + 197, + 148, + 247, + 45, + 55, + 132, + 94, + 80, + 1, + 163, + 7, + 110, + 11, + 88, + 45, + 32, + 111, + 82, + 223, + 42, + 250, + 186, + 193, + 18, + 194, + 153, + 128, + 133, + 174, + 186, + 227, + 90, + 177, + 128, + 184, + 18, + 31, + 160, + 232, + 162, + 130, + 215, + 113, + 192, + 9, + 179, + 236, + 2, + 26, + 52, + 233, + 2, + 251, + 92, + 206, + 105, + 137, + 184, + 138, + 147, + 229, + 252, + 197, + 14, + 172, + 208, + 82, + 58, + 76, + 30, + 71, + 100, + 218, + 197, + 46, + 43, + 240, + 246, + 79, + 37, + 212, + 100, + 97, + 20, + 236, + 238, + 56, + 7, + 172, + 233, + 164, + 68, + 43, + 231, + 102, + 246, + 68, + 153, + 52, + 90, + 33, + 120, + 207, + 68, + 177, + 179, + 131, + 70, + 249, + 69, + 3, + 73, + 86, + 166, + 246, + 77, + 222, + 32, + 245, + 240, + 204, + 244, + 125, + 157, + 83, + 239, + 188, + 171, + 27, + 39, + 241, + 91, + 35, + 241, + 161, + 255, + 59, + 161, + 224, + 179, + 65, + 19, + 38, + 164, + 52, + 24, + 234, + 21, + 171, + 189, + 68, + 198, + 219, + 52, + 255, + 250, + 79, + 190, + 194, + 3, + 66, + 102, + 53, + 128, + 196, + 2, + 234, + 81, + 60, + 144, + 245, + 35, + 86, + 63, + 218, + 248, + 118, + 125, + 6, + 234, + 206, + 160, + 40, + 12, + 82, + 137, + 9, + 246, + 20, + 9, + 85, + 90, + 167, + 205, + 131, + 184, + 65, + 140, + 214, + 200, + 142, + 133, + 216, + 144, + 230, + 60, + 148, + 238, + 134, + 163, + 99, + 88, + 174, + 21, + 77, + 49, + 28, + 207, + 15, + 172, + 18, + 227, + 137, + 11, + 229, + 0, + 133, + 205, + 29, + 10, + 130, + 147, + 138, + 132, + 93, + 93, + 131, + 238, + 254, + 20, + 255, + 221, + 11, + 49, + 106, + 180, + 86, + 152, + 115, + 21, + 248, + 35, + 39, + 234, + 211, + 137, + 26, + 42, + 215, + 244, + 152, + 19, + 68, + 7, + 58, + 212, + 82, + 81, + 233, + 6, + 221, + 127, + 27, + 170, + 70, + 44, + 17, + 246, + 26, + 197, + 143, + 218, + 144, + 35, + 24, + 94, + 223, + 192, + 12, + 110, + 7, + 79, + 47, + 210, + 177, + 248, + 181, + 35, + 80, + 33, + 96, + 94, + 86, + 14, + 203, + 25, + 44, + 104, + 71, + 50, + 151, + 129, + 77, + 94, + 241, + 102, + 224, + 154, + 191, + 92, + 40, + 85, + 40, + 139, + 43, + 73, + 24, + 161, + 173, + 80, + 113, + 204, + 130, + 243, + 77, + 139, + 107, + 109, + 249, + 25, + 131, + 60, + 201, + 34, + 96, + 76, + 155, + 115, + 58, + 187, + 133, + 126, + 132, + 155, + 54, + 195, + 184, + 27, + 146, + 211, + 118, + 22, + 121, + 144, + 121, + 73, + 122, + 47, + 223, + 52, + 5, + 189, + 223, + 228, + 185, + 131, + 133, + 147, + 255, + 242, + 23, + 112, + 233, + 157, + 88, + 167, + 247, + 103, + 225, + 238, + 157, + 111, + 186, + 8, + 160, + 70, + 141, + 152, + 204, + 123, + 143, + 187, + 173, + 122, + 212, + 89, + 154, + 28, + 143, + 206, + 196, + 154, + 220, + 124, + 240, + 193, + 55, + 30, + 118, + 190, + 31, + 70, + 222, + 27, + 98, + 164, + 227, + 116, + 76, + 143, + 52, + 77, + 53, + 31, + 159, + 93, + 205, + 155, + 12, + 72, + 161, + 76, + 253, + 228, + 89, + 125, + 93, + 188, + 230, + 168, + 141, + 171, + 125, + 21, + 119, + 154, + 205, + 203, + 9, + 178, + 184, + 53, + 246, + 233, + 144, + 139, + 169, + 209, + 202, + 89, + 72, + 230, + 138, + 13, + 92, + 84, + 65, + 37, + 59, + 115, + 27, + 12, + 11, + 7, + 4, + 168, + 97, + 25, + 40, + 73, + 172, + 128, + 236, + 27, + 92, + 103, + 120, + 242, + 87, + 12, + 85, + 178, + 226, + 21, + 156, + 73, + 139, + 111, + 197, + 198, + 147, + 134, + 17, + 24, + 45, + 146, + 168, + 184, + 17, + 71, + 87, + 36, + 86, + 49, + 192, + 23, + 173, + 26, + 67, + 252, + 149, + 220, + 69, + 39, + 0, + 152, + 251, + 132, + 225, + 150, + 167, + 252, + 40, + 103, + 183, + 189, + 204, + 22, + 191, + 232, + 54, + 74, + 65, + 191, + 198, + 172, + 214, + 66, + 142, + 178, + 161, + 183, + 126, + 107, + 8, + 94, + 138, + 209, + 74, + 139, + 243, + 179, + 250, + 167, + 58, + 224, + 122, + 64, + 250, + 202, + 198, + 47, + 57, + 236, + 151, + 110, + 63, + 34, + 191, + 229, + 21, + 111, + 179, + 192, + 160, + 154, + 108, + 60, + 87, + 154, + 135, + 149, + 126, + 181, + 98, + 218, + 27, + 245, + 44, + 153, + 0, + 209, + 26, + 93, + 162, + 92, + 176, + 76, + 64, + 53, + 145, + 54, + 139, + 197, + 58, + 39, + 143, + 193, + 108, + 190, + 93, + 185, + 176, + 93, + 194, + 119, + 243, + 154, + 146, + 245, + 194, + 108, + 252, + 3, + 200, + 29, + 168, + 32, + 243, + 249, + 176, + 129, + 210, + 235, + 3, + 144, + 167, + 71, + 150, + 88, + 43, + 123, + 56, + 40, + 93, + 246, + 255, + 167, + 113, + 145, + 198, + 28, + 178, + 49, + 90, + 1, + 129, + 173, + 184, + 66, + 118, + 238, + 224, + 178, + 53, + 205, + 163, + 31, + 248, + 83, + 195, + 231, + 183, + 158, + 86, + 105, + 147, + 165, + 66, + 243, + 95, + 176, + 45, + 203, + 37, + 64, + 139, + 34, + 82, + 7, + 155, + 247, + 206, + 30, + 96, + 17, + 241, + 89, + 61, + 27, + 237, + 203, + 95, + 206, + 190, + 77, + 125, + 52, + 112, + 140, + 103, + 169, + 170, + 116, + 119, + 51, + 117, + 146, + 115, + 184, + 109, + 16, + 200, + 5, + 160, + 146, + 163, + 70, + 190, + 69, + 15, + 174, + 253, + 29, + 89, + 112, + 201, + 44, + 244, + 132, + 177, + 194, + 122, + 167, + 11, + 203, + 29, + 21, + 171, + 125, + 111, + 85, + 227, + 177, + 13, + 159, + 238, + 39, + 117, + 135, + 114, + 108, + 209, + 110, + 109, + 117, + 67, + 143, + 59, + 3, + 139, + 25, + 50, + 158, + 167, + 136, + 107, + 69, + 103, + 159, + 165, + 142, + 92, + 130, + 117, + 57, + 70, + 68, + 195, + 99, + 48, + 210, + 247, + 9, + 87, + 201, + 133, + 113, + 27, + 44, + 87, + 124, + 28, + 184, + 195, + 228, + 130, + 206, + 26, + 206, + 182, + 160, + 157, + 255, + 19, + 8, + 11, + 179, + 83, + 184, + 27, + 144, + 110, + 223, + 69, + 108, + 157, + 100, + 5, + 95, + 176, + 67, + 47, + 222, + 37, + 222, + 33, + 157, + 105, + 93, + 16, + 122, + 178, + 158, + 115, + 40, + 83, + 191, + 41, + 130, + 28, + 149, + 124, + 184, + 240, + 196, + 201, + 221, + 1, + 130, + 105, + 104, + 252, + 232, + 213, + 211, + 210, + 73, + 179, + 104, + 33, + 15, + 83, + 6, + 226, + 232, + 34, + 176, + 34, + 165, + 136, + 138, + 153, + 213, + 110, + 72, + 239, + 146, + 135, + 78, + 108, + 58, + 100, + 8, + 25, + 87, + 104, + 91, + 195, + 216, + 50, + 32, + 6, + 129, + 231, + 66, + 215, + 139, + 160, + 26, + 18, + 63, + 16, + 226, + 234, + 41, + 70, + 77, + 121, + 180, + 236, + 43, + 216, + 45, + 85, + 180, + 145, + 155, + 29, + 204, + 223, + 176, + 145, + 74, + 232, + 113, + 207, + 155, + 116, + 141, + 205, + 250, + 113, + 241, + 133, + 29, + 58, + 252, + 4, + 26, + 101, + 179, + 68, + 189, + 17, + 185, + 199, + 18, + 198, + 114, + 25, + 7, + 252, + 69, + 216, + 111, + 61, + 155, + 13, + 42, + 18, + 191, + 98, + 119, + 157, + 194, + 18, + 68, + 190, + 109, + 184, + 23, + 66, + 204, + 4, + 172, + 167, + 199, + 145, + 148, + 209, + 196, + 192, + 253, + 54, + 101, + 189, + 253, + 93, + 99, + 227, + 88, + 38, + 27, + 155, + 76, + 123, + 159, + 115, + 48, + 139, + 1, + 7, + 145, + 56, + 164, + 158, + 213, + 214, + 105, + 23, + 49, + 26, + 113, + 145, + 214, + 36, + 81, + 185, + 130, + 147, + 139, + 39, + 122, + 201, + 125, + 116, + 66, + 18, + 193, + 91, + 78, + 150, + 53, + 20, + 106, + 7, + 21, + 199, + 22, + 250, + 30, + 117, + 135, + 62, + 11, + 40, + 123, + 116, + 126, + 213, + 127, + 95, + 247, + 34, + 184, + 197, + 209, + 245, + 29, + 140, + 254, + 145, + 80, + 156, + 69, + 122, + 219, + 137, + 196, + 146, + 233, + 68, + 18, + 172, + 103, + 232, + 238, + 220, + 30, + 191, + 230, + 141, + 133, + 177, + 91, + 172, + 253, + 2, + 191, + 204, + 247, + 74, + 231, + 149, + 42, + 4, + 121, + 180, + 47, + 82, + 98, + 243, + 205, + 205, + 116, + 128, + 22, + 46, + 222, + 116, + 230, + 122, + 172, + 147, + 127, + 50, + 106, + 55, + 203, + 149, + 188, + 173, + 178, + 167, + 37, + 92, + 240, + 28, + 195, + 48, + 184, + 27, + 210, + 2, + 232, + 190, + 172, + 128, + 198, + 190, + 203, + 228, + 120, + 199, + 150, + 64, + 217, + 49, + 41, + 242, + 239, + 184, + 115, + 101, + 77, + 255, + 49, + 160, + 146, + 178, + 89, + 116, + 96, + 57, + 251, + 143, + 210, + 196, + 88, + 128, + 94, + 131, + 174, + 202, + 205, + 204, + 106, + 250, + 142, + 223, + 170, + 180, + 87, + 128, + 182, + 221, + 54, + 125, + 86, + 166, + 111, + 220, + 232, + 193, + 214, + 247, + 173, + 202, + 245, + 242, + 67, + 155, + 233, + 91, + 29, + 27, + 174, + 43, + 63, + 147, + 231, + 52, + 119, + 134, + 62, + 72, + 135, + 252, + 39, + 182, + 147, + 11, + 134, + 183, + 23, + 160, + 35, + 29, + 231, + 36, + 233, + 97, + 55, + 240, + 142, + 199, + 199, + 18, + 30, + 27, + 120, + 25, + 15, + 0, + 170, + 230, + 197, + 27, + 17, + 161, + 242, + 68, + 124, + 71, + 216, + 138, + 229, + 96, + 253, + 66, + 199, + 218, + 113, + 19, + 41, + 50, + 239, + 190, + 161, + 79, + 179, + 91, + 109, + 138, + 48, + 122, + 216, + 106, + 64, + 129, + 180, + 46, + 236, + 34, + 125, + 251, + 41, + 142, + 2, + 221, + 30, + 184, + 17, + 77, + 62, + 112, + 87, + 243, + 176, + 66, + 204, + 7, + 220, + 42, + 39, + 249, + 116, + 185, + 5, + 24, + 67, + 115, + 3, + 4, + 144, + 178, + 232, + 192, + 23, + 192, + 108, + 163, + 221, + 180, + 24, + 241, + 214, + 204, + 159, + 217, + 194, + 65, + 206, + 47, + 169, + 53, + 150, + 184, + 100, + 109, + 143, + 150, + 159, + 116, + 37, + 119, + 50, + 117, + 0, + 145, + 77, + 58, + 232, + 110, + 39, + 131, + 100, + 153, + 185, + 9, + 178, + 153, + 71, + 49, + 237, + 183, + 92, + 46, + 174, + 94, + 67, + 130, + 217, + 249, + 217, + 27, + 48, + 179, + 58, + 120, + 117, + 48, + 46, + 158, + 70, + 183, + 57, + 117, + 201, + 164, + 157, + 196, + 88, + 202, + 230, + 133, + 16, + 231, + 67, + 218, + 125, + 75, + 86, + 210, + 120, + 21, + 194, + 174, + 23, + 18, + 250, + 51, + 209, + 175, + 67, + 0, + 140, + 63, + 6, + 245, + 220, + 191, + 46, + 24, + 55, + 23, + 167, + 207, + 23, + 17, + 117, + 177, + 99, + 148, + 96, + 251, + 177, + 76, + 50, + 26, + 120, + 191, + 28, + 82, + 89, + 31, + 42, + 217, + 131, + 168, + 101, + 171, + 184, + 22, + 162, + 84, + 145, + 101, + 49, + 70, + 255, + 138, + 41, + 247, + 213, + 91, + 198, + 122, + 60, + 67, + 84, + 13, + 244, + 237, + 221, + 147, + 0, + 92, + 66, + 193, + 236, + 203, + 78, + 171, + 81, + 83, + 160, + 140, + 146, + 0, + 14, + 76, + 57, + 174, + 251, + 12, + 139, + 57, + 83, + 23, + 2, + 137, + 162, + 157, + 151, + 0, + 109, + 117, + 159, + 214, + 98, + 239, + 145, + 114, + 212, + 48, + 56, + 214, + 145, + 245, + 41, + 171, + 136, + 159, + 172, + 173, + 150, + 100, + 16, + 226, + 100, + 228, + 207, + 18, + 65, + 74, + 113, + 238, + 48, + 2, + 169, + 171, + 23, + 110, + 144, + 138, + 82, + 15, + 62, + 103, + 37, + 252, + 172, + 209, + 177, + 144, + 123, + 245, + 96, + 4, + 136, + 65, + 224, + 112, + 209, + 246, + 157, + 20, + 217, + 11, + 24, + 223, + 110, + 24, + 94, + 224, + 148, + 14, + 204, + 164, + 163, + 150, + 205, + 143, + 59, + 104, + 56, + 103, + 52, + 87, + 112, + 81, + 205, + 137, + 18, + 193, + 211, + 193, + 193, + 89, + 105, + 81, + 156, + 68, + 176, + 248, + 255, + 252, + 81, + 64, + 109, + 99, + 174, + 184, + 61, + 233, + 37, + 242, + 75, + 9, + 1, + 100, + 38, + 151, + 185, + 126, + 17, + 82, + 125, + 64, + 113, + 231, + 175, + 60, + 86, + 169, + 247, + 164, + 131, + 238, + 159, + 251, + 84, + 212, + 58, + 243, + 195, + 164, + 246, + 234, + 87, + 159, + 23, + 41, + 216, + 87, + 41, + 10, + 51, + 184, + 42, + 150, + 249, + 31, + 116, + 36, + 226, + 73, + 155, + 79, + 73, + 98, + 209, + 251, + 101, + 202, + 10, + 145, + 253, + 99, + 17, + 243, + 254, + 206, + 41, + 150, + 163, + 252, + 26, + 178, + 2, + 211, + 145, + 181, + 125, + 60, + 44, + 83, + 228, + 46, + 213, + 212, + 169, + 205, + 100, + 69, + 246, + 23, + 3, + 41, + 33, + 147, + 105, + 255, + 114, + 77, + 188, + 196, + 192, + 68, + 192, + 149, + 91, + 108, + 69, + 88, + 41, + 34, + 173, + 252, + 176, + 216, + 21, + 234, + 134, + 87, + 179, + 222, + 225, + 29, + 222, + 225, + 210, + 62, + 42, + 32, + 150, + 200, + 63, + 71, + 107, + 114, + 194, + 88, + 117, + 217, + 64, + 133, + 211, + 98, + 212, + 176, + 164, + 67, + 239, + 83, + 9, + 12, + 39, + 90, + 68, + 141, + 37, + 190, + 184, + 61, + 203, + 101, + 206, + 219, + 76, + 13, + 175, + 208, + 178, + 160, + 5, + 124, + 122, + 14, + 213, + 58, + 79, + 176, + 204, + 5, + 23, + 64, + 27, + 181, + 43, + 130, + 172, + 195, + 42, + 188, + 86, + 233, + 231, + 86, + 33, + 4, + 162, + 225, + 26, + 205, + 37, + 247, + 254, + 171, + 7, + 85, + 235, + 2, + 111, + 129, + 172, + 132, + 255, + 33, + 150, + 106, + 202, + 192, + 241, + 156, + 203, + 21, + 181, + 65, + 30, + 174, + 243, + 109, + 67, + 22, + 163, + 60, + 229, + 205, + 149, + 74, + 160, + 142, + 232, + 98, + 11, + 12, + 124, + 110, + 10, + 105, + 102, + 207, + 203, + 41, + 187, + 165, + 250, + 188, + 238, + 145, + 226, + 87, + 108, + 221, + 185, + 108, + 15, + 208, + 4, + 85, + 1, + 128, + 129, + 246, + 3, + 211, + 18, + 186, + 235, + 36, + 183, + 45, + 218, + 2, + 29, + 63, + 127, + 97, + 179, + 214, + 69, + 64, + 143, + 163, + 46, + 27, + 181, + 63, + 57, + 94, + 130, + 90, + 68, + 97, + 2, + 85, + 189, + 244, + 65, + 179, + 193, + 255, + 57, + 68, + 117, + 46, + 184, + 15, + 239, + 84, + 205, + 234, + 43, + 184, + 215, + 30, + 254, + 224, + 44, + 213, + 21, + 30, + 30, + 178, + 154, + 255, + 152, + 157, + 3, + 207, + 18, + 147, + 179, + 101, + 117, + 203, + 199, + 112, + 45, + 208, + 141, + 152, + 1, + 129, + 244, + 196, + 22, + 112, + 89, + 37, + 225, + 129, + 59, + 11, + 207, + 224, + 10, + 44, + 240, + 137, + 109, + 134, + 188, + 1, + 184, + 117, + 44, + 231, + 27, + 80, + 57, + 120, + 195, + 228, + 255, + 247, + 17, + 202, + 18, + 171, + 231, + 226, + 243, + 149, + 197, + 211, + 238, + 195, + 191, + 105, + 174, + 27, + 104, + 131, + 228, + 6, + 64, + 15, + 172, + 116, + 231, + 54, + 113, + 30, + 35, + 122, + 116, + 90, + 225, + 103, + 191, + 197, + 143, + 188, + 205, + 87, + 104, + 118, + 4, + 251, + 54, + 63, + 89, + 209, + 244, + 104, + 222, + 186, + 224, + 67, + 221, + 44, + 183, + 51, + 172, + 195, + 190, + 200, + 156, + 42, + 112, + 48, + 30, + 251, + 165, + 127, + 249, + 76, + 191, + 172, + 141, + 110, + 141, + 14, + 239, + 69, + 16, + 229, + 6, + 46, + 249, + 89, + 47, + 29, + 109, + 134, + 133, + 101, + 154, + 218, + 225, + 113, + 25, + 129 + ], + "expectedReplyTypes": [ + "LISTEN", + "EOS", + "SKILL_ACTION" + ] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 0, + 115, + 20, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 4, + 0, + 0, + 0, + 92, + 64, + 104, + 149, + 26, + 161, + 161, + 161, + 161, + 161, + 163, + 161, + 159, + 161, + 161, + 161, + 161, + 161, + 209, + 163, + 160, + 158, + 153, + 153, + 155, + 157, + 167, + 166, + 173, + 168, + 161, + 184, + 22, + 153, + 119, + 164, + 171, + 15, + 158, + 128, + 218, + 208, + 3, + 146, + 173, + 136, + 0, + 60, + 213, + 35, + 106, + 13, + 230, + 222, + 125, + 161, + 126, + 125, + 97, + 230, + 214, + 17, + 60, + 197, + 72, + 39, + 47, + 25, + 101, + 48, + 167, + 213, + 212, + 196, + 21, + 137, + 250, + 246, + 181, + 218, + 145, + 57, + 121, + 183, + 20, + 28, + 149, + 57, + 135, + 188, + 156, + 113, + 18, + 131, + 169, + 224, + 70, + 5, + 125, + 155, + 172, + 126, + 58, + 248, + 31, + 130, + 236, + 56, + 98, + 110, + 22, + 150, + 54, + 19, + 2, + 152, + 62, + 101, + 208, + 160, + 178, + 84, + 173, + 177, + 59, + 107, + 175, + 98, + 95, + 25, + 21, + 103, + 180, + 108, + 92, + 147, + 230, + 3, + 132, + 164, + 151, + 7, + 11, + 202, + 228, + 60, + 124, + 65, + 30, + 161, + 153, + 43, + 104, + 95, + 187, + 138, + 43, + 213, + 254, + 107, + 200, + 76, + 140, + 123, + 139, + 174, + 163, + 143, + 245, + 198, + 41, + 84, + 70, + 199, + 134, + 11, + 68, + 107, + 212, + 99, + 97, + 164, + 160, + 172, + 173, + 226, + 240, + 93, + 88, + 34, + 98, + 184, + 184, + 28, + 56, + 237, + 47, + 148, + 163, + 118, + 197, + 202, + 247, + 88, + 164, + 2, + 144, + 78, + 45, + 151, + 25, + 225, + 206, + 16, + 138, + 153, + 100, + 101, + 67, + 223, + 188, + 14, + 76, + 26, + 109, + 136, + 14, + 140, + 215, + 165, + 72, + 139, + 181, + 68, + 101, + 138, + 228, + 231, + 148, + 174, + 243, + 113, + 200, + 180, + 4, + 138, + 55, + 80, + 244, + 225, + 24, + 249, + 49, + 179, + 92, + 136, + 159, + 69, + 91, + 75, + 161, + 248, + 125, + 148, + 47, + 118, + 215, + 53, + 45, + 158, + 113, + 193, + 169, + 21, + 186, + 207, + 111, + 101, + 6, + 70, + 241, + 155, + 165, + 129, + 222, + 49, + 11, + 253, + 36, + 65, + 87, + 143, + 246, + 48, + 133, + 174, + 182, + 1, + 154, + 31, + 53, + 186, + 210, + 238, + 12, + 245, + 50, + 223, + 121, + 127, + 14, + 174, + 244, + 66, + 95, + 120, + 149, + 6, + 9, + 106, + 247, + 66, + 129, + 76, + 184, + 22, + 17, + 164, + 125, + 46, + 30, + 251, + 208, + 11, + 75, + 21, + 65, + 185, + 227, + 185, + 214, + 141, + 111, + 206, + 200, + 25, + 132, + 90, + 33, + 66, + 36, + 239, + 61, + 184, + 60, + 102, + 182, + 173, + 168, + 222, + 7, + 77, + 254, + 102, + 176, + 199, + 77, + 222, + 104, + 82, + 32, + 132, + 37, + 237, + 255, + 138, + 36, + 74, + 122, + 0, + 8, + 76, + 100, + 36, + 13, + 92, + 42, + 192, + 84, + 167, + 20, + 139, + 51, + 25, + 138, + 98, + 24, + 43, + 244, + 12, + 128, + 140, + 244, + 159, + 208, + 200, + 16, + 206, + 152, + 81, + 189, + 128, + 16, + 187, + 44, + 109, + 4, + 182, + 41, + 179, + 122, + 249, + 235, + 120, + 136, + 79, + 141, + 237, + 111, + 224, + 55, + 55, + 151, + 116, + 159, + 5, + 115, + 28, + 112, + 122, + 89, + 110, + 153, + 162, + 237, + 192, + 52, + 191, + 243, + 43, + 172, + 72, + 231, + 171, + 220, + 64, + 62, + 211, + 167, + 215, + 12, + 182, + 136, + 110, + 83, + 42, + 35, + 94, + 253, + 217, + 144, + 200, + 237, + 74, + 36, + 131, + 228, + 42, + 136, + 239, + 66, + 182, + 67, + 157, + 118, + 182, + 30, + 36, + 112, + 51, + 83, + 143, + 95, + 86, + 187, + 37, + 80, + 217, + 197, + 185, + 96, + 93, + 171, + 246, + 52, + 112, + 176, + 101, + 122, + 122, + 178, + 195, + 70, + 123, + 184, + 22, + 149, + 69, + 163, + 153, + 148, + 170, + 77, + 166, + 36, + 27, + 232, + 178, + 13, + 48, + 242, + 158, + 177, + 71, + 31, + 127, + 222, + 243, + 128, + 176, + 203, + 20, + 99, + 31, + 99, + 18, + 96, + 88, + 107, + 165, + 224, + 229, + 127, + 222, + 218, + 220, + 126, + 117, + 165, + 241, + 210, + 204, + 178, + 64, + 195, + 207, + 247, + 212, + 198, + 126, + 218, + 179, + 106, + 160, + 12, + 227, + 58, + 24, + 112, + 17, + 159, + 209, + 68, + 41, + 23, + 213, + 124, + 7, + 187, + 16, + 103, + 215, + 177, + 89, + 31, + 91, + 209, + 57, + 45, + 136, + 213, + 64, + 127, + 232, + 232, + 103, + 155, + 252, + 46, + 58, + 249, + 88, + 232, + 198, + 178, + 30, + 196, + 123, + 158, + 150, + 153, + 202, + 134, + 124, + 97, + 20, + 49, + 10, + 80, + 4, + 70, + 48, + 80, + 188, + 119, + 26, + 21, + 242, + 177, + 164, + 60, + 87, + 33, + 15, + 251, + 144, + 99, + 83, + 11, + 200, + 53, + 137, + 61, + 159, + 101, + 199, + 255, + 174, + 166, + 254, + 11, + 225, + 30, + 101, + 96, + 7, + 193, + 65, + 161, + 69, + 71, + 127, + 46, + 96, + 162, + 184, + 6, + 128, + 15, + 154, + 63, + 59, + 23, + 179, + 37, + 99, + 170, + 77, + 2, + 172, + 28, + 172, + 188, + 104, + 244, + 189, + 250, + 34, + 162, + 172, + 184, + 245, + 229, + 56, + 151, + 162, + 73, + 151, + 94, + 163, + 175, + 68, + 69, + 80, + 74, + 108, + 1, + 189, + 169, + 165, + 55, + 16, + 211, + 229, + 138, + 136, + 11, + 175, + 19, + 154, + 101, + 89, + 20, + 95, + 16, + 190, + 41, + 189, + 124, + 173, + 255, + 109, + 149, + 110, + 83, + 65, + 128, + 180, + 198, + 81, + 210, + 167, + 253, + 135, + 208, + 155, + 67, + 187, + 9, + 152, + 191, + 109, + 156, + 247, + 46, + 115, + 75, + 175, + 235, + 196, + 7, + 159, + 189, + 92, + 84, + 144, + 1, + 83, + 93, + 36, + 130, + 82, + 104, + 204, + 45, + 148, + 23, + 237, + 226, + 156, + 203, + 146, + 236, + 41, + 116, + 38, + 247, + 5, + 216, + 24, + 201, + 199, + 125, + 154, + 177, + 144, + 3, + 233, + 203, + 207, + 195, + 134, + 109, + 20, + 26, + 43, + 173, + 105, + 158, + 36, + 230, + 235, + 20, + 66, + 240, + 150, + 211, + 0, + 163, + 78, + 196, + 228, + 138, + 103, + 89, + 32, + 184, + 84, + 5, + 157, + 14, + 75, + 54, + 50, + 153, + 179, + 21, + 220, + 116, + 161, + 102, + 19, + 184, + 255, + 216, + 91, + 19, + 38, + 37, + 86, + 86, + 213, + 16, + 137, + 115, + 123, + 208, + 228, + 168, + 20, + 66, + 140, + 165, + 237, + 39, + 75, + 33, + 30, + 80, + 53, + 151, + 242, + 21, + 76, + 156, + 170, + 183, + 128, + 19, + 158, + 187, + 151, + 181, + 3, + 201, + 117, + 42, + 57, + 228, + 213, + 70, + 180, + 212, + 208, + 177, + 254, + 165, + 133, + 77, + 20, + 93, + 80, + 8, + 204, + 143, + 222, + 95, + 67, + 237, + 115, + 250, + 163, + 106, + 65, + 106, + 121, + 136, + 165, + 22, + 147, + 162, + 18, + 239, + 107, + 35, + 52, + 63, + 85, + 251, + 232, + 20, + 94, + 205, + 117, + 171, + 227, + 75, + 67, + 250, + 254, + 221, + 207, + 10, + 244, + 213, + 57, + 175, + 156, + 239, + 133, + 80, + 108, + 135, + 228, + 165, + 191, + 44, + 221, + 224, + 62, + 107, + 196, + 38, + 250, + 120, + 184, + 176, + 214, + 234, + 107, + 188, + 193, + 117, + 152, + 238, + 179, + 169, + 18, + 155, + 72, + 203, + 198, + 19, + 6, + 89, + 54, + 134, + 247, + 151, + 184, + 18, + 96, + 133, + 248, + 235, + 10, + 77, + 222, + 226, + 40, + 63, + 70, + 144, + 68, + 108, + 252, + 69, + 69, + 116, + 99, + 231, + 219, + 55, + 12, + 209, + 61, + 233, + 216, + 97, + 82, + 97, + 64, + 20, + 87, + 60, + 206, + 189, + 143, + 109, + 10, + 243, + 203, + 74, + 172, + 225, + 156, + 88, + 58, + 138, + 138, + 250, + 7, + 169, + 88, + 220, + 153, + 228, + 239, + 180, + 145, + 47, + 62, + 11, + 255, + 19, + 138, + 178, + 141, + 190, + 196, + 122, + 224, + 9, + 179, + 247, + 225, + 174, + 113, + 130, + 200, + 208, + 98, + 8, + 59, + 41, + 242, + 1, + 119, + 43, + 19, + 33, + 26, + 165, + 35, + 172, + 34, + 203, + 95, + 237, + 66, + 24, + 234, + 66, + 252, + 138, + 94, + 36, + 212, + 59, + 5, + 138, + 55, + 6, + 58, + 153, + 89, + 232, + 47, + 104, + 118, + 244, + 180, + 14, + 73, + 148, + 199, + 70, + 32, + 99, + 118, + 214, + 243, + 189, + 25, + 54, + 180, + 155, + 92, + 19, + 219, + 81, + 95, + 94, + 75, + 136, + 88, + 125, + 124, + 15, + 116, + 109, + 38, + 51, + 205, + 15, + 245, + 218, + 62, + 167, + 132, + 184, + 3, + 158, + 250, + 238, + 229, + 26, + 190, + 203, + 212, + 155, + 157, + 194, + 17, + 82, + 63, + 243, + 160, + 192, + 110, + 186, + 238, + 109, + 3, + 194, + 157, + 56, + 160, + 140, + 246, + 93, + 108, + 187, + 82, + 59, + 193, + 67, + 248, + 125, + 144, + 215, + 24, + 65, + 174, + 27, + 66, + 184, + 98, + 57, + 57, + 142, + 210, + 221, + 51, + 241, + 77, + 67, + 190, + 0, + 98, + 125, + 62, + 196, + 6, + 77, + 199, + 54, + 38, + 215, + 7, + 23, + 173, + 219, + 208, + 197, + 214, + 131, + 3, + 13, + 161, + 70, + 16, + 96, + 166, + 222, + 68, + 212, + 152, + 48, + 84, + 35, + 232, + 30, + 81, + 239, + 53, + 53, + 220, + 48, + 88, + 177, + 47, + 205, + 207, + 64, + 199, + 143, + 225, + 48, + 205, + 180, + 88, + 87, + 11, + 77, + 53, + 112, + 25, + 149, + 23, + 143, + 221, + 85, + 176, + 57, + 224, + 229, + 241, + 184, + 46, + 116, + 52, + 39, + 180, + 70, + 133, + 177, + 156, + 35, + 215, + 114, + 27, + 79, + 119, + 20, + 102, + 194, + 167, + 119, + 15, + 82, + 225, + 135, + 131, + 20, + 182, + 28, + 134, + 198, + 184, + 35, + 105, + 38, + 85, + 231, + 158, + 117, + 151, + 84, + 73, + 103, + 89, + 105, + 65, + 78, + 19, + 6, + 151, + 26, + 70, + 196, + 99, + 120, + 134, + 120, + 124, + 169, + 139, + 137, + 154, + 214, + 166, + 143, + 29, + 26, + 134, + 13, + 153, + 227, + 178, + 190, + 227, + 122, + 111, + 253, + 5, + 155, + 160, + 128, + 53, + 216, + 237, + 26, + 148, + 151, + 231, + 170, + 38, + 53, + 169, + 178, + 154, + 244, + 231, + 171, + 255, + 252, + 42, + 23, + 209, + 153, + 19, + 78, + 22, + 154, + 90, + 252, + 9, + 77, + 246, + 177, + 233, + 228, + 77, + 175, + 7, + 177, + 226, + 139, + 104, + 241, + 11, + 206, + 125, + 165, + 126, + 188, + 199, + 34, + 102, + 45, + 182, + 56, + 156, + 123, + 15, + 129, + 111, + 20, + 251, + 142, + 113, + 247, + 178, + 237, + 48, + 155, + 76, + 213, + 35, + 118, + 211, + 202, + 182, + 124, + 140, + 103, + 206, + 109, + 240, + 231, + 144, + 149, + 218, + 4, + 16, + 186, + 124, + 240, + 65, + 231, + 26, + 185, + 60, + 53, + 149, + 121, + 101, + 67, + 49, + 132, + 13, + 38, + 185, + 233, + 86, + 158, + 200, + 84, + 173, + 184, + 16, + 222, + 150, + 17, + 53, + 237, + 58, + 65, + 0, + 124, + 28, + 180, + 113, + 22, + 84, + 15, + 24, + 119, + 109, + 146, + 177, + 165, + 179, + 110, + 146, + 42, + 23, + 200, + 66, + 207, + 69, + 237, + 240, + 241, + 213, + 219, + 115, + 3, + 7, + 229, + 176, + 4, + 38, + 153, + 133, + 36, + 102, + 129, + 5, + 134, + 184, + 170, + 228, + 182, + 164, + 106, + 107, + 14, + 205, + 153, + 10, + 187, + 136, + 227, + 190, + 54, + 77, + 47, + 41, + 19, + 222, + 7, + 92, + 151, + 83, + 40, + 72, + 91, + 178, + 192, + 119, + 207, + 104, + 131, + 148, + 170, + 40, + 139, + 73, + 248, + 29, + 112, + 154, + 154, + 216, + 23, + 36, + 108, + 143, + 109, + 228, + 42, + 142, + 195, + 113, + 60, + 75, + 178, + 68, + 255, + 200, + 63, + 170, + 234, + 143, + 30, + 67, + 63, + 233, + 245, + 140, + 145, + 44, + 192, + 200, + 64, + 80, + 206, + 12, + 238, + 37, + 158, + 87, + 116, + 211, + 221, + 20, + 72, + 116, + 208, + 145, + 198, + 29, + 36, + 202, + 231, + 89, + 248, + 67, + 178, + 215, + 88, + 146, + 82, + 202, + 231, + 196, + 126, + 106, + 130, + 184, + 17, + 32, + 77, + 23, + 167, + 231, + 108, + 57, + 146, + 221, + 208, + 21, + 196, + 249, + 204, + 138, + 123, + 87, + 133, + 229, + 174, + 8, + 217, + 146, + 84, + 40, + 35, + 197, + 15, + 200, + 213, + 45, + 59, + 112, + 247, + 85, + 95, + 133, + 152, + 33, + 247, + 209, + 127, + 231, + 11, + 124, + 238, + 38, + 26, + 209, + 204, + 241, + 153, + 143, + 173, + 200, + 144, + 125, + 246, + 195, + 129, + 43, + 40, + 228, + 122, + 167, + 214, + 183, + 5, + 85, + 160, + 149, + 140, + 253, + 51, + 244, + 244, + 231, + 34, + 116, + 84, + 15, + 81, + 0, + 1, + 8, + 161, + 169, + 48, + 142, + 211, + 164, + 208, + 212, + 87, + 22, + 205, + 71, + 4, + 105, + 13, + 159, + 23, + 194, + 192, + 239, + 83, + 125, + 173, + 5, + 17, + 157, + 238, + 202, + 101, + 152, + 100, + 152, + 146, + 180, + 76, + 115, + 58, + 23, + 34, + 243, + 217, + 150, + 90, + 46, + 89, + 110, + 139, + 40, + 15, + 72, + 251, + 199, + 185, + 106, + 3, + 237, + 148, + 244, + 12, + 96, + 157, + 209, + 239, + 86, + 19, + 45, + 173, + 87, + 116, + 7, + 56, + 98, + 73, + 112, + 184, + 65, + 125, + 250, + 2, + 211, + 166, + 95, + 233, + 222, + 64, + 176, + 151, + 200, + 190, + 177, + 116, + 146, + 47, + 8, + 25, + 70, + 94, + 101, + 159, + 110, + 28, + 98, + 24, + 111, + 239, + 224, + 182, + 91, + 225, + 133, + 85, + 192, + 80, + 110, + 174, + 20, + 202, + 219, + 41, + 228, + 85, + 96, + 97, + 29, + 186, + 158, + 87, + 216, + 89, + 8, + 91, + 208, + 197, + 171, + 213, + 15, + 249, + 101, + 54, + 44, + 113, + 120, + 174, + 145, + 82, + 117, + 202, + 69, + 218, + 89, + 63, + 68, + 37, + 204, + 39, + 179, + 244, + 178, + 53, + 233, + 89, + 24, + 156, + 107, + 41, + 194, + 252, + 151, + 142, + 9, + 77, + 223, + 255, + 46, + 209, + 168, + 56, + 142, + 210, + 109, + 5, + 40, + 92, + 140, + 44, + 50, + 41, + 53, + 90, + 43, + 138, + 18, + 186, + 103, + 31, + 130, + 116, + 192, + 180, + 27, + 161, + 231, + 24, + 150, + 25, + 155, + 213, + 64, + 110, + 74, + 35, + 6, + 87, + 2, + 227, + 196, + 17, + 101, + 160, + 124, + 118, + 6, + 190, + 208, + 235, + 108, + 144, + 8, + 40, + 237, + 159, + 109, + 90, + 28, + 14, + 184, + 16, + 20, + 204, + 246, + 98, + 62, + 60, + 204, + 61, + 136, + 88, + 194, + 50, + 235, + 48, + 169, + 150, + 78, + 107, + 227, + 212, + 220, + 64, + 113, + 179, + 101, + 83, + 178, + 70, + 154, + 161, + 215, + 23, + 223, + 59, + 177, + 39, + 9, + 85, + 41, + 84, + 3, + 173, + 171, + 18, + 210, + 84, + 13, + 147, + 30, + 27, + 58, + 139, + 163, + 217, + 87, + 249, + 1, + 169, + 63, + 77, + 84, + 23, + 68, + 81, + 61, + 34, + 232, + 28, + 220, + 210, + 151, + 105, + 246, + 137, + 231, + 113, + 123, + 245, + 88, + 222, + 182, + 148, + 162, + 50, + 120, + 166, + 207, + 116, + 247, + 211, + 57, + 187, + 159, + 58, + 188, + 205, + 80, + 203, + 13, + 22, + 236, + 92, + 218, + 118, + 230, + 218, + 180, + 38, + 115, + 251, + 23, + 78, + 237, + 91, + 175, + 12, + 65, + 112, + 207, + 67, + 125, + 94, + 75, + 172, + 39, + 4, + 2, + 38, + 232, + 254, + 184, + 166, + 200, + 223, + 129, + 106, + 230, + 206, + 237, + 82, + 124, + 158, + 49, + 15, + 3, + 50, + 168, + 214, + 83, + 21, + 117, + 16, + 87, + 157, + 227, + 210, + 40, + 191, + 4, + 184, + 202, + 62, + 113, + 182, + 161, + 246, + 20, + 65, + 131, + 128, + 74, + 141, + 149, + 152, + 152, + 65, + 70, + 168, + 123, + 49, + 66, + 35, + 75, + 127, + 212, + 0, + 155, + 65, + 231, + 162, + 7, + 237, + 157, + 166, + 48, + 123, + 8, + 152, + 111, + 36, + 108, + 152, + 149, + 152, + 81, + 152, + 191, + 194, + 90, + 111, + 10, + 116, + 171, + 125, + 202, + 25, + 217, + 24, + 132, + 39, + 10, + 174, + 105, + 179, + 81, + 157, + 199, + 49, + 14, + 12, + 83, + 53, + 171, + 136, + 0, + 35, + 161, + 163, + 106, + 174, + 39, + 93, + 176, + 81, + 125, + 0, + 134, + 164, + 126, + 137, + 157, + 180, + 246, + 50, + 15, + 31, + 89, + 185, + 49, + 59, + 39, + 45, + 90, + 80, + 118, + 84, + 218, + 226, + 136, + 77, + 111, + 229, + 243, + 211, + 216, + 136, + 118, + 208, + 182, + 107, + 101, + 48, + 9, + 55, + 243, + 6, + 156, + 230, + 84, + 11, + 18, + 139, + 13, + 249, + 31, + 157, + 152, + 139, + 206, + 56, + 7, + 75, + 138, + 184, + 230, + 195, + 59, + 44, + 200, + 91, + 182, + 144, + 230, + 158, + 123, + 105, + 43, + 72, + 228, + 191, + 156, + 169, + 19, + 64, + 5, + 55, + 202, + 242, + 111, + 48, + 130, + 146, + 135, + 162, + 102, + 12, + 106, + 87, + 124, + 188, + 3, + 162, + 63, + 205, + 158, + 106, + 51, + 157, + 46, + 9, + 216, + 20, + 131, + 3, + 32, + 100, + 144, + 71, + 142, + 57, + 81, + 41, + 40, + 141, + 31, + 169, + 184, + 229, + 184, + 193, + 173, + 89, + 181, + 221, + 159, + 45, + 5, + 71, + 205, + 134, + 138, + 116, + 244, + 235, + 203, + 142, + 26, + 172, + 74, + 134, + 44, + 112, + 110, + 88, + 60, + 74, + 102, + 128, + 212, + 232, + 136, + 90, + 122, + 160, + 96, + 196, + 222, + 72, + 15, + 253, + 62, + 229, + 110, + 171, + 174, + 22, + 139, + 182, + 9, + 174, + 158, + 216, + 157, + 39, + 157, + 10, + 163, + 111, + 214, + 238, + 84, + 187, + 238, + 118, + 105, + 140, + 169, + 71, + 118, + 48, + 251, + 146, + 38, + 196, + 52, + 57, + 203, + 249, + 236, + 119, + 140, + 108, + 16, + 13, + 24, + 118, + 158, + 10, + 154, + 171, + 171, + 148, + 99, + 193, + 195, + 3, + 45, + 223, + 132, + 123, + 187, + 172, + 93, + 187, + 153, + 133, + 249, + 38, + 156, + 161, + 134, + 110, + 76, + 96, + 133, + 21, + 100, + 167, + 121, + 3, + 185, + 33, + 133, + 39, + 205, + 85, + 197, + 59, + 44, + 126, + 141, + 175, + 79, + 78, + 27, + 211, + 136, + 6, + 12, + 160, + 3, + 31, + 20, + 195, + 208, + 11, + 92, + 216, + 22, + 135, + 37, + 181, + 138, + 202, + 167, + 8, + 232, + 220, + 6, + 45, + 95, + 184, + 31, + 91, + 71, + 195, + 237, + 81, + 52, + 207, + 78, + 176, + 185, + 188, + 236, + 253, + 101, + 82, + 66, + 217, + 112, + 9, + 83, + 48, + 254, + 248, + 90, + 237, + 91, + 39, + 251, + 183, + 177, + 156, + 242, + 90, + 119, + 219, + 3, + 238, + 118, + 162, + 213, + 128, + 204, + 86, + 72, + 163, + 4, + 18, + 43, + 206, + 203, + 76, + 190, + 8, + 71, + 142, + 128, + 184, + 17, + 77, + 27, + 215, + 181, + 179, + 167, + 11, + 219, + 113, + 185, + 5, + 143, + 61, + 121, + 20, + 8, + 232, + 117, + 68, + 151, + 109, + 99, + 15, + 126, + 167, + 212, + 148, + 52, + 204, + 86, + 5, + 89, + 40, + 114, + 25, + 26, + 249, + 35, + 186, + 226, + 165, + 173, + 11, + 53, + 71, + 47, + 98, + 149, + 220, + 115, + 18, + 183, + 142, + 240, + 9, + 223, + 25, + 64, + 245, + 200, + 217, + 180, + 62, + 68, + 87, + 35, + 246, + 222, + 252, + 161, + 56, + 234, + 65, + 223, + 164, + 213, + 42, + 106, + 199, + 102, + 82, + 214, + 228, + 73, + 215, + 182, + 139, + 235, + 107, + 212, + 66, + 56, + 209, + 195, + 73, + 196, + 51, + 79, + 18, + 97, + 184, + 21, + 210, + 234, + 139, + 216, + 125, + 87, + 16, + 199, + 37, + 229, + 159, + 21, + 72, + 186, + 136, + 1, + 225, + 244, + 125, + 234, + 213, + 248, + 205, + 144, + 41, + 65, + 34, + 247, + 80, + 187, + 157, + 138, + 47, + 163, + 248, + 161, + 125, + 242, + 87, + 20, + 36, + 93, + 163, + 112, + 126, + 210, + 103, + 140, + 74, + 155, + 107, + 164, + 148, + 15, + 253, + 10, + 239, + 101, + 77, + 245, + 31, + 98, + 81, + 219, + 50, + 55, + 3, + 237, + 205, + 106, + 134, + 236, + 22, + 66, + 0, + 128, + 210, + 235, + 250, + 222, + 17, + 232, + 232, + 49, + 84, + 55, + 48, + 111, + 47, + 107, + 238, + 201, + 127, + 255, + 132, + 27, + 62, + 151, + 17, + 224, + 88, + 122, + 64, + 179, + 59, + 203, + 35, + 213, + 47, + 180, + 143, + 12, + 14, + 141, + 108, + 141, + 137, + 68, + 242, + 147, + 135, + 184, + 199, + 106, + 112, + 214, + 192, + 85, + 172, + 209, + 37, + 140, + 58, + 107, + 70, + 190, + 229, + 86, + 74, + 16, + 75, + 146, + 138, + 52, + 124, + 81, + 201, + 39, + 118, + 150, + 58, + 122, + 219, + 221, + 96, + 90, + 184, + 84, + 7, + 184, + 223, + 221, + 33, + 31, + 5, + 80, + 237, + 210, + 37, + 16, + 227, + 226, + 176, + 131, + 185, + 236, + 20, + 221, + 53, + 8, + 92, + 2, + 12, + 213, + 191, + 8, + 85, + 7, + 118, + 181, + 231, + 42, + 103, + 215, + 148, + 77, + 61, + 121, + 160, + 36, + 45, + 59, + 206, + 180, + 90, + 171, + 218, + 96, + 79, + 16, + 104, + 7, + 125, + 20, + 188, + 132, + 86, + 191, + 151, + 187, + 222, + 60, + 195, + 121, + 20, + 89, + 232, + 177, + 176, + 174, + 254, + 27, + 120, + 189, + 10, + 22, + 4, + 127, + 180, + 30, + 199, + 135, + 224, + 121, + 106, + 10, + 251, + 21, + 18, + 250, + 99, + 255, + 154, + 103, + 151, + 51, + 110, + 52, + 124, + 101, + 198, + 55, + 45, + 221, + 38, + 242, + 144, + 194, + 136, + 198, + 191, + 236, + 121, + 60, + 214, + 255, + 60, + 16, + 154, + 126, + 189, + 249, + 142, + 245, + 188, + 247, + 92, + 8, + 145, + 239, + 182, + 187, + 214, + 104, + 129, + 191, + 153, + 105, + 138, + 172, + 222, + 122, + 119, + 47, + 11, + 255, + 178, + 144, + 151, + 184, + 18, + 60, + 20, + 45, + 243, + 209, + 185, + 159, + 122, + 123, + 171, + 212, + 194, + 189, + 80, + 223, + 155, + 21, + 23, + 47, + 138, + 158, + 115, + 204, + 101, + 173, + 47, + 61, + 134, + 191, + 227, + 13, + 107, + 48, + 80, + 8, + 228, + 74, + 198, + 54, + 118, + 181, + 196, + 166, + 114, + 143, + 39, + 76, + 177, + 9, + 225, + 92, + 167, + 179, + 35, + 53, + 251, + 110, + 16, + 184, + 221, + 41, + 131, + 184, + 61, + 219, + 101, + 132, + 239, + 46, + 105, + 209, + 56, + 148, + 185, + 21, + 202, + 76, + 111, + 230, + 233, + 195, + 247, + 3, + 255, + 125, + 14, + 207, + 46, + 99, + 108, + 206, + 2, + 73, + 11, + 105, + 144, + 147, + 46, + 26, + 247, + 135, + 142, + 133, + 174, + 202, + 47, + 253, + 144, + 126, + 185, + 163, + 116, + 246, + 7, + 49, + 48, + 249, + 3, + 156, + 129, + 113, + 2, + 79, + 170, + 46, + 10, + 96, + 151, + 103, + 53, + 218, + 48, + 161, + 48, + 172, + 56, + 129, + 11, + 161, + 169, + 68, + 204, + 51, + 92, + 136, + 0, + 113, + 203, + 130, + 44, + 231, + 184, + 83, + 80, + 25, + 34, + 43, + 206, + 16, + 213, + 143, + 76, + 10, + 85, + 166, + 227, + 241, + 91, + 208, + 103, + 124, + 51, + 158, + 40, + 83, + 29, + 108, + 98, + 184, + 222, + 108, + 19, + 148, + 205, + 129, + 86, + 233, + 212, + 76, + 143, + 83, + 138, + 134, + 196, + 198, + 187, + 175, + 172, + 63, + 131, + 219, + 242, + 110, + 79, + 61, + 130, + 97, + 252, + 170, + 65, + 75, + 171, + 242, + 204, + 79, + 132, + 214, + 148, + 162, + 80, + 102, + 164, + 197, + 45, + 243, + 164, + 117, + 73, + 157, + 143, + 220, + 15, + 77, + 72, + 243, + 66, + 13, + 32, + 0, + 138, + 86, + 203, + 242, + 61, + 188, + 175, + 215, + 121, + 108, + 150, + 96, + 135, + 156, + 162, + 80, + 103, + 168, + 44, + 100, + 146, + 36, + 232, + 177, + 1, + 68, + 150, + 114, + 24, + 235, + 232, + 104, + 53, + 173, + 136, + 8, + 238, + 208, + 3, + 171, + 22, + 187, + 224, + 154, + 140, + 219, + 33, + 145, + 25, + 64, + 187, + 179, + 220, + 77, + 10, + 93, + 200, + 174, + 44, + 144, + 162, + 23, + 102, + 199, + 35, + 110, + 207, + 184, + 1, + 27, + 182, + 188, + 47, + 212, + 248, + 201, + 227, + 110, + 197, + 224, + 228, + 215, + 18, + 175, + 98, + 183, + 180, + 230, + 235, + 174, + 129, + 197, + 167, + 100, + 255, + 114, + 14, + 179, + 139, + 93, + 242, + 19, + 181, + 210, + 101, + 120, + 163, + 185, + 151, + 146, + 101, + 242, + 127, + 166, + 244, + 81, + 176, + 68, + 146, + 232, + 201, + 159, + 26, + 185, + 118, + 148, + 19, + 65, + 100, + 253, + 37, + 125, + 21, + 140, + 243, + 65, + 171, + 192, + 108, + 60, + 10, + 182, + 255, + 66, + 82, + 164, + 89, + 143, + 20, + 162, + 189, + 68, + 143, + 143, + 9, + 137, + 100, + 76, + 136, + 135, + 232, + 133, + 17, + 175, + 118, + 138, + 255, + 68, + 205, + 30, + 249, + 211, + 213, + 197, + 81, + 198, + 255, + 170, + 76, + 145, + 242, + 29, + 177, + 41, + 13, + 0, + 27, + 1, + 147, + 163, + 21, + 101, + 169, + 148, + 226, + 134, + 129, + 240, + 184, + 121, + 238, + 30, + 191, + 227, + 70, + 85, + 111, + 169, + 55, + 7, + 241, + 128, + 13, + 35, + 124, + 71, + 169, + 221, + 147, + 67, + 121, + 209, + 60, + 44, + 184, + 194, + 249, + 249, + 94, + 90, + 250, + 146, + 132, + 126, + 91, + 97, + 56, + 221, + 73, + 234, + 130, + 27, + 84, + 49, + 199, + 19, + 89, + 124, + 252, + 121, + 93, + 21, + 209, + 237, + 52, + 90, + 233, + 173, + 152, + 190, + 170, + 232, + 147, + 57, + 2, + 14, + 214, + 41, + 6, + 149, + 7, + 152, + 26, + 168, + 190, + 16, + 230, + 63, + 241, + 64, + 213, + 113, + 84, + 217, + 188, + 83, + 87, + 176, + 22, + 107, + 231, + 79, + 178, + 141, + 74, + 243, + 93, + 188, + 253, + 9, + 209, + 140, + 30, + 198, + 104, + 51, + 206, + 84, + 7, + 243, + 123, + 27, + 196, + 253, + 83, + 26, + 121, + 94, + 30, + 247, + 88, + 113, + 79, + 16, + 36, + 220, + 133, + 186, + 75, + 96, + 103, + 207, + 72, + 98, + 194, + 111, + 229, + 177, + 245, + 120, + 157, + 9, + 239, + 73, + 74, + 22, + 46, + 192, + 248, + 221, + 187, + 40, + 150, + 191, + 111, + 78, + 121, + 25, + 38, + 12, + 17, + 19, + 191, + 188, + 97, + 91, + 249, + 248, + 216, + 153, + 198, + 85, + 32, + 80, + 141, + 244, + 149, + 87, + 53, + 194, + 217, + 144, + 132, + 33, + 46, + 135, + 153, + 31, + 61, + 34, + 77, + 184, + 192, + 100, + 240, + 122, + 98, + 238, + 133, + 116, + 1, + 190, + 157, + 96, + 123, + 27, + 229, + 226, + 14, + 126, + 106, + 142, + 192, + 83, + 125, + 31, + 124, + 59, + 128, + 193, + 33, + 132, + 206, + 249, + 96, + 1, + 38, + 55, + 94, + 251, + 73, + 222, + 13, + 147, + 236, + 189, + 160, + 209, + 52, + 35, + 98, + 33, + 26, + 44, + 27, + 170, + 151, + 196, + 158, + 79, + 5, + 110, + 17, + 10, + 213, + 75, + 131, + 173, + 83, + 217, + 66, + 52, + 229, + 28, + 10, + 107, + 255, + 11, + 77, + 254, + 190, + 173, + 52, + 21, + 170, + 200, + 254, + 245, + 12, + 150, + 137, + 59, + 236, + 10, + 120, + 64, + 189, + 19, + 182, + 90, + 109, + 14, + 148, + 159, + 22, + 110, + 127, + 49, + 216, + 143, + 148, + 237, + 76, + 73, + 141, + 38, + 114, + 6, + 204, + 120, + 57, + 155, + 182, + 190, + 204, + 233, + 4, + 184, + 215, + 2, + 90, + 145, + 98, + 238, + 128, + 94, + 195, + 135, + 135, + 152, + 137, + 57, + 218, + 227, + 28, + 255, + 89, + 173, + 168, + 213, + 4, + 34, + 29, + 87, + 0, + 123, + 134, + 73, + 135, + 27, + 201, + 36, + 77, + 189, + 209, + 22, + 77, + 184, + 194, + 194, + 158, + 214, + 175, + 89, + 162, + 96, + 238, + 212, + 90, + 217, + 147, + 35, + 124, + 185, + 114, + 178, + 195, + 54, + 254, + 66, + 203, + 67, + 208, + 233, + 45, + 16, + 239, + 13, + 207, + 113, + 16, + 109, + 30, + 19, + 92, + 210, + 110, + 138, + 3, + 225, + 29, + 230, + 20, + 254, + 244, + 135, + 68, + 156, + 39, + 6, + 247, + 192, + 68, + 119, + 122, + 184, + 185, + 193, + 154, + 146, + 91, + 95, + 21, + 56, + 226, + 247, + 167, + 16, + 229, + 105, + 77, + 122, + 238, + 218, + 7, + 145, + 13, + 60, + 62, + 227, + 163, + 11, + 188, + 75, + 121, + 139, + 236, + 49, + 53, + 138, + 48, + 14, + 207, + 236, + 32, + 195, + 75, + 138, + 163, + 187, + 106, + 14, + 146, + 98, + 178, + 38, + 111, + 165, + 96, + 194, + 224, + 178, + 40, + 179, + 69, + 180, + 64, + 37, + 136, + 52, + 217, + 248, + 172, + 75, + 42, + 127, + 187, + 205, + 181, + 252, + 34, + 103, + 219, + 8, + 105, + 35, + 139, + 9, + 98, + 53, + 228, + 224, + 171, + 100, + 74, + 5, + 181, + 25, + 85, + 215, + 202, + 174, + 164, + 85, + 89, + 134, + 223, + 74, + 179, + 233, + 160, + 177, + 57, + 56, + 26, + 221, + 59, + 144, + 170, + 89, + 184, + 2, + 20, + 83, + 219, + 171, + 189, + 191, + 227, + 220, + 63, + 245, + 247, + 11, + 27, + 135, + 21, + 216, + 60, + 11, + 93, + 131, + 156, + 244, + 122, + 199, + 107, + 230, + 30, + 39, + 199, + 43, + 72, + 138, + 43, + 229, + 80, + 30, + 240, + 195, + 230, + 142, + 25, + 214, + 61, + 30, + 211, + 11, + 85, + 209, + 26, + 68, + 198, + 244, + 172, + 28, + 73, + 55, + 169, + 154, + 90, + 142, + 184, + 249, + 115, + 149, + 168, + 183, + 63, + 164, + 186, + 219, + 199, + 148, + 157, + 96, + 198, + 78, + 48, + 200, + 78, + 146, + 76, + 191, + 70, + 3, + 91, + 195, + 83, + 27, + 66, + 139, + 171, + 114, + 75, + 185, + 99, + 249, + 97, + 158, + 81, + 228, + 219, + 169, + 136, + 58, + 85, + 115, + 141, + 191, + 32, + 44, + 45, + 213, + 4, + 73, + 146, + 209, + 101, + 183, + 52, + 200, + 243, + 161, + 91, + 79, + 131, + 201, + 126, + 220, + 202, + 61, + 125, + 117, + 91, + 103, + 181, + 125, + 249, + 83, + 49, + 105, + 150, + 19, + 27, + 15, + 54, + 181, + 10, + 141, + 163, + 3, + 141, + 38, + 53, + 87, + 144, + 144, + 61, + 5, + 222, + 208, + 73, + 167, + 28, + 60, + 84, + 92, + 184, + 194, + 118, + 75, + 160, + 108, + 133, + 235, + 152, + 0, + 17, + 160, + 128, + 64, + 209, + 13, + 244, + 82, + 179, + 19, + 149, + 234, + 237, + 8, + 25, + 182, + 24, + 113, + 1, + 82, + 145, + 10, + 247, + 232, + 38, + 3, + 226, + 50, + 105, + 231, + 245, + 106, + 226, + 77, + 112, + 6, + 213, + 236, + 140, + 231, + 157, + 103, + 96, + 104, + 67, + 81, + 40, + 188, + 107, + 68, + 48, + 78, + 129, + 13, + 155, + 25, + 248, + 214, + 125, + 157, + 30, + 73, + 183, + 50, + 175, + 163, + 163, + 25, + 12, + 134, + 158, + 43, + 137, + 228, + 13, + 26, + 181, + 197, + 199, + 38, + 25, + 28, + 144, + 85, + 238, + 247, + 234, + 199, + 235, + 66, + 40, + 41, + 164, + 211, + 137, + 242, + 206, + 227, + 99, + 142, + 145, + 222, + 193, + 117, + 133, + 184, + 68, + 252, + 169, + 1, + 203, + 78, + 88, + 221, + 119, + 226, + 233, + 195, + 92, + 0, + 1, + 163, + 116, + 18, + 130, + 159, + 186, + 237, + 203, + 42, + 209, + 121, + 1, + 118, + 116, + 160, + 241, + 58, + 218, + 87, + 99, + 38, + 3, + 224, + 74, + 161, + 21, + 95, + 96, + 69, + 241 + ], + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 192, + 208, + 20, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 5, + 0, + 0, + 0, + 49, + 65, + 143, + 200, + 26, + 200, + 154, + 152, + 148, + 154, + 152, + 153, + 152, + 150, + 152, + 154, + 161, + 161, + 161, + 161, + 161, + 161, + 197, + 147, + 157, + 181, + 255, + 21, + 168, + 161, + 161, + 184, + 113, + 198, + 105, + 6, + 174, + 225, + 76, + 9, + 152, + 188, + 81, + 54, + 93, + 144, + 159, + 215, + 85, + 126, + 55, + 218, + 96, + 157, + 41, + 82, + 117, + 156, + 184, + 206, + 165, + 53, + 15, + 252, + 180, + 105, + 129, + 65, + 208, + 229, + 6, + 195, + 87, + 173, + 151, + 142, + 87, + 14, + 170, + 153, + 195, + 141, + 77, + 188, + 227, + 106, + 99, + 13, + 90, + 138, + 247, + 200, + 182, + 97, + 67, + 20, + 209, + 215, + 94, + 179, + 154, + 200, + 53, + 235, + 210, + 231, + 45, + 245, + 109, + 31, + 17, + 144, + 199, + 130, + 25, + 239, + 28, + 230, + 103, + 65, + 160, + 88, + 164, + 157, + 245, + 149, + 98, + 167, + 55, + 225, + 100, + 219, + 41, + 216, + 69, + 205, + 95, + 133, + 155, + 193, + 61, + 196, + 231, + 218, + 218, + 253, + 108, + 56, + 34, + 41, + 227, + 240, + 236, + 93, + 150, + 47, + 74, + 35, + 252, + 201, + 221, + 15, + 187, + 8, + 3, + 147, + 47, + 70, + 207, + 47, + 180, + 207, + 180, + 228, + 220, + 231, + 7, + 170, + 126, + 50, + 210, + 133, + 219, + 56, + 162, + 187, + 106, + 102, + 225, + 80, + 43, + 230, + 160, + 26, + 51, + 37, + 209, + 255, + 75, + 194, + 160, + 160, + 224, + 210, + 48, + 115, + 252, + 190, + 80, + 127, + 198, + 243, + 198, + 70, + 109, + 88, + 210, + 5, + 215, + 22, + 194, + 198, + 21, + 225, + 151, + 173, + 48, + 129, + 83, + 104, + 11, + 184, + 62, + 78, + 98, + 72, + 137, + 47, + 11, + 134, + 81, + 135, + 81, + 98, + 20, + 105, + 128, + 74, + 183, + 93, + 51, + 50, + 94, + 25, + 158, + 155, + 73, + 79, + 169, + 117, + 150, + 60, + 236, + 29, + 84, + 11, + 124, + 225, + 161, + 217, + 207, + 228, + 255, + 127, + 56, + 251, + 149, + 241, + 4, + 23, + 83, + 121, + 73, + 134, + 89, + 174, + 27, + 94, + 71, + 93, + 232, + 102, + 234, + 248, + 182, + 240, + 51, + 169, + 24, + 60, + 239, + 50, + 240, + 38, + 94, + 189, + 124, + 144, + 191, + 42, + 74, + 0, + 70, + 154, + 137, + 82, + 173, + 61, + 214, + 13, + 155, + 75, + 179, + 168, + 252, + 13, + 32, + 133, + 30, + 201, + 130, + 68, + 105, + 229, + 252, + 174, + 79, + 228, + 107, + 53, + 227, + 226, + 112, + 248, + 55, + 178, + 8, + 248, + 45, + 139, + 223, + 35, + 43, + 51, + 140, + 51, + 117, + 10, + 23, + 155, + 21, + 247, + 6, + 96, + 206, + 3, + 202, + 49, + 17, + 98, + 164, + 156, + 125, + 89, + 234, + 123, + 6, + 7, + 75, + 182, + 15, + 245, + 184, + 238, + 89, + 184, + 60, + 163, + 118, + 189, + 85, + 9, + 151, + 161, + 32, + 217, + 83, + 102, + 116, + 120, + 45, + 35, + 50, + 149, + 222, + 85, + 26, + 240, + 253, + 168, + 246, + 126, + 3, + 22, + 90, + 52, + 181, + 60, + 16, + 161, + 113, + 143, + 182, + 92, + 158, + 98, + 68, + 118, + 93, + 239, + 23, + 95, + 46, + 200, + 146, + 191, + 101, + 76, + 190, + 229, + 198, + 61, + 235, + 214, + 7, + 92, + 170, + 186, + 220, + 195, + 223, + 84, + 240, + 127, + 246, + 202, + 151, + 79, + 100, + 21, + 244, + 199, + 165, + 241, + 194, + 73, + 139, + 216, + 218, + 141, + 104, + 208, + 29, + 67, + 165, + 51, + 195, + 126, + 171, + 103, + 18, + 55, + 39, + 166, + 79, + 30, + 20, + 208, + 10, + 134, + 55, + 105, + 114, + 233, + 176, + 253, + 127, + 217, + 50, + 83, + 53, + 127, + 118, + 234, + 253, + 195, + 246, + 126, + 68, + 196, + 118, + 102, + 95, + 211, + 91, + 203, + 49, + 245, + 11, + 12, + 251, + 81, + 156, + 83, + 82, + 66, + 0, + 208, + 7, + 69, + 214, + 94, + 67, + 60, + 170, + 133, + 110, + 184, + 18, + 59, + 183, + 14, + 202, + 13, + 49, + 75, + 143, + 52, + 44, + 4, + 35, + 58, + 255, + 9, + 33, + 166, + 3, + 48, + 89, + 73, + 63, + 78, + 81, + 85, + 84, + 125, + 204, + 158, + 79, + 200, + 250, + 159, + 222, + 174, + 48, + 33, + 177, + 201, + 32, + 58, + 37, + 197, + 58, + 240, + 234, + 58, + 99, + 192, + 5, + 55, + 197, + 38, + 89, + 170, + 204, + 20, + 39, + 51, + 99, + 119, + 230, + 53, + 11, + 14, + 230, + 203, + 160, + 93, + 194, + 9, + 25, + 83, + 26, + 239, + 108, + 164, + 38, + 99, + 67, + 142, + 41, + 246, + 20, + 246, + 174, + 103, + 9, + 215, + 118, + 117, + 140, + 247, + 177, + 99, + 117, + 253, + 123, + 104, + 205, + 174, + 180, + 0, + 215, + 135, + 116, + 15, + 244, + 229, + 98, + 197, + 137, + 198, + 168, + 250, + 61, + 78, + 189, + 188, + 136, + 177, + 228, + 23, + 82, + 171, + 110, + 96, + 47, + 18, + 135, + 24, + 19, + 201, + 3, + 83, + 152, + 112, + 8, + 203, + 27, + 45, + 51, + 247, + 134, + 175, + 173, + 184, + 67, + 26, + 178, + 135, + 145, + 252, + 57, + 200, + 145, + 155, + 53, + 52, + 82, + 220, + 65, + 42, + 124, + 131, + 16, + 46, + 198, + 79, + 131, + 157, + 96, + 120, + 27, + 90, + 140, + 111, + 158, + 160, + 130, + 158, + 90, + 110, + 10, + 171, + 146, + 59, + 227, + 48, + 139, + 12, + 224, + 171, + 73, + 128, + 106, + 50, + 143, + 101, + 26, + 139, + 224, + 88, + 239, + 142, + 127, + 113, + 138, + 8, + 11, + 88, + 138, + 134, + 243, + 217, + 180, + 115, + 26, + 202, + 144, + 28, + 197, + 112, + 31, + 139, + 121, + 142, + 215, + 245, + 89, + 189, + 41, + 133, + 112, + 69, + 179, + 29, + 247, + 0, + 10, + 104, + 220, + 55, + 159, + 68, + 112, + 60, + 13, + 94, + 81, + 148, + 93, + 123, + 30, + 219, + 105, + 196, + 68, + 78, + 176, + 24, + 166, + 11, + 55, + 199, + 0, + 12, + 244, + 78, + 141, + 26, + 0, + 161, + 27, + 238, + 247, + 93, + 129, + 53, + 104, + 30, + 86, + 105, + 197, + 209, + 181, + 247, + 125, + 149, + 70, + 100, + 108, + 2, + 41, + 85, + 63, + 199, + 215, + 98, + 70, + 184, + 27, + 107, + 198, + 252, + 22, + 65, + 87, + 0, + 43, + 152, + 233, + 147, + 244, + 150, + 206, + 187, + 152, + 57, + 51, + 165, + 197, + 239, + 127, + 186, + 80, + 98, + 41, + 175, + 191, + 185, + 152, + 14, + 253, + 40, + 123, + 25, + 198, + 49, + 69, + 128, + 13, + 11, + 137, + 15, + 168, + 160, + 62, + 116, + 84, + 0, + 61, + 68, + 154, + 234, + 198, + 85, + 191, + 70, + 21, + 192, + 42, + 160, + 36, + 121, + 62, + 146, + 193, + 189, + 255, + 237, + 230, + 171, + 225, + 154, + 150, + 217, + 70, + 238, + 234, + 138, + 90, + 7, + 37, + 30, + 187, + 33, + 113, + 83, + 231, + 207, + 40, + 134, + 80, + 130, + 208, + 79, + 189, + 252, + 120, + 192, + 115, + 110, + 145, + 253, + 67, + 16, + 65, + 99, + 48, + 153, + 164, + 85, + 252, + 219, + 199, + 93, + 213, + 86, + 132, + 241, + 26, + 202, + 11, + 139, + 151, + 12, + 169, + 2, + 59, + 56, + 15, + 97, + 33, + 240, + 27, + 59, + 231, + 175, + 165, + 35, + 78, + 227, + 165, + 192, + 172, + 203, + 214, + 63, + 51, + 241, + 252, + 184, + 22, + 170, + 69, + 50, + 92, + 83, + 195, + 139, + 14, + 60, + 128, + 21, + 31, + 166, + 174, + 242, + 132, + 219, + 31, + 153, + 91, + 49, + 106, + 136, + 197, + 48, + 133, + 156, + 6, + 67, + 163, + 15, + 137, + 241, + 44, + 179, + 218, + 182, + 139, + 173, + 241, + 26, + 42, + 169, + 198, + 194, + 28, + 179, + 137, + 40, + 250, + 79, + 220, + 185, + 222, + 77, + 41, + 255, + 124, + 58, + 17, + 199, + 255, + 172, + 236, + 22, + 148, + 215, + 210, + 239, + 76, + 146, + 222, + 0, + 169, + 229, + 201, + 64, + 104, + 14, + 25, + 207, + 55, + 198, + 1, + 182, + 72, + 231, + 216, + 144, + 90, + 219, + 45, + 21, + 7, + 39, + 201, + 59, + 225, + 133, + 193, + 235, + 123, + 91, + 157, + 48, + 152, + 23, + 102, + 82, + 104, + 191, + 131, + 23, + 218, + 182, + 46, + 157, + 7, + 35, + 31, + 218, + 159, + 68, + 59, + 180, + 209, + 60, + 226, + 233, + 237, + 11, + 243, + 24, + 86, + 249, + 128, + 18, + 2, + 134, + 19, + 210, + 37, + 112, + 165, + 244, + 249, + 147, + 75, + 194, + 156, + 89, + 184, + 17, + 10, + 145, + 241, + 71, + 24, + 90, + 20, + 238, + 156, + 160, + 85, + 177, + 228, + 121, + 132, + 51, + 104, + 212, + 36, + 247, + 216, + 148, + 76, + 245, + 106, + 184, + 213, + 248, + 105, + 15, + 27, + 71, + 48, + 198, + 26, + 205, + 167, + 67, + 221, + 191, + 71, + 2, + 100, + 151, + 227, + 8, + 58, + 107, + 77, + 53, + 170, + 149, + 25, + 142, + 204, + 8, + 155, + 215, + 44, + 29, + 32, + 73, + 20, + 103, + 173, + 154, + 163, + 152, + 254, + 16, + 53, + 85, + 118, + 77, + 112, + 24, + 79, + 151, + 128, + 103, + 28, + 13, + 92, + 216, + 122, + 44, + 42, + 237, + 144, + 103, + 97, + 6, + 207, + 188, + 7, + 83, + 222, + 82, + 44, + 191, + 26, + 224, + 153, + 129, + 49, + 119, + 147, + 204, + 101, + 69, + 65, + 27, + 105, + 196, + 27, + 209, + 253, + 142, + 141, + 154, + 22, + 247, + 188, + 137, + 216, + 147, + 117, + 210, + 218, + 50, + 29, + 201, + 212, + 255, + 64, + 74, + 135, + 148, + 168, + 140, + 111, + 48, + 32, + 191, + 158, + 133, + 199, + 89, + 99, + 88, + 184, + 66, + 53, + 140, + 215, + 49, + 39, + 46, + 76, + 248, + 207, + 56, + 226, + 210, + 174, + 15, + 138, + 113, + 61, + 149, + 176, + 235, + 165, + 150, + 210, + 147, + 148, + 217, + 236, + 207, + 126, + 237, + 177, + 78, + 78, + 3, + 77, + 245, + 111, + 215, + 13, + 91, + 41, + 199, + 28, + 147, + 206, + 223, + 140, + 119, + 89, + 133, + 184, + 38, + 60, + 222, + 22, + 251, + 34, + 6, + 8, + 163, + 78, + 160, + 154, + 230, + 110, + 199, + 131, + 228, + 248, + 232, + 218, + 219, + 152, + 131, + 3, + 92, + 4, + 0, + 91, + 204, + 130, + 82, + 32, + 183, + 148, + 166, + 32, + 201, + 43, + 118, + 127, + 198, + 43, + 174, + 27, + 28, + 126, + 144, + 179, + 102, + 70, + 144, + 62, + 236, + 140, + 165, + 177, + 119, + 235, + 114, + 28, + 136, + 106, + 8, + 10, + 231, + 57, + 32, + 12, + 128, + 243, + 214, + 219, + 6, + 124, + 190, + 17, + 13, + 235, + 236, + 163, + 175, + 122, + 190, + 102, + 72, + 89, + 166, + 159, + 0, + 206, + 141, + 73, + 81, + 14, + 126, + 163, + 22, + 184, + 6, + 35, + 136, + 140, + 91, + 176, + 84, + 149, + 31, + 30, + 15, + 12, + 58, + 131, + 72, + 79, + 128, + 146, + 18, + 211, + 111, + 233, + 70, + 184, + 132, + 206, + 101, + 243, + 65, + 237, + 7, + 78, + 152, + 128, + 220, + 117, + 48, + 167, + 218, + 184, + 205, + 113, + 22, + 189, + 5, + 142, + 135, + 154, + 64, + 230, + 147, + 157, + 179, + 122, + 85, + 186, + 125, + 252, + 214, + 41, + 81, + 97, + 5, + 244, + 111, + 73, + 128, + 126, + 168, + 54, + 178, + 32, + 94, + 111, + 157, + 41, + 193, + 230, + 104, + 53, + 164, + 182, + 212, + 29, + 93, + 140, + 240, + 46, + 112, + 170, + 57, + 67, + 36, + 35, + 131, + 152, + 243, + 114, + 138, + 18, + 25, + 137, + 106, + 69, + 255, + 53, + 57, + 254, + 178, + 29, + 34, + 134, + 205, + 232, + 51, + 230, + 179, + 211, + 67, + 167, + 137, + 100, + 29, + 219, + 8, + 171, + 163, + 193, + 184, + 249, + 80, + 85, + 109, + 147, + 182, + 234, + 69, + 30, + 98, + 74, + 203, + 43, + 113, + 8, + 113, + 83, + 194, + 97, + 5, + 242, + 21, + 184, + 6, + 20, + 150, + 82, + 105, + 84, + 102, + 102, + 186, + 19, + 112, + 204, + 250, + 51, + 60, + 216, + 12, + 131, + 156, + 2, + 171, + 161, + 186, + 206, + 45, + 93, + 198, + 253, + 160, + 36, + 235, + 133, + 89, + 7, + 236, + 126, + 137, + 9, + 99, + 56, + 223, + 146, + 213, + 74, + 179, + 111, + 166, + 249, + 214, + 96, + 12, + 209, + 104, + 33, + 84, + 107, + 227, + 80, + 167, + 76, + 237, + 146, + 220, + 183, + 68, + 118, + 90, + 55, + 150, + 84, + 153, + 133, + 17, + 14, + 120, + 72, + 79, + 17, + 253, + 59, + 58, + 185, + 23, + 7, + 16, + 135, + 152, + 66, + 161, + 27, + 66, + 153, + 232, + 50, + 147, + 165, + 199, + 243, + 239, + 136, + 97, + 207, + 236, + 175, + 130, + 60, + 70, + 118, + 87, + 96, + 162, + 28, + 189, + 159, + 113, + 11, + 115, + 215, + 124, + 110, + 153, + 229, + 176, + 39, + 238, + 225, + 233, + 25, + 160, + 254, + 65, + 254, + 3, + 127, + 83, + 132, + 24, + 35, + 190, + 110, + 233, + 101, + 90, + 114, + 57, + 255, + 67, + 218, + 130, + 132, + 252, + 224, + 242, + 184, + 16, + 101, + 75, + 206, + 78, + 132, + 33, + 230, + 117, + 168, + 199, + 133, + 175, + 144, + 54, + 157, + 64, + 196, + 216, + 208, + 245, + 178, + 239, + 167, + 219, + 4, + 50, + 197, + 87, + 113, + 211, + 53, + 93, + 147, + 67, + 133, + 97, + 225, + 79, + 251, + 86, + 94, + 101, + 66, + 37, + 88, + 42, + 247, + 116, + 94, + 78, + 28, + 227, + 87, + 9, + 229, + 36, + 222, + 122, + 212, + 172, + 232, + 172, + 179, + 84, + 115, + 123, + 219, + 144, + 10, + 49, + 196, + 168, + 8, + 226, + 41, + 217, + 49, + 55, + 61, + 250, + 229, + 65, + 239, + 136, + 136, + 51, + 27, + 184, + 90, + 127, + 63, + 248, + 99, + 177, + 255, + 234, + 164, + 190, + 136, + 165, + 85, + 59, + 46, + 222, + 71, + 9, + 243, + 142, + 14, + 25, + 86, + 174, + 131, + 109, + 75, + 13, + 254, + 170, + 3, + 251, + 78, + 131, + 75, + 169, + 195, + 157, + 86, + 208, + 166, + 219, + 66, + 226, + 107, + 199, + 151, + 36, + 135, + 162, + 194, + 133, + 255, + 206, + 204, + 52, + 73, + 90, + 141, + 104, + 82, + 139, + 27, + 252, + 250, + 182, + 98, + 14, + 11, + 79, + 113, + 184, + 18, + 65, + 67, + 87, + 36, + 18, + 236, + 179, + 137, + 103, + 248, + 103, + 22, + 254, + 16, + 195, + 20, + 151, + 196, + 92, + 221, + 135, + 174, + 231, + 26, + 54, + 127, + 66, + 95, + 114, + 73, + 86, + 170, + 74, + 158, + 190, + 230, + 212, + 234, + 7, + 18, + 192, + 105, + 242, + 246, + 203, + 94, + 51, + 120, + 104, + 78, + 149, + 36, + 242, + 14, + 178, + 118, + 120, + 158, + 155, + 181, + 214, + 36, + 70, + 3, + 166, + 42, + 23, + 91, + 48, + 93, + 170, + 108, + 8, + 194, + 40, + 17, + 173, + 15, + 52, + 156, + 103, + 83, + 19, + 11, + 88, + 33, + 37, + 97, + 243, + 157, + 143, + 166, + 25, + 101, + 242, + 146, + 233, + 145, + 246, + 167, + 89, + 113, + 133, + 99, + 25, + 121, + 167, + 0, + 89, + 108, + 81, + 248, + 224, + 223, + 116, + 157, + 127, + 151, + 126, + 246, + 130, + 46, + 80, + 41, + 33, + 254, + 202, + 245, + 222, + 50, + 4, + 171, + 148, + 13, + 217, + 52, + 130, + 10, + 38, + 29, + 123, + 210, + 12, + 242, + 188, + 22, + 105, + 210, + 67, + 21, + 192, + 87, + 130, + 210, + 87, + 247, + 196, + 118, + 153, + 184, + 48, + 206, + 102, + 51, + 21, + 27, + 119, + 58, + 212, + 125, + 242, + 212, + 12, + 208, + 49, + 185, + 140, + 213, + 181, + 24, + 181, + 109, + 81, + 87, + 181, + 229, + 116, + 200, + 25, + 163, + 11, + 182, + 195, + 128, + 220, + 189, + 174, + 34, + 114, + 99, + 125, + 99, + 208, + 47, + 182, + 92, + 56, + 245, + 60, + 83, + 35, + 99, + 37, + 1, + 253, + 221, + 6, + 240, + 70, + 63, + 32, + 38, + 249, + 37, + 123, + 191, + 242, + 150, + 43, + 74, + 36, + 165, + 42, + 48, + 221, + 72, + 3, + 164, + 20, + 223, + 235, + 222, + 113, + 87, + 2, + 93, + 47, + 105, + 186, + 106, + 84, + 96, + 107, + 84, + 151, + 115, + 129, + 252, + 169, + 209, + 122, + 67, + 21, + 223, + 164, + 43, + 75, + 217, + 107, + 3, + 41, + 20, + 197, + 147, + 74, + 194, + 223, + 94, + 3, + 77, + 123, + 251, + 77, + 200, + 217, + 110, + 66, + 56, + 51, + 92, + 175, + 92, + 136, + 182, + 79, + 212, + 154, + 11, + 198, + 29, + 145, + 4, + 183, + 210, + 247, + 144, + 119, + 7, + 160, + 51, + 49, + 117, + 78, + 161, + 117, + 35, + 193, + 194, + 171, + 112, + 184, + 24, + 225, + 0, + 240, + 189, + 114, + 206, + 152, + 12, + 75, + 201, + 254, + 250, + 135, + 132, + 167, + 113, + 57, + 183, + 111, + 3, + 145, + 94, + 36, + 227, + 108, + 150, + 44, + 165, + 132, + 175, + 27, + 4, + 255, + 92, + 120, + 180, + 250, + 189, + 146, + 177, + 94, + 74, + 0, + 211, + 48, + 125, + 204, + 49, + 142, + 215, + 241, + 193, + 126, + 47, + 140, + 204, + 211, + 56, + 7, + 7, + 170, + 235, + 55, + 66, + 95, + 158, + 143, + 205, + 114, + 46, + 158, + 228, + 140, + 108, + 105, + 61, + 23, + 28, + 156, + 37, + 81, + 62, + 249, + 172, + 183, + 30, + 126, + 36, + 48, + 103, + 150, + 113, + 138, + 135, + 178, + 5, + 25, + 48, + 36, + 108, + 80, + 165, + 55, + 144, + 107, + 40, + 120, + 110, + 130, + 184, + 200, + 190, + 23, + 200, + 27, + 202, + 249, + 210, + 11, + 111, + 205, + 32, + 138, + 248, + 242, + 119, + 24, + 185, + 176, + 201, + 188, + 16, + 166, + 236, + 191, + 146, + 137, + 3, + 66, + 32, + 178, + 42, + 95, + 224, + 49, + 242, + 197, + 146, + 53, + 14, + 245, + 8, + 82, + 75, + 138, + 14, + 176, + 95, + 249, + 184, + 28, + 23, + 213, + 212, + 98, + 18, + 210, + 153, + 78, + 236, + 78, + 8, + 138, + 26, + 222, + 11, + 111, + 101, + 214, + 114, + 43, + 143, + 131, + 181, + 73, + 202, + 135, + 137, + 1, + 30, + 176, + 101, + 96, + 101, + 112, + 0, + 112, + 9, + 71, + 251, + 27, + 53, + 179, + 2, + 0, + 205, + 212, + 6, + 208, + 90, + 58, + 252, + 46, + 19, + 151, + 94, + 242, + 164, + 110, + 240, + 59, + 114, + 225, + 206, + 51, + 213, + 158, + 180, + 116, + 68, + 196, + 115, + 99, + 219, + 95, + 119, + 36, + 17, + 142, + 132, + 13, + 158, + 163, + 163, + 96, + 196, + 155, + 191, + 236, + 130, + 93, + 120, + 40, + 196, + 19, + 36, + 212, + 90, + 94, + 83, + 5, + 233, + 169, + 67, + 244, + 143, + 209, + 167, + 228, + 90, + 241, + 176, + 79, + 154, + 241, + 137, + 234, + 253, + 160, + 158, + 81, + 227, + 93, + 50, + 39, + 32, + 138, + 238, + 166, + 229, + 135, + 228, + 59, + 8, + 219, + 75, + 125, + 123, + 165, + 54, + 158, + 231, + 63, + 123, + 73, + 91, + 82, + 97, + 77, + 71, + 20, + 61, + 205, + 55, + 141, + 43, + 222, + 103, + 195, + 247, + 184, + 27, + 131, + 177, + 232, + 239, + 30, + 247, + 245, + 220, + 109, + 89, + 200, + 59, + 217, + 74, + 39, + 161, + 244, + 86, + 20, + 246, + 16, + 22, + 171, + 57, + 208, + 15, + 205, + 174, + 211, + 44, + 108, + 166, + 158, + 168, + 13, + 205, + 159, + 123, + 192, + 178, + 66, + 47, + 133, + 42, + 171, + 193, + 163, + 129, + 52, + 148, + 1, + 111, + 23, + 45, + 155, + 175, + 47, + 147, + 187, + 241, + 141, + 148, + 159, + 148, + 156, + 171, + 115, + 89, + 121, + 218, + 94, + 38, + 154, + 63, + 122, + 122, + 211, + 64, + 0, + 213, + 33, + 26, + 69, + 80, + 24, + 196, + 87, + 203, + 204, + 96, + 252, + 250, + 182, + 205, + 255, + 229, + 206, + 161, + 248, + 136, + 50, + 17, + 45, + 36, + 13, + 233, + 46, + 165, + 119, + 141, + 125, + 131, + 54, + 34, + 32, + 215, + 182, + 156, + 223, + 124, + 185, + 2, + 43, + 70, + 117, + 128, + 14, + 192, + 1, + 193, + 49, + 150, + 175, + 38, + 193, + 96, + 156, + 225, + 67, + 99, + 68, + 201, + 242, + 146, + 240, + 44, + 243, + 210, + 156, + 140, + 124, + 186, + 41, + 163, + 26, + 95, + 47, + 67, + 248, + 184, + 118, + 53, + 155, + 182, + 44, + 244, + 102, + 15, + 63, + 47, + 100, + 125, + 219, + 25, + 209, + 4, + 49, + 15, + 63, + 40, + 34, + 115, + 142, + 235, + 206, + 230, + 36, + 90, + 62, + 197, + 115, + 26, + 30, + 149, + 209, + 191, + 155, + 101, + 211, + 109, + 196, + 216, + 18, + 217, + 6, + 193, + 83, + 30, + 80, + 131, + 76, + 83, + 194, + 251, + 228, + 47, + 115, + 61, + 94, + 249, + 0, + 120, + 220, + 242, + 93, + 117, + 1, + 100, + 158, + 129, + 48, + 196, + 224, + 133, + 23, + 83, + 50, + 234, + 135, + 158, + 162, + 34, + 49, + 210, + 100, + 218, + 104, + 75, + 197, + 65, + 198, + 26, + 244, + 67, + 35, + 187, + 227, + 113, + 154, + 158, + 230, + 5, + 133, + 188, + 68, + 103, + 160, + 63, + 141, + 112, + 80, + 93, + 85, + 249, + 169, + 170, + 227, + 65, + 71, + 203, + 43, + 50, + 226, + 158, + 113, + 212, + 226, + 15, + 125, + 87, + 28, + 188, + 196, + 68, + 255, + 75, + 75, + 16, + 82, + 71, + 53, + 4, + 184, + 27, + 2, + 243, + 172, + 229, + 46, + 16, + 120, + 241, + 232, + 45, + 89, + 221, + 27, + 115, + 179, + 151, + 12, + 69, + 43, + 170, + 123, + 200, + 172, + 219, + 184, + 239, + 98, + 20, + 15, + 103, + 195, + 83, + 245, + 236, + 99, + 224, + 47, + 2, + 168, + 62, + 226, + 226, + 234, + 217, + 25, + 172, + 56, + 138, + 19, + 16, + 20, + 196, + 184, + 82, + 144, + 167, + 222, + 248, + 96, + 141, + 166, + 70, + 171, + 109, + 1, + 110, + 116, + 153, + 202, + 49, + 77, + 62, + 126, + 171, + 162, + 104, + 152, + 180, + 44, + 236, + 242, + 133, + 95, + 95, + 249, + 220, + 121, + 78, + 12, + 129, + 80, + 139, + 252, + 80, + 246, + 238, + 54, + 237, + 162, + 79, + 216, + 80, + 67, + 78, + 181, + 196, + 20, + 42, + 85, + 242, + 113, + 36, + 225, + 242, + 188, + 200, + 151, + 16, + 131, + 139, + 91, + 105, + 130, + 218, + 16, + 194, + 134, + 108, + 187, + 33, + 166, + 39, + 255, + 127, + 152, + 249, + 1, + 255, + 20, + 210, + 177, + 116, + 38, + 106, + 175, + 44, + 30, + 171, + 164, + 15, + 8, + 203, + 112, + 70, + 150, + 243, + 197, + 93, + 168, + 81, + 226, + 176, + 171, + 238, + 175, + 250, + 150, + 174, + 160, + 8, + 183, + 208, + 233, + 222, + 65, + 173, + 252, + 255, + 90, + 227, + 219, + 135, + 78, + 193, + 180, + 216, + 175, + 91, + 10, + 224, + 143, + 134, + 20, + 148, + 67, + 77, + 249, + 218, + 6, + 184, + 0, + 140, + 202, + 239, + 139, + 143, + 200, + 107, + 116, + 51, + 27, + 63, + 158, + 197, + 201, + 186, + 55, + 118, + 92, + 172, + 183, + 249, + 4, + 167, + 122, + 220, + 189, + 162, + 29, + 150, + 20, + 75, + 253, + 154, + 129, + 25, + 238, + 105, + 22, + 66, + 155, + 50, + 37, + 8, + 140, + 135, + 111, + 166, + 205, + 185, + 71, + 146, + 105, + 136, + 199, + 184, + 193, + 183, + 230, + 246, + 181, + 11, + 145, + 37, + 218, + 7, + 192, + 72, + 89, + 11, + 209, + 166, + 106, + 6, + 35, + 97, + 170, + 141, + 156, + 251, + 69, + 176, + 5, + 113, + 226, + 78, + 158, + 45, + 24, + 171, + 49, + 92, + 248, + 49, + 139, + 79, + 57, + 157, + 106, + 170, + 72, + 216, + 151, + 247, + 187, + 40, + 140, + 246, + 84, + 29, + 135, + 226, + 204, + 66, + 86, + 112, + 156, + 44, + 26, + 22, + 46, + 56, + 82, + 62, + 203, + 117, + 46, + 38, + 149, + 69, + 157, + 225, + 14, + 107, + 208, + 191, + 9, + 112, + 129, + 26, + 195, + 151, + 231, + 249, + 164, + 17, + 44, + 140, + 188, + 236, + 230, + 69, + 130, + 239, + 70, + 13, + 184, + 32, + 90, + 79, + 32, + 230, + 68, + 101, + 187, + 146, + 234, + 127, + 221, + 120, + 13, + 247, + 125, + 208, + 138, + 212, + 85, + 217, + 87, + 20, + 151, + 39, + 244, + 20, + 83, + 12, + 175, + 58, + 213, + 202, + 81, + 72, + 112, + 71, + 140, + 255, + 135, + 219, + 49, + 185, + 27, + 202, + 133, + 170, + 83, + 91, + 77, + 200, + 99, + 197, + 130, + 113, + 161, + 144, + 212, + 53, + 123, + 15, + 175, + 209, + 55, + 78, + 115, + 212, + 111, + 172, + 99, + 102, + 108, + 8, + 219, + 251, + 214, + 6, + 106, + 216, + 63, + 82, + 133, + 68, + 151, + 78, + 17, + 103, + 16, + 167, + 169, + 182, + 210, + 29, + 2, + 60, + 48, + 121, + 94, + 163, + 242, + 13, + 79, + 45, + 211, + 64, + 154, + 148, + 97, + 65, + 231, + 36, + 222, + 86, + 239, + 241, + 167, + 211, + 6, + 62, + 111, + 63, + 232, + 81, + 70, + 119, + 108, + 155, + 114, + 192, + 180, + 37, + 221, + 103, + 217, + 40, + 150, + 58, + 151, + 198, + 68, + 207, + 37, + 185, + 76, + 139, + 47, + 169, + 189, + 88, + 205, + 17, + 74, + 177, + 25, + 55, + 65, + 150, + 197, + 49, + 240, + 250, + 25, + 122, + 230, + 182, + 110, + 168, + 69, + 170, + 230, + 223, + 107, + 188, + 22, + 17, + 139, + 193, + 5, + 29, + 124, + 184, + 127, + 17, + 163, + 184, + 211, + 176, + 33, + 149, + 152, + 224, + 199, + 181, + 67, + 22, + 238, + 38, + 58, + 208, + 101, + 107, + 166, + 216, + 164, + 30, + 40, + 230, + 215, + 213, + 180, + 14, + 80, + 255, + 47, + 144, + 85, + 142, + 144, + 26, + 51, + 17, + 248, + 62, + 207, + 198, + 143, + 223, + 47, + 151, + 161, + 241, + 203, + 38, + 80, + 252, + 84, + 13, + 33, + 115, + 167, + 92, + 174, + 218, + 155, + 153, + 169, + 102, + 6, + 91, + 199, + 174, + 237, + 148, + 84, + 75, + 24, + 243, + 66, + 238, + 139, + 109, + 119, + 217, + 232, + 135, + 104, + 82, + 38, + 112, + 69, + 87, + 3, + 70, + 49, + 248, + 39, + 253, + 134, + 61, + 8, + 232, + 44, + 229, + 127, + 229, + 117, + 124, + 145, + 227, + 138, + 145, + 248, + 169, + 228, + 253, + 208, + 38, + 142, + 25, + 3, + 235, + 202, + 189, + 10, + 221, + 75, + 176, + 2, + 50, + 54, + 112, + 36, + 174, + 96, + 39, + 54, + 20, + 171, + 150, + 221, + 29, + 141, + 61, + 203, + 253, + 220, + 56, + 208, + 89, + 42, + 102, + 137, + 165, + 158, + 156, + 97, + 48, + 137, + 210, + 24, + 201, + 139, + 40, + 197, + 86, + 233, + 229, + 227, + 1, + 189, + 59, + 1, + 90, + 128, + 255, + 201, + 178, + 98, + 91, + 137, + 18, + 106, + 21, + 104, + 225, + 57, + 23, + 162, + 99, + 202, + 115, + 105, + 20, + 88, + 9, + 222, + 206, + 8, + 178, + 145, + 76, + 64, + 136, + 215, + 87, + 89, + 231, + 17, + 45, + 74, + 87, + 28, + 145, + 174, + 131, + 166, + 191, + 157, + 169, + 45, + 57, + 252, + 137, + 188, + 19, + 134, + 236, + 110, + 208, + 35, + 110, + 42, + 203, + 166, + 165, + 91, + 23, + 138, + 174, + 17, + 221, + 116, + 92, + 35, + 91, + 130, + 141, + 76, + 18, + 203, + 8, + 254, + 222, + 165, + 191, + 42, + 93, + 254, + 141, + 66, + 83, + 159, + 76, + 61, + 68, + 192, + 190, + 205, + 189, + 212, + 102, + 204, + 143, + 36, + 202, + 147, + 184, + 192, + 181, + 27, + 176, + 82, + 65, + 17, + 228, + 164, + 24, + 174, + 232, + 154, + 97, + 18, + 69, + 107, + 195, + 144, + 49, + 192, + 240, + 71, + 135, + 135, + 30, + 244, + 75, + 116, + 196, + 240, + 48, + 134, + 47, + 64, + 218, + 234, + 163, + 225, + 66, + 204, + 184, + 219, + 77, + 237, + 241, + 232, + 61, + 84, + 198, + 123, + 195, + 245, + 38, + 237, + 66, + 90, + 183, + 36, + 250, + 69, + 232, + 59, + 18, + 90, + 68, + 169, + 209, + 69, + 220, + 67, + 118, + 208, + 255, + 16, + 88, + 15, + 232, + 7, + 104, + 82, + 163, + 124, + 226, + 13, + 155, + 110, + 41, + 126, + 84, + 245, + 124, + 112, + 167, + 92, + 188, + 95, + 11, + 241, + 25, + 191, + 150, + 10, + 105, + 101, + 34, + 154, + 240, + 70, + 239, + 242, + 153, + 248, + 165, + 45, + 243, + 154, + 62, + 255, + 108, + 134, + 245, + 211, + 33, + 199, + 239, + 241, + 98, + 144, + 244, + 249, + 214, + 22, + 234, + 242, + 53, + 208, + 173, + 253, + 192, + 225, + 127, + 174, + 230, + 73, + 62, + 194, + 69, + 28, + 15, + 76, + 45, + 122, + 190, + 15, + 49, + 210, + 36, + 168, + 163, + 52, + 221, + 228, + 136, + 19, + 93, + 29, + 184, + 119, + 241, + 162, + 98, + 175, + 137, + 108, + 204, + 221, + 139, + 115, + 53, + 212, + 38, + 146, + 254, + 81, + 242, + 254, + 61, + 159, + 144, + 220, + 110, + 32, + 125, + 205, + 27, + 242, + 171, + 190, + 1, + 39, + 31, + 204, + 170, + 96, + 17, + 249, + 210, + 101, + 117, + 148, + 157, + 76, + 161, + 135, + 175, + 151, + 251, + 87, + 38, + 17, + 100, + 158, + 26, + 95, + 198, + 65, + 43, + 36, + 193, + 185, + 213, + 64, + 54, + 56, + 176, + 103, + 95, + 44, + 14, + 27, + 87, + 98, + 247, + 21, + 117, + 13, + 197, + 9, + 246, + 178, + 168, + 145, + 239, + 229, + 152, + 50, + 168, + 160, + 151, + 51, + 232, + 24, + 188, + 62, + 40, + 94, + 51, + 141, + 121, + 45, + 76, + 91, + 82, + 52, + 147, + 208, + 67, + 147, + 219, + 120, + 9, + 223, + 156, + 80, + 151, + 188, + 152, + 163, + 146, + 71, + 114, + 178, + 91, + 190, + 119, + 157, + 226, + 226, + 160, + 245, + 146, + 57, + 57, + 23, + 48, + 69, + 71, + 112, + 103, + 19, + 167, + 107, + 246, + 180, + 175, + 72, + 20, + 188, + 177, + 65, + 70, + 171, + 125, + 154, + 132, + 14, + 46, + 184, + 69, + 66, + 108, + 250, + 77, + 133, + 189, + 204, + 56, + 96, + 79, + 120, + 178, + 97, + 179, + 48, + 89, + 128, + 121, + 115, + 117, + 17, + 10, + 81, + 90, + 74, + 36, + 63, + 8, + 97, + 206, + 248, + 192, + 177, + 42, + 194, + 243, + 69, + 44, + 15, + 115, + 215, + 2, + 112, + 217, + 217, + 37, + 95, + 137, + 155, + 116, + 217, + 77, + 64, + 5, + 36, + 62, + 239, + 206, + 97, + 183, + 4, + 107, + 86, + 50, + 16, + 128, + 29, + 99, + 108, + 241, + 120, + 194, + 140, + 250, + 27, + 132, + 223, + 117, + 176, + 75, + 142, + 192, + 65, + 197, + 253, + 54, + 19, + 183, + 187, + 95, + 151, + 144, + 225, + 223, + 249, + 23, + 8, + 223, + 2, + 245, + 162, + 21, + 192, + 221, + 224, + 177, + 249, + 159, + 137, + 224, + 211, + 166, + 29, + 133, + 154, + 29, + 212, + 136, + 120, + 199, + 244, + 56, + 226, + 183, + 72, + 149, + 161, + 203, + 118, + 46, + 232, + 166, + 32, + 125, + 44, + 20, + 223, + 123, + 42, + 155, + 141, + 209, + 24, + 129, + 83, + 135, + 21, + 41, + 53, + 122, + 101, + 15, + 142, + 255, + 143, + 221, + 22, + 142, + 120 + ], + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 64, + 50, + 21, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 6, + 0, + 0, + 0, + 238, + 43, + 87, + 157, + 26, + 161, + 161, + 161, + 161, + 161, + 161, + 158, + 158, + 161, + 160, + 160, + 161, + 163, + 166, + 157, + 150, + 149, + 189, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 184, + 194, + 141, + 158, + 40, + 254, + 202, + 52, + 166, + 58, + 221, + 159, + 102, + 105, + 67, + 144, + 87, + 87, + 1, + 242, + 156, + 194, + 102, + 226, + 106, + 10, + 32, + 14, + 56, + 116, + 72, + 241, + 2, + 239, + 11, + 78, + 108, + 104, + 246, + 6, + 245, + 121, + 227, + 112, + 138, + 84, + 34, + 246, + 6, + 218, + 80, + 117, + 17, + 116, + 244, + 108, + 54, + 67, + 85, + 98, + 25, + 220, + 5, + 56, + 42, + 164, + 104, + 186, + 35, + 121, + 106, + 30, + 218, + 90, + 242, + 226, + 34, + 9, + 105, + 90, + 200, + 46, + 157, + 153, + 168, + 48, + 89, + 73, + 129, + 90, + 18, + 130, + 76, + 161, + 36, + 245, + 170, + 164, + 0, + 196, + 5, + 61, + 71, + 246, + 179, + 232, + 156, + 53, + 144, + 141, + 116, + 63, + 66, + 111, + 63, + 42, + 9, + 85, + 4, + 14, + 252, + 9, + 223, + 128, + 233, + 132, + 114, + 96, + 243, + 145, + 195, + 40, + 250, + 55, + 81, + 50, + 198, + 236, + 59, + 105, + 82, + 100, + 193, + 177, + 96, + 166, + 188, + 164, + 106, + 255, + 31, + 26, + 186, + 215, + 28, + 244, + 171, + 27, + 95, + 44, + 157, + 184, + 122, + 243, + 188, + 63, + 133, + 164, + 100, + 191, + 232, + 96, + 220, + 111, + 50, + 201, + 190, + 32, + 166, + 39, + 13, + 3, + 25, + 34, + 39, + 28, + 126, + 221, + 170, + 57, + 2, + 228, + 176, + 131, + 83, + 189, + 255, + 205, + 176, + 109, + 126, + 159, + 154, + 237, + 94, + 68, + 132, + 249, + 156, + 168, + 2, + 252, + 29, + 239, + 158, + 54, + 242, + 89, + 8, + 127, + 72, + 210, + 94, + 176, + 13, + 153, + 28, + 63, + 208, + 19, + 159, + 10, + 181, + 4, + 23, + 198, + 103, + 153, + 104, + 102, + 122, + 91, + 186, + 222, + 195, + 30, + 139, + 49, + 27, + 251, + 141, + 139, + 131, + 49, + 64, + 78, + 79, + 112, + 126, + 48, + 53, + 37, + 121, + 224, + 175, + 22, + 214, + 43, + 141, + 9, + 137, + 167, + 171, + 68, + 185, + 83, + 120, + 123, + 122, + 31, + 165, + 237, + 49, + 236, + 49, + 168, + 65, + 5, + 124, + 54, + 75, + 220, + 97, + 118, + 187, + 248, + 125, + 104, + 101, + 124, + 212, + 33, + 48, + 94, + 91, + 164, + 244, + 116, + 248, + 45, + 91, + 82, + 229, + 54, + 77, + 194, + 175, + 129, + 171, + 183, + 147, + 181, + 184, + 81, + 64, + 177, + 111, + 17, + 101, + 225, + 247, + 17, + 81, + 141, + 48, + 192, + 128, + 38, + 14, + 122, + 249, + 46, + 181, + 94, + 154, + 16, + 149, + 201, + 22, + 90, + 149, + 14, + 118, + 179, + 39, + 47, + 187, + 46, + 225, + 94, + 51, + 109, + 228, + 114, + 184, + 16, + 123, + 171, + 222, + 140, + 67, + 35, + 105, + 114, + 66, + 211, + 163, + 205, + 20, + 151, + 61, + 253, + 226, + 144, + 140, + 42, + 154, + 113, + 188, + 109, + 120, + 182, + 70, + 97, + 0, + 108, + 188, + 150, + 235, + 208, + 126, + 187, + 101, + 93, + 105, + 110, + 1, + 228, + 41, + 214, + 228, + 134, + 128, + 125, + 134, + 147, + 141, + 220, + 250, + 234, + 222, + 46, + 29, + 9, + 255, + 175, + 33, + 245, + 56, + 48, + 120, + 200, + 115, + 184, + 124, + 163, + 45, + 232, + 84, + 79, + 97, + 106, + 186, + 238, + 46, + 194, + 105, + 250, + 119, + 91, + 31, + 223, + 64, + 64, + 116, + 35, + 110, + 214, + 45, + 110, + 171, + 202, + 40, + 254, + 0, + 231, + 183, + 10, + 47, + 133, + 187, + 222, + 10, + 0, + 129, + 89, + 134, + 66, + 129, + 131, + 57, + 78, + 248, + 184, + 22, + 156, + 163, + 139, + 253, + 175, + 217, + 46, + 42, + 112, + 22, + 246, + 73, + 253, + 103, + 97, + 46, + 67, + 193, + 212, + 151, + 165, + 55, + 28, + 102, + 20, + 7, + 187, + 234, + 212, + 11, + 142, + 107, + 94, + 39, + 202, + 71, + 167, + 239, + 130, + 168, + 238, + 153, + 81, + 198, + 4, + 254, + 208, + 5, + 60, + 191, + 66, + 43, + 36, + 25, + 108, + 41, + 229, + 40, + 200, + 71, + 175, + 202, + 85, + 16, + 178, + 148, + 132, + 23, + 97, + 31, + 177, + 84, + 116, + 238, + 168, + 228, + 190, + 40, + 179, + 53, + 156, + 139, + 185, + 54, + 158, + 45, + 174, + 131, + 59, + 157, + 61, + 53, + 215, + 250, + 112, + 93, + 69, + 26, + 197, + 34, + 7, + 222, + 140, + 142, + 176, + 225, + 120, + 1, + 195, + 236, + 47, + 57, + 191, + 37, + 197, + 16, + 110, + 0, + 192, + 58, + 40, + 138, + 115, + 33, + 186, + 250, + 204, + 213, + 206, + 191, + 208, + 78, + 192, + 162, + 128, + 48, + 108, + 148, + 93, + 11, + 76, + 42, + 49, + 173, + 108, + 235, + 95, + 223, + 244, + 51, + 3, + 210, + 171, + 160, + 225, + 177, + 213, + 44, + 35, + 184, + 68, + 190, + 217, + 89, + 64, + 4, + 207, + 137, + 234, + 179, + 3, + 235, + 115, + 155, + 219, + 67, + 109, + 40, + 204, + 10, + 144, + 143, + 233, + 17, + 217, + 136, + 196, + 214, + 227, + 179, + 19, + 154, + 184, + 125, + 117, + 109, + 232, + 31, + 123, + 131, + 209, + 3, + 113, + 145, + 139, + 138, + 229, + 154, + 68, + 204, + 151, + 240, + 160, + 126, + 255, + 211, + 221, + 253, + 121, + 178, + 59, + 192, + 178, + 151, + 186, + 235, + 90, + 37, + 64, + 36, + 96, + 54, + 185, + 72, + 46, + 173, + 19, + 112, + 96, + 106, + 227, + 128, + 123, + 43, + 78, + 127, + 134, + 176, + 51, + 183, + 240, + 44, + 82, + 13, + 7, + 52, + 153, + 109, + 51, + 118, + 126, + 18, + 194, + 232, + 151, + 76, + 80, + 68, + 143, + 85, + 227, + 153, + 203, + 131, + 204, + 244, + 181, + 236, + 110, + 132, + 134, + 193, + 146, + 206, + 23, + 143, + 87, + 109, + 147, + 135, + 135, + 7, + 43, + 12, + 205, + 67, + 48, + 110, + 165, + 18, + 159, + 227, + 117, + 35, + 55, + 88, + 41, + 159, + 55, + 58, + 238, + 33, + 198, + 203, + 53, + 73, + 135, + 119, + 37, + 130, + 184, + 28, + 94, + 54, + 174, + 103, + 102, + 246, + 44, + 111, + 206, + 114, + 242, + 60, + 24, + 166, + 205, + 150, + 166, + 252, + 18, + 2, + 154, + 159, + 67, + 175, + 190, + 94, + 213, + 90, + 202, + 105, + 3, + 211, + 140, + 156, + 13, + 88, + 200, + 247, + 81, + 196, + 15, + 43, + 153, + 140, + 87, + 137, + 144, + 157, + 114, + 43, + 153, + 212, + 80, + 5, + 96, + 112, + 217, + 8, + 32, + 59, + 9, + 132, + 178, + 147, + 64, + 152, + 118, + 176, + 63, + 128, + 182, + 206, + 200, + 37, + 153, + 102, + 241, + 21, + 144, + 178, + 152, + 175, + 104, + 133, + 58, + 183, + 164, + 58, + 250, + 86, + 1, + 83, + 240, + 62, + 249, + 249, + 221, + 30, + 36, + 10, + 216, + 34, + 132, + 8, + 123, + 69, + 234, + 127, + 174, + 192, + 228, + 229, + 141, + 222, + 40, + 102, + 66, + 126, + 252, + 80, + 29, + 107, + 8, + 251, + 43, + 205, + 60, + 131, + 192, + 93, + 72, + 76, + 137, + 54, + 115, + 137, + 115, + 246, + 36, + 33, + 11, + 234, + 75, + 246, + 80, + 95, + 184, + 235, + 241, + 5, + 217, + 122, + 173, + 219, + 125, + 153, + 247, + 149, + 172, + 184, + 65, + 166, + 179, + 198, + 224, + 59, + 53, + 188, + 157, + 90, + 233, + 227, + 140, + 168, + 237, + 101, + 72, + 78, + 145, + 200, + 136, + 224, + 1, + 21, + 122, + 197, + 132, + 52, + 219, + 93, + 93, + 143, + 191, + 206, + 73, + 113, + 245, + 0, + 187, + 55, + 138, + 182, + 112, + 99, + 131, + 219, + 170, + 183, + 68, + 41, + 125, + 115, + 253, + 52, + 210, + 170, + 1, + 105, + 166, + 196, + 17, + 78, + 156, + 144, + 231, + 230, + 152, + 237, + 72, + 34, + 137, + 227, + 27, + 107, + 217, + 156, + 162, + 215, + 13, + 112, + 110, + 4, + 77, + 43, + 2, + 218, + 222, + 7, + 181, + 158, + 194, + 133, + 38, + 217, + 84, + 247, + 85, + 135, + 12, + 233, + 106, + 21, + 181, + 7, + 185, + 70, + 83, + 30, + 215, + 96, + 19, + 214, + 215, + 214, + 43, + 120, + 112, + 113, + 138, + 93, + 77, + 129, + 47, + 233, + 82, + 49, + 19, + 202, + 251, + 191, + 213, + 46, + 26, + 94, + 122, + 128, + 147, + 138, + 224, + 220, + 138, + 2, + 209, + 99, + 112, + 32, + 140, + 77, + 65, + 181, + 100, + 42, + 186, + 78, + 205, + 41, + 31, + 184, + 6, + 135, + 161, + 138, + 134, + 8, + 162, + 121, + 226, + 18, + 117, + 12, + 163, + 39, + 90, + 234, + 152, + 101, + 223, + 151, + 222, + 219, + 211, + 244, + 208, + 61, + 82, + 250, + 93, + 13, + 208, + 7, + 171, + 159, + 82, + 232, + 117, + 81, + 181, + 74, + 150, + 203, + 245, + 83, + 9, + 141, + 6, + 169, + 56, + 172, + 119, + 254, + 3, + 122, + 41, + 111, + 47, + 68, + 43, + 212, + 219, + 79, + 199, + 210, + 254, + 15, + 110, + 209, + 243, + 50, + 137, + 183, + 200, + 243, + 36, + 3, + 123, + 89, + 28, + 84, + 57, + 120, + 149, + 106, + 200, + 32, + 224, + 0, + 122, + 127, + 82, + 1, + 203, + 141, + 220, + 250, + 169, + 161, + 195, + 150, + 203, + 69, + 170, + 122, + 197, + 97, + 244, + 63, + 211, + 91, + 149, + 91, + 144, + 9, + 53, + 209, + 123, + 75, + 124, + 19, + 6, + 189, + 178, + 186, + 92, + 24, + 55, + 242, + 140, + 148, + 172, + 95, + 193, + 197, + 143, + 16, + 49, + 144, + 73, + 170, + 162, + 226, + 114, + 24, + 209, + 12, + 115, + 176, + 188, + 127, + 136, + 247, + 162, + 205, + 120, + 191, + 144, + 184, + 67, + 89, + 182, + 135, + 133, + 69, + 157, + 201, + 24, + 141, + 36, + 13, + 153, + 62, + 66, + 253, + 37, + 175, + 74, + 74, + 41, + 157, + 101, + 209, + 191, + 91, + 152, + 138, + 136, + 31, + 151, + 227, + 182, + 73, + 133, + 23, + 154, + 180, + 127, + 168, + 153, + 247, + 105, + 142, + 110, + 109, + 152, + 69, + 118, + 172, + 14, + 55, + 105, + 25, + 6, + 83, + 2, + 251, + 111, + 46, + 8, + 66, + 68, + 162, + 189, + 164, + 226, + 44, + 130, + 176, + 195, + 26, + 45, + 251, + 67, + 51, + 64, + 246, + 165, + 106, + 165, + 66, + 231, + 66, + 48, + 62, + 163, + 57, + 234, + 156, + 16, + 98, + 242, + 150, + 10, + 219, + 160, + 44, + 255, + 101, + 8, + 175, + 208, + 134, + 197, + 152, + 53, + 45, + 91, + 26, + 32, + 80, + 197, + 142, + 18, + 137, + 6, + 164, + 43, + 254, + 253, + 190, + 185, + 172, + 122, + 212, + 34, + 91, + 54, + 67, + 237, + 181, + 218, + 213, + 210, + 203, + 56, + 217, + 211, + 149, + 102, + 203, + 116, + 142, + 31, + 232, + 1, + 67, + 60, + 19, + 129, + 108, + 96, + 180, + 157, + 56, + 90, + 52, + 204, + 23, + 184, + 66, + 13, + 98, + 172, + 235, + 3, + 192, + 47, + 236, + 226, + 193, + 151, + 4, + 228, + 72, + 142, + 75, + 63, + 28, + 91, + 23, + 27, + 169, + 1, + 176, + 174, + 129, + 100, + 181, + 171, + 98, + 136, + 157, + 119, + 122, + 163, + 253, + 129, + 54, + 192, + 213, + 108, + 247, + 149, + 238, + 186, + 219, + 48, + 88, + 100, + 253, + 146, + 35, + 170, + 195, + 162, + 0, + 29, + 111, + 36, + 4, + 239, + 203, + 202, + 21, + 132, + 203, + 118, + 147, + 43, + 213, + 109, + 8, + 132, + 196, + 149, + 106, + 122, + 80, + 162, + 133, + 181, + 37, + 79, + 180, + 76, + 51, + 13, + 197, + 40, + 69, + 135, + 33, + 44, + 241, + 108, + 40, + 119, + 171, + 12, + 46, + 30, + 150, + 7, + 102, + 31, + 84, + 132, + 67, + 124, + 152, + 180, + 174, + 9, + 184, + 111, + 73, + 243, + 110, + 75, + 99, + 44, + 178, + 126, + 86, + 155, + 53, + 37, + 202, + 2, + 157, + 119, + 163, + 48, + 162, + 137, + 208, + 87, + 156, + 234, + 221, + 158, + 203, + 33, + 207, + 202, + 82, + 74, + 91, + 159, + 163, + 92, + 244, + 115, + 43, + 64, + 19, + 125, + 207, + 184, + 16, + 48, + 7, + 209, + 96, + 96, + 145, + 184, + 92, + 171, + 164, + 129, + 77, + 248, + 165, + 58, + 65, + 20, + 126, + 85, + 17, + 9, + 162, + 253, + 222, + 187, + 171, + 17, + 239, + 41, + 119, + 33, + 88, + 163, + 198, + 153, + 7, + 197, + 155, + 238, + 132, + 65, + 250, + 144, + 124, + 201, + 111, + 144, + 171, + 56, + 29, + 26, + 230, + 146, + 117, + 114, + 48, + 126, + 37, + 87, + 42, + 236, + 14, + 7, + 30, + 157, + 252, + 110, + 76, + 55, + 254, + 77, + 210, + 122, + 121, + 155, + 158, + 48, + 116, + 125, + 102, + 182, + 190, + 34, + 42, + 179, + 94, + 212, + 204, + 241, + 126, + 157, + 176, + 36, + 238, + 22, + 96, + 102, + 9, + 84, + 236, + 4, + 207, + 213, + 163, + 90, + 15, + 166, + 132, + 239, + 64, + 38, + 90, + 140, + 220, + 72, + 58, + 4, + 28, + 32, + 90, + 248, + 128, + 32, + 147, + 64, + 109, + 65, + 56, + 186, + 217, + 123, + 20, + 17, + 235, + 39, + 245, + 80, + 82, + 247, + 72, + 122, + 195, + 49, + 179, + 34, + 5, + 190, + 31, + 211, + 47, + 130, + 113, + 42, + 90, + 19, + 18, + 173, + 213, + 184, + 0, + 151, + 252, + 40, + 28, + 236, + 216, + 233, + 205, + 0, + 151, + 31, + 189, + 147, + 158, + 237, + 232, + 35, + 178, + 33, + 207, + 93, + 132, + 115, + 241, + 141, + 54, + 194, + 218, + 237, + 110, + 167, + 226, + 92, + 170, + 109, + 113, + 68, + 140, + 162, + 125, + 227, + 88, + 53, + 28, + 5, + 27, + 202, + 85, + 77, + 36, + 111, + 192, + 165, + 105, + 161, + 85, + 116, + 172, + 249, + 238, + 145, + 254, + 60, + 33, + 228, + 44, + 210, + 105, + 102, + 114, + 185, + 232, + 246, + 224, + 89, + 35, + 72, + 232, + 9, + 196, + 164, + 51, + 207, + 55, + 243, + 213, + 57, + 187, + 134, + 206, + 199, + 173, + 159, + 189, + 173, + 198, + 238, + 113, + 135, + 87, + 57, + 64, + 117, + 83, + 196, + 160, + 166, + 217, + 237, + 243, + 76, + 251, + 201, + 241, + 72, + 210, + 12, + 159, + 16, + 104, + 209, + 182, + 187, + 200, + 235, + 249, + 213, + 47, + 104, + 75, + 147, + 226, + 151, + 134, + 123, + 228, + 81, + 228, + 22, + 115, + 62, + 179, + 39, + 138, + 119, + 126, + 90, + 0, + 95, + 169, + 0, + 199, + 167, + 84, + 93, + 244, + 1, + 194, + 0, + 184, + 22, + 152, + 221, + 99, + 229, + 170, + 123, + 87, + 227, + 192, + 84, + 172, + 203, + 177, + 51, + 8, + 157, + 57, + 138, + 206, + 96, + 94, + 197, + 64, + 219, + 33, + 1, + 207, + 14, + 202, + 50, + 93, + 192, + 43, + 85, + 211, + 192, + 72, + 251, + 183, + 218, + 227, + 33, + 149, + 52, + 137, + 60, + 157, + 159, + 64, + 129, + 161, + 157, + 196, + 173, + 97, + 115, + 243, + 240, + 203, + 249, + 178, + 168, + 242, + 203, + 24, + 89, + 16, + 185, + 216, + 177, + 19, + 20, + 178, + 76, + 246, + 14, + 49, + 3, + 103, + 199, + 88, + 60, + 201, + 79, + 49, + 31, + 17, + 33, + 74, + 153, + 231, + 47, + 122, + 85, + 22, + 20, + 187, + 200, + 145, + 131, + 71, + 230, + 125, + 18, + 4, + 74, + 240, + 252, + 9, + 215, + 63, + 143, + 234, + 73, + 147, + 208, + 178, + 185, + 180, + 208, + 69, + 127, + 213, + 134, + 95, + 67, + 14, + 132, + 230, + 179, + 120, + 195, + 233, + 232, + 113, + 107, + 104, + 215, + 111, + 84, + 13, + 246, + 117, + 89, + 155, + 71, + 219, + 166, + 233, + 228, + 165, + 125, + 94, + 146, + 176, + 90, + 67, + 131, + 141, + 8, + 184, + 184, + 1, + 134, + 54, + 83, + 166, + 244, + 187, + 188, + 209, + 243, + 201, + 90, + 112, + 249, + 183, + 188, + 144, + 242, + 245, + 24, + 58, + 17, + 57, + 23, + 151, + 178, + 225, + 215, + 246, + 132, + 148, + 235, + 228, + 180, + 238, + 161, + 34, + 8, + 226, + 87, + 7, + 185, + 139, + 148, + 37, + 153, + 253, + 127, + 191, + 55, + 1, + 58, + 194, + 155, + 8, + 174, + 104, + 18, + 210, + 145, + 197, + 85, + 20, + 195, + 216, + 105, + 203, + 119, + 90, + 24, + 230, + 159, + 13, + 62, + 101, + 132, + 226, + 239, + 69, + 108, + 207, + 101, + 154, + 222, + 59, + 213, + 126, + 23, + 139, + 53, + 232, + 240, + 155, + 4, + 143, + 56, + 156, + 192, + 190, + 70, + 84, + 99, + 176, + 34, + 149, + 236, + 199, + 163, + 251, + 253, + 5, + 98, + 238, + 42, + 249, + 246, + 123, + 48, + 35, + 48, + 81, + 123, + 175, + 231, + 220, + 78, + 213, + 110, + 116, + 5, + 66, + 9, + 207, + 27, + 165, + 158, + 117, + 72, + 18, + 225, + 62, + 118, + 43, + 113, + 193, + 57, + 173, + 32, + 33, + 217, + 177, + 16, + 81, + 16, + 93, + 154, + 212, + 84, + 6, + 82, + 58, + 69, + 208, + 142, + 242, + 184, + 22, + 164, + 159, + 246, + 74, + 132, + 247, + 178, + 158, + 85, + 180, + 244, + 106, + 121, + 211, + 234, + 76, + 74, + 40, + 196, + 116, + 183, + 112, + 139, + 254, + 210, + 63, + 178, + 220, + 116, + 39, + 94, + 98, + 60, + 147, + 47, + 124, + 131, + 166, + 27, + 16, + 4, + 19, + 227, + 219, + 35, + 14, + 111, + 201, + 35, + 88, + 36, + 14, + 212, + 184, + 206, + 33, + 0, + 35, + 127, + 182, + 210, + 168, + 249, + 119, + 36, + 106, + 124, + 198, + 194, + 19, + 44, + 158, + 59, + 11, + 229, + 24, + 194, + 80, + 199, + 23, + 216, + 244, + 186, + 16, + 255, + 128, + 105, + 221, + 119, + 208, + 230, + 21, + 61, + 116, + 28, + 81, + 168, + 161, + 139, + 12, + 178, + 119, + 59, + 103, + 36, + 30, + 55, + 194, + 83, + 175, + 6, + 213, + 123, + 252, + 41, + 199, + 132, + 123, + 92, + 175, + 85, + 71, + 19, + 232, + 149, + 30, + 24, + 213, + 24, + 95, + 141, + 31, + 56, + 239, + 67, + 80, + 107, + 49, + 143, + 164, + 122, + 128, + 247, + 39, + 22, + 24, + 253, + 130, + 133, + 54, + 150, + 62, + 89, + 44, + 64, + 184, + 31, + 109, + 245, + 90, + 59, + 114, + 65, + 223, + 58, + 104, + 70, + 98, + 169, + 15, + 90, + 162, + 152, + 4, + 41, + 80, + 140, + 16, + 120, + 208, + 177, + 148, + 156, + 172, + 144, + 41, + 112, + 199, + 109, + 92, + 58, + 129, + 6, + 108, + 190, + 254, + 105, + 110, + 20, + 190, + 169, + 83, + 185, + 47, + 153, + 190, + 216, + 160, + 215, + 21, + 226, + 209, + 34, + 245, + 207, + 119, + 104, + 214, + 76, + 40, + 121, + 9, + 253, + 158, + 79, + 81, + 94, + 42, + 57, + 125, + 246, + 153, + 50, + 133, + 10, + 9, + 215, + 75, + 115, + 235, + 74, + 1, + 48, + 46, + 70, + 16, + 11, + 35, + 204, + 132, + 166, + 137, + 24, + 246, + 186, + 154, + 246, + 110, + 70, + 224, + 10, + 5, + 81, + 194, + 170, + 41, + 133, + 136, + 18, + 173, + 192, + 221, + 110, + 42, + 135, + 167, + 134, + 69, + 103, + 58, + 50, + 129, + 176, + 16, + 70, + 150, + 59, + 195, + 27, + 195, + 64, + 163, + 53, + 169, + 42, + 30, + 4, + 171, + 170, + 116, + 50, + 198, + 127, + 164, + 40, + 184, + 22, + 118, + 36, + 235, + 179, + 202, + 9, + 227, + 77, + 173, + 103, + 113, + 218, + 230, + 206, + 87, + 153, + 240, + 61, + 3, + 212, + 84, + 251, + 234, + 160, + 60, + 145, + 20, + 199, + 71, + 190, + 198, + 241, + 78, + 126, + 187, + 142, + 176, + 149, + 183, + 163, + 119, + 21, + 200, + 125, + 107, + 68, + 150, + 87, + 249, + 252, + 232, + 165, + 184, + 179, + 59, + 201, + 34, + 53, + 96, + 155, + 63, + 167, + 158, + 6, + 184, + 31, + 120, + 43, + 188, + 254, + 245, + 231, + 4, + 67, + 244, + 42, + 77, + 91, + 25, + 78, + 45, + 29, + 24, + 73, + 218, + 20, + 25, + 125, + 56, + 219, + 226, + 45, + 79, + 228, + 206, + 142, + 219, + 17, + 145, + 138, + 25, + 104, + 242, + 207, + 108, + 132, + 6, + 47, + 87, + 84, + 34, + 67, + 230, + 193, + 196, + 52, + 15, + 50, + 107, + 51, + 216, + 130, + 31, + 0, + 96, + 121, + 41, + 131, + 6, + 66, + 150, + 142, + 171, + 215, + 190, + 236, + 151, + 250, + 244, + 47, + 51, + 233, + 236, + 205, + 99, + 116, + 152, + 184, + 125, + 179, + 20, + 20, + 87, + 210, + 27, + 78, + 93, + 88, + 130, + 71, + 123, + 135, + 87, + 239, + 39, + 99, + 8, + 87, + 24, + 25, + 116, + 42, + 241, + 58, + 69, + 245, + 42, + 18, + 116, + 200, + 235, + 72, + 238, + 100, + 45, + 56, + 235, + 122, + 65, + 29, + 189, + 81, + 20, + 228, + 89, + 129, + 56, + 179, + 8, + 239, + 133, + 111, + 106, + 60, + 137, + 111, + 244, + 47, + 172, + 124, + 112, + 101, + 35, + 0, + 172, + 43, + 84, + 238, + 112, + 16, + 83, + 173, + 83, + 55, + 171, + 195, + 63, + 172, + 231, + 39, + 232, + 179, + 113, + 53, + 99, + 186, + 184, + 116, + 237, + 200, + 121, + 168, + 105, + 27, + 3, + 20, + 252, + 254, + 174, + 190, + 19, + 232, + 162, + 222, + 189, + 177, + 81, + 142, + 25, + 127, + 69, + 126, + 92, + 242, + 57, + 196, + 3, + 155, + 207, + 135, + 189, + 207, + 134, + 251, + 111, + 59, + 149, + 195, + 11, + 68, + 127, + 160, + 96, + 143, + 73, + 231, + 203, + 149, + 71, + 83, + 175, + 115, + 187, + 36, + 235, + 51, + 91, + 194, + 218, + 96, + 151, + 246, + 239, + 109, + 161, + 137, + 40, + 180, + 69, + 6, + 33, + 22, + 254, + 179, + 12, + 46, + 51, + 111, + 102, + 234, + 224, + 101, + 77, + 99, + 12, + 166, + 252, + 211, + 118, + 155, + 105, + 79, + 100, + 229, + 177, + 130, + 184, + 16, + 90, + 237, + 222, + 64, + 233, + 3, + 38, + 34, + 19, + 38, + 189, + 251, + 191, + 249, + 146, + 244, + 155, + 210, + 132, + 214, + 42, + 101, + 7, + 35, + 27, + 144, + 15, + 81, + 214, + 158, + 195, + 231, + 157, + 25, + 180, + 108, + 185, + 70, + 180, + 196, + 49, + 194, + 181, + 198, + 85, + 207, + 124, + 255, + 198, + 134, + 55, + 166, + 59, + 233, + 206, + 14, + 36, + 247, + 0, + 214, + 205, + 158, + 163, + 115, + 237, + 241, + 35, + 121, + 201, + 110, + 141, + 82, + 189, + 8, + 185, + 101, + 128, + 4, + 84, + 148, + 142, + 9, + 239, + 166, + 70, + 216, + 13, + 139, + 245, + 0, + 5, + 58, + 56, + 107, + 215, + 253, + 170, + 145, + 76, + 32, + 87, + 116, + 46, + 108, + 110, + 214, + 143, + 75, + 196, + 116, + 243, + 55, + 47, + 113, + 5, + 142, + 45, + 251, + 204, + 27, + 78, + 73, + 117, + 105, + 20, + 80, + 227, + 74, + 244, + 119, + 189, + 236, + 203, + 226, + 214, + 168, + 28, + 124, + 144, + 161, + 215, + 171, + 253, + 229, + 140, + 3, + 119, + 208, + 60, + 221, + 101, + 4, + 243, + 7, + 194, + 130, + 15, + 240, + 168, + 184, + 180, + 220, + 24, + 160, + 85, + 135, + 106, + 48, + 226, + 173, + 38, + 232, + 158, + 31, + 20, + 3, + 132, + 86, + 12, + 114, + 122, + 231, + 247, + 198, + 133, + 85, + 129, + 243, + 72, + 212, + 230, + 130, + 16, + 214, + 194, + 56, + 42, + 148, + 230, + 244, + 198, + 40, + 236, + 228, + 146, + 85, + 130, + 133, + 92, + 76, + 180, + 56, + 221, + 179, + 252, + 135, + 132, + 178, + 233, + 29, + 192, + 6, + 250, + 197, + 85, + 59, + 86, + 112, + 221, + 124, + 9, + 217, + 160, + 189, + 234, + 66, + 217, + 241, + 120, + 9, + 164, + 202, + 191, + 129, + 153, + 123, + 45, + 125, + 93, + 108, + 216, + 5, + 110, + 34, + 87, + 238, + 155, + 31, + 145, + 163, + 88, + 250, + 219, + 163, + 88, + 242, + 157, + 35, + 172, + 255, + 35, + 184, + 41, + 235, + 135, + 124, + 52, + 23, + 171, + 77, + 19, + 48, + 104, + 100, + 15, + 13, + 219, + 124, + 52, + 135, + 147, + 96, + 21, + 122, + 221, + 52, + 105, + 231, + 57, + 0, + 171, + 32, + 63, + 155, + 43, + 139, + 48, + 118, + 17, + 13, + 61, + 12, + 7, + 5, + 151, + 132, + 196, + 10, + 167, + 9, + 184, + 173, + 88, + 190, + 126, + 128, + 15, + 50, + 168, + 154, + 190, + 99, + 65, + 68, + 211, + 134, + 0, + 31, + 235, + 211, + 3, + 238, + 32, + 154, + 239, + 182, + 95, + 34, + 108, + 209, + 49, + 227, + 159, + 251, + 13, + 155, + 56, + 39, + 31, + 183, + 196, + 117, + 224, + 39, + 34, + 243, + 50, + 245, + 122, + 59, + 197, + 81, + 130, + 17, + 138, + 120, + 68, + 11, + 250, + 157, + 232, + 17, + 232, + 235, + 151, + 53, + 53, + 90, + 161, + 110, + 93, + 210, + 247, + 117, + 76, + 146, + 3, + 230, + 184, + 138, + 116, + 34, + 192, + 102, + 91, + 95, + 228, + 211, + 51, + 73, + 230, + 125, + 141, + 87, + 126, + 196, + 13, + 16, + 140, + 192, + 96, + 14, + 198, + 47, + 76, + 6, + 249, + 107, + 242, + 227, + 243, + 85, + 231, + 68, + 241, + 248, + 112, + 184, + 65, + 56, + 64, + 221, + 247, + 85, + 241, + 21, + 186, + 187, + 157, + 155, + 81, + 90, + 176, + 29, + 164, + 198, + 122, + 180, + 78, + 90, + 38, + 165, + 150, + 148, + 202, + 69, + 87, + 19, + 225, + 214, + 66, + 69, + 96, + 181, + 168, + 190, + 74, + 97, + 103, + 39, + 131, + 184, + 173, + 68, + 214, + 211, + 61, + 227, + 62, + 66, + 48, + 237, + 113, + 107, + 113, + 160, + 248, + 71, + 206, + 206, + 168, + 146, + 192, + 84, + 130, + 91, + 183, + 75, + 60, + 95, + 39, + 33, + 49, + 236, + 210, + 180, + 93, + 25, + 14, + 143, + 20, + 244, + 184, + 216, + 242, + 95, + 76, + 51, + 180, + 78, + 42, + 11, + 142, + 122, + 223, + 124, + 124, + 105, + 73, + 32, + 14, + 213, + 156, + 167, + 119, + 234, + 127, + 157, + 128, + 32, + 241, + 72, + 201, + 187, + 198, + 177, + 182, + 123, + 29, + 122, + 165, + 170, + 44, + 241, + 125, + 148, + 55, + 122, + 165, + 103, + 140, + 59, + 64, + 172, + 159, + 107, + 38, + 243, + 5, + 90, + 231, + 41, + 46, + 166, + 72, + 129, + 226, + 63, + 119, + 209, + 152, + 41, + 137, + 192, + 81, + 145, + 153, + 133, + 243, + 148, + 139, + 108, + 108, + 55, + 203, + 227, + 115, + 176, + 195, + 48, + 50, + 251, + 23, + 170, + 215, + 185, + 77, + 180, + 117, + 156, + 80, + 33, + 35, + 198, + 103, + 151, + 116, + 139, + 254, + 0, + 181, + 89, + 64, + 40, + 185, + 87, + 92, + 2, + 127, + 128, + 153, + 161, + 184, + 130, + 107, + 181, + 15, + 151, + 229, + 194, + 114, + 211, + 219, + 33, + 208, + 133, + 89, + 238, + 204, + 124, + 49, + 242, + 19, + 43, + 187, + 26, + 181, + 44, + 242, + 199, + 155, + 16, + 218, + 48, + 194, + 212, + 149, + 203, + 164, + 63, + 135, + 137, + 91, + 111, + 46, + 6, + 94, + 226, + 142, + 6, + 214, + 197, + 112, + 125, + 12, + 8, + 7, + 87, + 27, + 39, + 5, + 202, + 71, + 98, + 227, + 243, + 9, + 7, + 98, + 59, + 142, + 103, + 52, + 109, + 63, + 158, + 199, + 235, + 66, + 221, + 208, + 136, + 93, + 105, + 4, + 10, + 136, + 4, + 190, + 25, + 56, + 103, + 177, + 126, + 41, + 225, + 183, + 130, + 254, + 77, + 82, + 156, + 42, + 138, + 7, + 242, + 106, + 96, + 168, + 7, + 45, + 8, + 19, + 159, + 223, + 92, + 76, + 166, + 9, + 58, + 240, + 117, + 251, + 122, + 189, + 215, + 9, + 38, + 25, + 77, + 195, + 74, + 243, + 60, + 42, + 229, + 7, + 41, + 167, + 20, + 172, + 240, + 220, + 47, + 236, + 153, + 128, + 63, + 182, + 161, + 8, + 209, + 12, + 210, + 155, + 43, + 104, + 68, + 36, + 43, + 81, + 220, + 239, + 184, + 136, + 168, + 137, + 171, + 244, + 55, + 195, + 247, + 130, + 201, + 80, + 4, + 216, + 72, + 192, + 110, + 31, + 38, + 96, + 142, + 117, + 211, + 238, + 252, + 95, + 113, + 59, + 78, + 212, + 41, + 8, + 68, + 42, + 176, + 160, + 175, + 71, + 224, + 134, + 209, + 121, + 98, + 145, + 158, + 34, + 216, + 113, + 140, + 77, + 176, + 234, + 133, + 156, + 182, + 159, + 150, + 98, + 246, + 103, + 145, + 74, + 64, + 1, + 202, + 217, + 171, + 4, + 11, + 252, + 109, + 57, + 6, + 115, + 136, + 180, + 147, + 89, + 252, + 115, + 29, + 55, + 173, + 232, + 1, + 64, + 213, + 202, + 12, + 162, + 208, + 78, + 200, + 42, + 183, + 179, + 152, + 11, + 3, + 195, + 29, + 58, + 59, + 109, + 43, + 127, + 165, + 15, + 135, + 70, + 140, + 87, + 32, + 193, + 215, + 52, + 236, + 218, + 178, + 207, + 150, + 103, + 59, + 50, + 226, + 227, + 125, + 175, + 56, + 144, + 113, + 151, + 40, + 135, + 197, + 47, + 125, + 30, + 190, + 82, + 219, + 124, + 137, + 106, + 194, + 158, + 102, + 85, + 16, + 249, + 203, + 147, + 172, + 120, + 8, + 16, + 92, + 138, + 240, + 194, + 239, + 184, + 172, + 155, + 213, + 48, + 169, + 74, + 236, + 96, + 90, + 190, + 42, + 194, + 203, + 68, + 158, + 153, + 103, + 87, + 128, + 90, + 52, + 164, + 84, + 249, + 138, + 153, + 30, + 143, + 6, + 177, + 69, + 202, + 186, + 225, + 146, + 195, + 110, + 22, + 146, + 112, + 103, + 201, + 173, + 66, + 49, + 125, + 100, + 117, + 101, + 31, + 238, + 110, + 1, + 153, + 218, + 180, + 170, + 201, + 63, + 107, + 28, + 241, + 202, + 242, + 85, + 145, + 32, + 35, + 198, + 65, + 225, + 226, + 217, + 175, + 230, + 228, + 25, + 195, + 155, + 150, + 82, + 166, + 175, + 20, + 130, + 72, + 226, + 176, + 16, + 234, + 128, + 130, + 251, + 0, + 108, + 248, + 118, + 75, + 142, + 50, + 45, + 145, + 228, + 164, + 30, + 80, + 230, + 21, + 31, + 251, + 125, + 149, + 7, + 108, + 60, + 23, + 133, + 175, + 37, + 215, + 76, + 116, + 176, + 81, + 177, + 152, + 221, + 202, + 0, + 149, + 64, + 2, + 92, + 145, + 51, + 51, + 94, + 35, + 12, + 86, + 122, + 231, + 39, + 83, + 5, + 110, + 73, + 141, + 24, + 187, + 68, + 152, + 122, + 169, + 49, + 83, + 56, + 157, + 255, + 85, + 184, + 156, + 88, + 8, + 181, + 218, + 24, + 101, + 58, + 245, + 45, + 207, + 147, + 38, + 200, + 166, + 220, + 163, + 147, + 221, + 28, + 78, + 173, + 27, + 87, + 14, + 240, + 93, + 190, + 172, + 254, + 152, + 69, + 128, + 28, + 30, + 79, + 157, + 67, + 151, + 221, + 82, + 151, + 73, + 160, + 250, + 162, + 228, + 57, + 54, + 150, + 255, + 181, + 214, + 57, + 106, + 52, + 116, + 27, + 111, + 77, + 232, + 242, + 65, + 81, + 217, + 233, + 226, + 200, + 19, + 14, + 35, + 118, + 129, + 255, + 12, + 123, + 175, + 142, + 79, + 42, + 178, + 107, + 52, + 142, + 144, + 172, + 44, + 182, + 43, + 71, + 35, + 217, + 122, + 234, + 102, + 226, + 0, + 205, + 104, + 95, + 179, + 197, + 180, + 232, + 120, + 135, + 213, + 25, + 248, + 255, + 193, + 71, + 42, + 192, + 121, + 40, + 59, + 137, + 167, + 235, + 159, + 35, + 122, + 56, + 177, + 222, + 238, + 126, + 95, + 87, + 252, + 175, + 130, + 228, + 116, + 24, + 100, + 216, + 124, + 241, + 114, + 212, + 133, + 91, + 4, + 126, + 227, + 130, + 20, + 63, + 137, + 244, + 4, + 168, + 36, + 231, + 53, + 146, + 87, + 183 + ], + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 192, + 147, + 21, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 7, + 0, + 0, + 0, + 141, + 244, + 68, + 41, + 26, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 159, + 158, + 152, + 153, + 150, + 160, + 168, + 164, + 163, + 184, + 153, + 130, + 60, + 92, + 31, + 174, + 151, + 108, + 3, + 194, + 239, + 66, + 227, + 188, + 199, + 69, + 161, + 245, + 184, + 63, + 123, + 29, + 161, + 115, + 88, + 171, + 130, + 139, + 119, + 186, + 254, + 202, + 38, + 69, + 180, + 61, + 188, + 71, + 199, + 107, + 237, + 209, + 51, + 143, + 108, + 16, + 215, + 233, + 240, + 174, + 93, + 79, + 121, + 52, + 8, + 58, + 57, + 19, + 74, + 35, + 130, + 227, + 251, + 239, + 119, + 45, + 101, + 116, + 253, + 86, + 57, + 226, + 59, + 200, + 216, + 140, + 120, + 47, + 179, + 108, + 112, + 149, + 157, + 235, + 171, + 233, + 123, + 2, + 96, + 83, + 113, + 38, + 68, + 143, + 57, + 66, + 87, + 182, + 136, + 83, + 102, + 53, + 162, + 119, + 150, + 225, + 215, + 99, + 239, + 221, + 46, + 255, + 117, + 4, + 135, + 120, + 196, + 124, + 130, + 150, + 130, + 153, + 21, + 180, + 118, + 78, + 242, + 147, + 129, + 199, + 235, + 168, + 250, + 171, + 148, + 4, + 124, + 164, + 92, + 137, + 97, + 160, + 209, + 218, + 171, + 250, + 251, + 142, + 143, + 1, + 162, + 34, + 100, + 91, + 100, + 109, + 235, + 110, + 252, + 118, + 184, + 154, + 141, + 62, + 208, + 114, + 75, + 179, + 255, + 127, + 17, + 67, + 157, + 193, + 195, + 92, + 33, + 123, + 75, + 248, + 120, + 36, + 76, + 58, + 101, + 143, + 250, + 31, + 85, + 101, + 242, + 100, + 150, + 142, + 225, + 7, + 122, + 101, + 130, + 192, + 245, + 191, + 126, + 172, + 10, + 209, + 35, + 142, + 53, + 217, + 166, + 162, + 149, + 100, + 15, + 125, + 180, + 230, + 187, + 1, + 103, + 211, + 196, + 26, + 113, + 163, + 49, + 212, + 218, + 17, + 66, + 210, + 215, + 211, + 51, + 19, + 248, + 102, + 43, + 73, + 114, + 66, + 30, + 132, + 177, + 153, + 25, + 126, + 154, + 239, + 231, + 62, + 204, + 3, + 199, + 129, + 61, + 215, + 49, + 150, + 148, + 56, + 160, + 237, + 42, + 252, + 254, + 214, + 224, + 72, + 177, + 252, + 209, + 10, + 85, + 242, + 151, + 67, + 114, + 201, + 219, + 110, + 152, + 209, + 184, + 148, + 39, + 16, + 235, + 238, + 172, + 66, + 26, + 55, + 8, + 53, + 209, + 236, + 176, + 87, + 151, + 84, + 227, + 108, + 14, + 57, + 108, + 149, + 254, + 242, + 239, + 16, + 119, + 170, + 140, + 209, + 109, + 210, + 50, + 253, + 183, + 184, + 154, + 238, + 83, + 119, + 57, + 164, + 86, + 47, + 80, + 171, + 152, + 88, + 241, + 243, + 164, + 195, + 178, + 237, + 112, + 97, + 97, + 93, + 248, + 192, + 114, + 186, + 250, + 46, + 17, + 112, + 174, + 161, + 16, + 127, + 168, + 164, + 104, + 252, + 208, + 18, + 200, + 199, + 94, + 163, + 133, + 87, + 194, + 195, + 81, + 197, + 139, + 8, + 111, + 240, + 33, + 53, + 48, + 22, + 78, + 113, + 120, + 69, + 140, + 235, + 13, + 195, + 238, + 144, + 246, + 83, + 66, + 152, + 167, + 127, + 185, + 25, + 123, + 251, + 30, + 9, + 211, + 138, + 4, + 122, + 155, + 174, + 11, + 93, + 4, + 77, + 148, + 16, + 10, + 11, + 55, + 218, + 125, + 117, + 194, + 65, + 121, + 67, + 125, + 146, + 4, + 154, + 112, + 105, + 40, + 61, + 128, + 54, + 121, + 39, + 207, + 130, + 184, + 136, + 212, + 179, + 248, + 2, + 213, + 216, + 123, + 213, + 242, + 10, + 233, + 218, + 189, + 168, + 175, + 78, + 75, + 156, + 234, + 144, + 184, + 251, + 70, + 215, + 88, + 24, + 158, + 190, + 75, + 116, + 92, + 161, + 52, + 163, + 149, + 138, + 198, + 27, + 194, + 215, + 74, + 118, + 184, + 152, + 6, + 239, + 162, + 107, + 76, + 59, + 62, + 211, + 158, + 37, + 147, + 225, + 71, + 95, + 173, + 17, + 20, + 216, + 164, + 115, + 99, + 198, + 46, + 178, + 206, + 103, + 22, + 17, + 222, + 249, + 133, + 245, + 185, + 243, + 233, + 126, + 24, + 124, + 222, + 7, + 88, + 35, + 82, + 55, + 58, + 120, + 74, + 125, + 174, + 200, + 0, + 87, + 4, + 59, + 133, + 133, + 53, + 114, + 126, + 47, + 35, + 207, + 48, + 240, + 9, + 83, + 224, + 56, + 70, + 24, + 235, + 111, + 233, + 40, + 77, + 212, + 164, + 159, + 226, + 68, + 176, + 75, + 63, + 236, + 153, + 217, + 252, + 62, + 246, + 153, + 102, + 62, + 127, + 147, + 155, + 140, + 213, + 196, + 160, + 187, + 140, + 246, + 167, + 255, + 114, + 183, + 174, + 91, + 118, + 98, + 51, + 232, + 152, + 55, + 222, + 254, + 139, + 26, + 0, + 204, + 126, + 60, + 104, + 198, + 29, + 1, + 211, + 134, + 218, + 32, + 79, + 108, + 25, + 143, + 137, + 97, + 141, + 117, + 174, + 222, + 145, + 39, + 68, + 116, + 192, + 156, + 70, + 177, + 215, + 239, + 100, + 36, + 13, + 31, + 101, + 152, + 237, + 76, + 118, + 184, + 154, + 38, + 232, + 201, + 171, + 222, + 128, + 228, + 155, + 158, + 113, + 11, + 179, + 254, + 7, + 164, + 50, + 243, + 246, + 216, + 171, + 124, + 162, + 239, + 147, + 166, + 14, + 200, + 133, + 248, + 5, + 16, + 145, + 34, + 195, + 104, + 192, + 125, + 134, + 35, + 27, + 184, + 147, + 255, + 84, + 162, + 89, + 15, + 17, + 134, + 61, + 66, + 97, + 216, + 78, + 230, + 108, + 102, + 6, + 170, + 33, + 213, + 178, + 190, + 145, + 145, + 189, + 76, + 203, + 54, + 5, + 208, + 30, + 183, + 232, + 119, + 38, + 233, + 145, + 232, + 33, + 61, + 253, + 171, + 73, + 233, + 151, + 180, + 160, + 232, + 156, + 169, + 168, + 70, + 173, + 239, + 119, + 49, + 157, + 4, + 203, + 163, + 69, + 147, + 99, + 204, + 69, + 199, + 219, + 95, + 140, + 192, + 53, + 198, + 199, + 239, + 12, + 217, + 222, + 54, + 97, + 37, + 33, + 81, + 108, + 247, + 199, + 195, + 214, + 43, + 2, + 226, + 21, + 221, + 254, + 136, + 75, + 5, + 89, + 138, + 240, + 202, + 64, + 193, + 155, + 194, + 235, + 235, + 246, + 85, + 86, + 143, + 71, + 99, + 248, + 108, + 57, + 57, + 102, + 150, + 184, + 150, + 32, + 236, + 6, + 195, + 155, + 29, + 81, + 55, + 43, + 109, + 115, + 248, + 132, + 81, + 70, + 122, + 137, + 15, + 253, + 218, + 218, + 251, + 75, + 242, + 106, + 0, + 159, + 124, + 49, + 188, + 59, + 199, + 16, + 154, + 188, + 158, + 139, + 120, + 211, + 32, + 76, + 157, + 97, + 92, + 210, + 44, + 239, + 14, + 175, + 194, + 214, + 6, + 182, + 182, + 202, + 238, + 205, + 156, + 49, + 83, + 225, + 233, + 31, + 149, + 28, + 8, + 244, + 153, + 186, + 19, + 113, + 164, + 109, + 214, + 190, + 217, + 28, + 35, + 35, + 31, + 30, + 149, + 105, + 166, + 36, + 118, + 127, + 0, + 247, + 33, + 116, + 237, + 230, + 54, + 186, + 54, + 137, + 89, + 39, + 200, + 32, + 199, + 160, + 216, + 105, + 221, + 196, + 16, + 2, + 108, + 179, + 92, + 192, + 195, + 135, + 244, + 91, + 114, + 110, + 214, + 22, + 177, + 27, + 75, + 79, + 98, + 253, + 28, + 181, + 16, + 252, + 26, + 216, + 126, + 205, + 113, + 158, + 91, + 81, + 15, + 233, + 103, + 116, + 185, + 137, + 37, + 124, + 82, + 25, + 53, + 87, + 57, + 244, + 215, + 241, + 139, + 80, + 248, + 151, + 184, + 36, + 69, + 160, + 194, + 195, + 165, + 219, + 88, + 189, + 163, + 177, + 149, + 58, + 124, + 214, + 177, + 179, + 232, + 19, + 66, + 136, + 45, + 53, + 0, + 11, + 49, + 83, + 169, + 46, + 145, + 191, + 255, + 43, + 78, + 166, + 35, + 250, + 241, + 175, + 168, + 40, + 92, + 62, + 30, + 40, + 17, + 84, + 103, + 159, + 28, + 84, + 249, + 46, + 115, + 224, + 3, + 243, + 123, + 171, + 36, + 194, + 253, + 202, + 139, + 98, + 116, + 145, + 4, + 74, + 115, + 141, + 132, + 74, + 166, + 192, + 2, + 236, + 87, + 132, + 160, + 172, + 44, + 197, + 155, + 162, + 135, + 214, + 126, + 4, + 237, + 18, + 54, + 121, + 136, + 83, + 47, + 178, + 40, + 86, + 5, + 118, + 241, + 77, + 191, + 44, + 207, + 206, + 223, + 159, + 149, + 193, + 178, + 85, + 20, + 154, + 131, + 144, + 183, + 61, + 223, + 234, + 159, + 31, + 53, + 86, + 145, + 253, + 138, + 18, + 231, + 200, + 114, + 137, + 205, + 107, + 20, + 107, + 219, + 64, + 76, + 111, + 93, + 144, + 58, + 111, + 107, + 33, + 174, + 128, + 235, + 107, + 66, + 242, + 145, + 32, + 208, + 7, + 161, + 187, + 91, + 184, + 30, + 252, + 7, + 97, + 229, + 52, + 191, + 150, + 144, + 99, + 230, + 241, + 37, + 32, + 162, + 100, + 139, + 149, + 119, + 92, + 172, + 75, + 232, + 160, + 85, + 106, + 250, + 123, + 200, + 169, + 154, + 185, + 204, + 244, + 160, + 113, + 238, + 140, + 5, + 31, + 175, + 193, + 137, + 26, + 55, + 144, + 238, + 65, + 90, + 158, + 77, + 125, + 218, + 163, + 194, + 215, + 207, + 140, + 167, + 125, + 235, + 145, + 119, + 10, + 110, + 126, + 71, + 25, + 245, + 16, + 8, + 153, + 97, + 250, + 102, + 155, + 149, + 69, + 45, + 166, + 68, + 212, + 196, + 223, + 45, + 72, + 183, + 229, + 219, + 166, + 12, + 65, + 180, + 244, + 44, + 52, + 5, + 240, + 126, + 22, + 38, + 224, + 86, + 68, + 27, + 59, + 111, + 99, + 206, + 237, + 69, + 176, + 177, + 29, + 118, + 78, + 83, + 123, + 210, + 143, + 147, + 50, + 44, + 183, + 231, + 229, + 92, + 225, + 115, + 13, + 221, + 11, + 249, + 118, + 153, + 123, + 160, + 215, + 171, + 126, + 201, + 198, + 130, + 199, + 171, + 126, + 152, + 152, + 91, + 232, + 119, + 97, + 208, + 86, + 186, + 166, + 109, + 181, + 142, + 25, + 184, + 123, + 31, + 166, + 148, + 112, + 13, + 187, + 156, + 6, + 34, + 189, + 219, + 147, + 39, + 202, + 135, + 25, + 83, + 195, + 15, + 123, + 136, + 151, + 90, + 72, + 102, + 151, + 103, + 58, + 113, + 177, + 189, + 151, + 140, + 200, + 100, + 183, + 142, + 76, + 113, + 199, + 56, + 28, + 124, + 34, + 164, + 237, + 124, + 115, + 62, + 127, + 94, + 18, + 15, + 227, + 16, + 46, + 110, + 202, + 199, + 162, + 23, + 188, + 235, + 188, + 182, + 119, + 154, + 68, + 116, + 155, + 216, + 82, + 96, + 105, + 225, + 62, + 209, + 191, + 132, + 187, + 133, + 28, + 110, + 9, + 125, + 79, + 71, + 100, + 172, + 158, + 239, + 85, + 3, + 93, + 32, + 15, + 13, + 81, + 116, + 58, + 202, + 127, + 25, + 253, + 231, + 88, + 230, + 160, + 200, + 78, + 201, + 98, + 183, + 98, + 78, + 98, + 210, + 237, + 169, + 57, + 205, + 59, + 27, + 153, + 69, + 180, + 183, + 212, + 199, + 220, + 122, + 152, + 70, + 39, + 29, + 175, + 191, + 92, + 41, + 120, + 37, + 246, + 32, + 192, + 230, + 141, + 90, + 110, + 31, + 196, + 18, + 60, + 123, + 200, + 110, + 179, + 251, + 132, + 91, + 184, + 100, + 124, + 131, + 103, + 223, + 141, + 167, + 54, + 8, + 140, + 102, + 50, + 95, + 236, + 243, + 55, + 61, + 97, + 104, + 73, + 47, + 31, + 20, + 84, + 194, + 238, + 117, + 255, + 145, + 127, + 169, + 219, + 240, + 4, + 240, + 203, + 45, + 138, + 224, + 211, + 127, + 175, + 33, + 56, + 190, + 212, + 103, + 237, + 107, + 65, + 53, + 58, + 5, + 31, + 141, + 234, + 193, + 10, + 116, + 92, + 17, + 244, + 90, + 182, + 17, + 154, + 103, + 104, + 108, + 97, + 94, + 190, + 177, + 102, + 213, + 180, + 163, + 187, + 167, + 177, + 5, + 51, + 165, + 91, + 166, + 39, + 67, + 94, + 56, + 159, + 156, + 9, + 180, + 86, + 47, + 115, + 169, + 223, + 26, + 173, + 39, + 118, + 136, + 4, + 1, + 22, + 189, + 8, + 21, + 198, + 23, + 196, + 243, + 68, + 183, + 169, + 219, + 162, + 75, + 193, + 119, + 123, + 101, + 132, + 61, + 65, + 131, + 97, + 132, + 189, + 186, + 243, + 49, + 35, + 163, + 67, + 156, + 130, + 27, + 109, + 157, + 251, + 99, + 142, + 151, + 75, + 90, + 166, + 116, + 202, + 90, + 58, + 145, + 101, + 244, + 186, + 31, + 16, + 234, + 167, + 184, + 171, + 123, + 97, + 183, + 148, + 70, + 94, + 134, + 48, + 76, + 230, + 59, + 107, + 149, + 92, + 254, + 103, + 220, + 25, + 124, + 82, + 74, + 214, + 169, + 162, + 7, + 209, + 177, + 234, + 1, + 229, + 8, + 160, + 80, + 190, + 217, + 5, + 250, + 121, + 147, + 242, + 249, + 212, + 45, + 54, + 191, + 1, + 37, + 128, + 95, + 175, + 219, + 132, + 240, + 181, + 227, + 94, + 70, + 24, + 91, + 249, + 159, + 229, + 21, + 232, + 125, + 124, + 131, + 10, + 16, + 80, + 152, + 228, + 238, + 36, + 76, + 67, + 26, + 33, + 173, + 200, + 105, + 113, + 80, + 232, + 70, + 151, + 140, + 96, + 233, + 55, + 62, + 85, + 9, + 5, + 253, + 72, + 143, + 192, + 2, + 14, + 202, + 235, + 142, + 94, + 230, + 216, + 147, + 235, + 82, + 50, + 118, + 61, + 115, + 111, + 79, + 95, + 120, + 37, + 98, + 22, + 118, + 116, + 49, + 136, + 190, + 116, + 108, + 42, + 205, + 91, + 130, + 127, + 132, + 187, + 174, + 175, + 121, + 130, + 105, + 206, + 33, + 58, + 131, + 84, + 169, + 22, + 154, + 225, + 234, + 219, + 167, + 251, + 62, + 102, + 222, + 102, + 157, + 118, + 213, + 184, + 192, + 234, + 127, + 200, + 16, + 221, + 161, + 129, + 58, + 8, + 13, + 252, + 177, + 38, + 22, + 116, + 206, + 133, + 90, + 220, + 180, + 31, + 230, + 144, + 158, + 184, + 121, + 48, + 136, + 242, + 60, + 247, + 96, + 32, + 129, + 170, + 0, + 45, + 205, + 197, + 90, + 190, + 217, + 167, + 163, + 88, + 85, + 224, + 119, + 49, + 204, + 102, + 167, + 116, + 171, + 98, + 208, + 19, + 143, + 71, + 20, + 243, + 101, + 177, + 237, + 94, + 212, + 212, + 114, + 77, + 13, + 10, + 211, + 235, + 138, + 47, + 18, + 14, + 130, + 139, + 38, + 150, + 83, + 214, + 54, + 144, + 234, + 225, + 73, + 93, + 123, + 52, + 86, + 23, + 204, + 75, + 83, + 47, + 0, + 43, + 46, + 202, + 120, + 137, + 51, + 136, + 145, + 221, + 210, + 89, + 132, + 150, + 224, + 228, + 207, + 235, + 230, + 195, + 23, + 156, + 51, + 155, + 25, + 99, + 126, + 167, + 32, + 192, + 189, + 246, + 253, + 141, + 144, + 251, + 87, + 118, + 167, + 102, + 57, + 178, + 72, + 102, + 185, + 13, + 126, + 203, + 177, + 1, + 84, + 121, + 75, + 177, + 14, + 12, + 94, + 191, + 202, + 153, + 22, + 157, + 184, + 195, + 8, + 250, + 43, + 41, + 41, + 131, + 181, + 120, + 37, + 52, + 133, + 69, + 45, + 121, + 81, + 21, + 117, + 247, + 20, + 131, + 55, + 27, + 22, + 125, + 30, + 186, + 170, + 111, + 171, + 204, + 117, + 31, + 29, + 18, + 26, + 122, + 83, + 201, + 216, + 186, + 6, + 203, + 141, + 115, + 45, + 33, + 35, + 164, + 221, + 48, + 226, + 113, + 200, + 118, + 75, + 150, + 252, + 10, + 229, + 17, + 250, + 31, + 122, + 5, + 103, + 90, + 240, + 133, + 214, + 102, + 92, + 124, + 233, + 62, + 176, + 170, + 188, + 248, + 50, + 54, + 14, + 111, + 168, + 14, + 228, + 94, + 99, + 212, + 92, + 173, + 44, + 197, + 92, + 13, + 217, + 194, + 137, + 253, + 88, + 79, + 43, + 237, + 162, + 144, + 133, + 68, + 161, + 197, + 57, + 97, + 220, + 170, + 48, + 182, + 250, + 246, + 61, + 175, + 212, + 83, + 71, + 28, + 105, + 25, + 47, + 177, + 104, + 213, + 59, + 20, + 54, + 72, + 202, + 36, + 79, + 150, + 27, + 19, + 7, + 153, + 145, + 131, + 130, + 184, + 97, + 55, + 236, + 191, + 202, + 33, + 123, + 1, + 23, + 121, + 117, + 123, + 28, + 117, + 157, + 184, + 194, + 211, + 228, + 44, + 64, + 5, + 16, + 195, + 57, + 92, + 159, + 201, + 122, + 219, + 89, + 223, + 179, + 239, + 95, + 165, + 227, + 166, + 187, + 62, + 17, + 220, + 226, + 252, + 45, + 6, + 193, + 134, + 155, + 67, + 31, + 235, + 94, + 232, + 237, + 93, + 141, + 223, + 6, + 130, + 101, + 76, + 51, + 194, + 39, + 161, + 228, + 172, + 57, + 11, + 227, + 76, + 23, + 218, + 30, + 21, + 80, + 147, + 236, + 141, + 145, + 20, + 83, + 41, + 40, + 14, + 75, + 202, + 47, + 167, + 0, + 10, + 176, + 90, + 131, + 108, + 123, + 114, + 128, + 44, + 34, + 16, + 136, + 101, + 47, + 88, + 11, + 27, + 136, + 148, + 35, + 138, + 59, + 109, + 255, + 195, + 171, + 169, + 227, + 169, + 72, + 36, + 115, + 212, + 193, + 10, + 171, + 83, + 182, + 213, + 218, + 250, + 206, + 219, + 15, + 110, + 145, + 238, + 165, + 59, + 46, + 19, + 138, + 180, + 144, + 109, + 182, + 89, + 165, + 203, + 115, + 106, + 131, + 146, + 196, + 190, + 128, + 78, + 110, + 78, + 244, + 152, + 87, + 2, + 186, + 192, + 123, + 249, + 227, + 171, + 211, + 225, + 154, + 221, + 246, + 169, + 184, + 193, + 21, + 147, + 0, + 31, + 23, + 217, + 208, + 35, + 150, + 43, + 47, + 234, + 142, + 7, + 127, + 105, + 215, + 45, + 237, + 224, + 207, + 241, + 76, + 200, + 52, + 153, + 92, + 184, + 157, + 112, + 20, + 123, + 255, + 76, + 3, + 113, + 75, + 138, + 89, + 57, + 186, + 54, + 81, + 130, + 114, + 174, + 245, + 50, + 236, + 58, + 94, + 186, + 16, + 134, + 104, + 139, + 41, + 164, + 12, + 147, + 211, + 67, + 97, + 225, + 45, + 164, + 25, + 24, + 147, + 129, + 141, + 115, + 131, + 71, + 182, + 71, + 159, + 182, + 127, + 10, + 84, + 241, + 205, + 161, + 66, + 206, + 234, + 30, + 43, + 121, + 162, + 111, + 6, + 238, + 213, + 190, + 13, + 253, + 29, + 45, + 43, + 187, + 206, + 248, + 27, + 148, + 160, + 2, + 92, + 19, + 220, + 212, + 86, + 129, + 254, + 187, + 248, + 2, + 137, + 19, + 130, + 164, + 74, + 0, + 207, + 151, + 235, + 172, + 189, + 61, + 155, + 225, + 130, + 94, + 245, + 161, + 117, + 71, + 20, + 147, + 233, + 225, + 203, + 202, + 120, + 147, + 117, + 187, + 101, + 176, + 51, + 159, + 96, + 100, + 225, + 187, + 217, + 154, + 175, + 184, + 194, + 183, + 104, + 234, + 42, + 8, + 96, + 69, + 73, + 128, + 74, + 80, + 237, + 127, + 242, + 202, + 10, + 248, + 63, + 174, + 224, + 69, + 183, + 220, + 250, + 150, + 192, + 161, + 89, + 226, + 57, + 239, + 239, + 231, + 204, + 142, + 106, + 224, + 210, + 94, + 221, + 62, + 228, + 131, + 33, + 45, + 65, + 249, + 24, + 70, + 66, + 216, + 215, + 67, + 28, + 211, + 137, + 98, + 13, + 233, + 35, + 117, + 105, + 48, + 49, + 199, + 121, + 131, + 196, + 233, + 14, + 187, + 21, + 49, + 92, + 89, + 223, + 198, + 181, + 253, + 115, + 8, + 122, + 126, + 135, + 117, + 122, + 121, + 215, + 168, + 129, + 238, + 208, + 123, + 162, + 195, + 226, + 217, + 119, + 160, + 158, + 128, + 148, + 204, + 210, + 69, + 21, + 56, + 198, + 20, + 13, + 55, + 43, + 236, + 24, + 152, + 228, + 100, + 45, + 206, + 189, + 84, + 145, + 164, + 226, + 228, + 242, + 73, + 215, + 225, + 171, + 154, + 74, + 81, + 58, + 16, + 151, + 209, + 1, + 122, + 119, + 150, + 143, + 39, + 6, + 33, + 240, + 152, + 104, + 133, + 151, + 147, + 206, + 93, + 139, + 12, + 102, + 111, + 62, + 181, + 184, + 192, + 227, + 176, + 129, + 29, + 67, + 79, + 101, + 79, + 72, + 246, + 9, + 152, + 219, + 207, + 25, + 88, + 25, + 148, + 36, + 2, + 202, + 165, + 149, + 0, + 220, + 226, + 88, + 108, + 49, + 177, + 99, + 90, + 160, + 176, + 188, + 196, + 15, + 98, + 152, + 135, + 225, + 143, + 159, + 208, + 79, + 96, + 62, + 94, + 140, + 125, + 45, + 85, + 247, + 134, + 23, + 96, + 163, + 123, + 23, + 127, + 192, + 171, + 118, + 138, + 88, + 16, + 246, + 181, + 124, + 110, + 88, + 80, + 210, + 68, + 160, + 98, + 178, + 128, + 156, + 215, + 4, + 206, + 136, + 171, + 82, + 162, + 163, + 193, + 85, + 178, + 192, + 66, + 225, + 236, + 191, + 144, + 6, + 252, + 155, + 92, + 195, + 193, + 169, + 253, + 155, + 105, + 64, + 182, + 98, + 251, + 238, + 161, + 89, + 69, + 39, + 27, + 23, + 82, + 14, + 82, + 162, + 130, + 44, + 222, + 122, + 166, + 76, + 155, + 23, + 40, + 98, + 26, + 72, + 133, + 198, + 63, + 29, + 169, + 9, + 16, + 163, + 244, + 74, + 252, + 116, + 199, + 81, + 118, + 216, + 207, + 220, + 0, + 203, + 83, + 211, + 244, + 28, + 93, + 181, + 184, + 12, + 51, + 241, + 125, + 121, + 235, + 98, + 146, + 119, + 175, + 10, + 255, + 138, + 60, + 127, + 204, + 154, + 25, + 230, + 30, + 212, + 176, + 82, + 65, + 170, + 245, + 235, + 57, + 209, + 69, + 211, + 170, + 0, + 75, + 88, + 164, + 92, + 249, + 167, + 205, + 28, + 169, + 171, + 5, + 188, + 112, + 183, + 112, + 40, + 103, + 145, + 51, + 45, + 171, + 209, + 254, + 138, + 167, + 101, + 163, + 39, + 144, + 137, + 167, + 45, + 9, + 219, + 242, + 196, + 130, + 12, + 108, + 126, + 152, + 242, + 28, + 4, + 202, + 185, + 168, + 5, + 94, + 147, + 72, + 127, + 14, + 65, + 145, + 224, + 174, + 6, + 42, + 1, + 49, + 217, + 192, + 159, + 41, + 102, + 73, + 7, + 83, + 71, + 132, + 196, + 132, + 231, + 46, + 107, + 28, + 80, + 129, + 114, + 37, + 7, + 213, + 151, + 14, + 188, + 126, + 108, + 179, + 60, + 103, + 39, + 129, + 233, + 122, + 149, + 39, + 170, + 42, + 216, + 116, + 146, + 12, + 202, + 222, + 213, + 41, + 239, + 195, + 62, + 232, + 2, + 129, + 91, + 181, + 4, + 31, + 146, + 215, + 220, + 141, + 84, + 134, + 59, + 245, + 184, + 9, + 208, + 22, + 142, + 166, + 194, + 136, + 112, + 73, + 251, + 128, + 195, + 48, + 194, + 92, + 114, + 12, + 53, + 223, + 192, + 182, + 204, + 3, + 170, + 1, + 124, + 38, + 222, + 16, + 166, + 139, + 160, + 29, + 124, + 136, + 62, + 162, + 131, + 161, + 103, + 9, + 37, + 220, + 244, + 118, + 126, + 86, + 245, + 67, + 76, + 86, + 228, + 172, + 114, + 154, + 74, + 244, + 95, + 60, + 173, + 69, + 7, + 26, + 93, + 16, + 60, + 98, + 108, + 6, + 184, + 96, + 93, + 95, + 4, + 35, + 3, + 149, + 193, + 235, + 234, + 88, + 169, + 158, + 10, + 182, + 8, + 196, + 224, + 206, + 194, + 13, + 0, + 157, + 79, + 83, + 185, + 242, + 92, + 111, + 112, + 246, + 154, + 26, + 254, + 173, + 116, + 144, + 136, + 96, + 2, + 179, + 13, + 251, + 183, + 71, + 61, + 178, + 206, + 78, + 132, + 163, + 82, + 153, + 211, + 211, + 15, + 241, + 115, + 148, + 244, + 71, + 61, + 105, + 181, + 184, + 254, + 90, + 251, + 121, + 221, + 129, + 115, + 126, + 178, + 138, + 236, + 63, + 210, + 103, + 244, + 142, + 223, + 210, + 102, + 70, + 78, + 147, + 184, + 11, + 101, + 138, + 10, + 68, + 26, + 25, + 193, + 186, + 239, + 113, + 83, + 206, + 82, + 35, + 153, + 64, + 231, + 92, + 8, + 157, + 215, + 26, + 217, + 187, + 93, + 135, + 76, + 251, + 118, + 204, + 146, + 81, + 93, + 60, + 91, + 145, + 149, + 248, + 12, + 237, + 226, + 62, + 72, + 44, + 228, + 2, + 19, + 146, + 189, + 115, + 154, + 205, + 122, + 173, + 233, + 187, + 213, + 147, + 170, + 121, + 43, + 59, + 96, + 12, + 227, + 120, + 173, + 124, + 132, + 236, + 185, + 53, + 232, + 2, + 170, + 8, + 153, + 158, + 195, + 66, + 89, + 51, + 241, + 231, + 97, + 207, + 7, + 100, + 53, + 163, + 98, + 194, + 166, + 26, + 26, + 75, + 30, + 114, + 155, + 99, + 43, + 127, + 39, + 228, + 59, + 159, + 152, + 32, + 4, + 228, + 236, + 181, + 56, + 246, + 237, + 14, + 90, + 62, + 80, + 17, + 117, + 127, + 63, + 160, + 3, + 244, + 222, + 77, + 234, + 80, + 85, + 190, + 1, + 206, + 29, + 168, + 5, + 45, + 31, + 207, + 147, + 107, + 248, + 252, + 130, + 57, + 205, + 168, + 249, + 93, + 184, + 35, + 187, + 57, + 31, + 183, + 253, + 99, + 22, + 221, + 213, + 26, + 129, + 252, + 99, + 194, + 59, + 150, + 94, + 34, + 26, + 171, + 29, + 43, + 28, + 131, + 47, + 144, + 123, + 155, + 242, + 133, + 158, + 240, + 88, + 14, + 35, + 239, + 81, + 83, + 111, + 226, + 22, + 225, + 65, + 43, + 64, + 192, + 18, + 131, + 111, + 215, + 42, + 219, + 86, + 222, + 198, + 161, + 154, + 209, + 241, + 204, + 219, + 218, + 98, + 173, + 134, + 125, + 119, + 194, + 247, + 248, + 83, + 117, + 189, + 219, + 183, + 77, + 54, + 128, + 89, + 118, + 49, + 9, + 172, + 131, + 251, + 189, + 139, + 85, + 63, + 119, + 196, + 46, + 198, + 239, + 79, + 185, + 80, + 59, + 145, + 149, + 114, + 156, + 217, + 252, + 26, + 235, + 197, + 99, + 169, + 246, + 100, + 176, + 115, + 203, + 65, + 229, + 171, + 181, + 196, + 240, + 14, + 92, + 0, + 157, + 20, + 2, + 44, + 131, + 233, + 30, + 249, + 96, + 25, + 148, + 85, + 219, + 176, + 72, + 18, + 192, + 120, + 199, + 225, + 171, + 98, + 199, + 129, + 38, + 78, + 104, + 60, + 184, + 191, + 255, + 79, + 199, + 70, + 117, + 90, + 2, + 178, + 103, + 206, + 54, + 202, + 46, + 58, + 145, + 129, + 121, + 3, + 91, + 131, + 243, + 202, + 11, + 165, + 141, + 114, + 147, + 214, + 234, + 226, + 13, + 146, + 96, + 234, + 239, + 40, + 28, + 119, + 112, + 168, + 228, + 46, + 194, + 222, + 151, + 224, + 138, + 206, + 50, + 14, + 149, + 161, + 81, + 0, + 17, + 120, + 27, + 242, + 183, + 107, + 94, + 118, + 50, + 114, + 205, + 247, + 84, + 83, + 52, + 207, + 101, + 32, + 165, + 85, + 208, + 240, + 167, + 138, + 18, + 123, + 78, + 200, + 83, + 197, + 224, + 234, + 234, + 163, + 122, + 161, + 135, + 44, + 227, + 15, + 207, + 96, + 105, + 128, + 88, + 112, + 244, + 35, + 79, + 172, + 65, + 150, + 232, + 112, + 201, + 87, + 149, + 38, + 135, + 95, + 82, + 152, + 160, + 15, + 129, + 63, + 193, + 80, + 60, + 111, + 227, + 192, + 239, + 76, + 21, + 85, + 146, + 8, + 35, + 136, + 98, + 215, + 81, + 101, + 148, + 249, + 209, + 45, + 42, + 68, + 251, + 27, + 174, + 65, + 184, + 192, + 214, + 243, + 226, + 112, + 145, + 171, + 75, + 152, + 43, + 234, + 94, + 39, + 30, + 160, + 164, + 191, + 112, + 61, + 145, + 231, + 210, + 229, + 196, + 193, + 225, + 89, + 145, + 11, + 226, + 120, + 29, + 191, + 100, + 149, + 134, + 115, + 171, + 87, + 174, + 212, + 252, + 197, + 207, + 239, + 141, + 159, + 122, + 77, + 55, + 42, + 177, + 121, + 241, + 218, + 183, + 191, + 52, + 41, + 58, + 193, + 188, + 10, + 196, + 131, + 10, + 132, + 67, + 105, + 93, + 132, + 17, + 37, + 187, + 152, + 42, + 159, + 81, + 175, + 32, + 158, + 103, + 35, + 203, + 143, + 138, + 144, + 215, + 218, + 31, + 194, + 173, + 58, + 147, + 53, + 173, + 205, + 122, + 177, + 255, + 121, + 185, + 128, + 144, + 217, + 227, + 152, + 131, + 239, + 127, + 40, + 53, + 85, + 141, + 9, + 207, + 190, + 191, + 161, + 142, + 73, + 210, + 183, + 145, + 41, + 73, + 94, + 81, + 140, + 20, + 16, + 251, + 164, + 96, + 214, + 108, + 162, + 105, + 112, + 37, + 109, + 243, + 44, + 177, + 184, + 226, + 23, + 111, + 104, + 55, + 229, + 193, + 211, + 18, + 12, + 90, + 157, + 40, + 194, + 184, + 194, + 185, + 212, + 5, + 49, + 219, + 149, + 52, + 230, + 130, + 27, + 39, + 237, + 36, + 41, + 238, + 185, + 147, + 115, + 41, + 169, + 30, + 144, + 225, + 18, + 181, + 43, + 198, + 8, + 90, + 1, + 83, + 6, + 144, + 116, + 88, + 237, + 109, + 156, + 88, + 99, + 91, + 21, + 132, + 212, + 229, + 49, + 55, + 225, + 96, + 97, + 225, + 43, + 127, + 91, + 118, + 193, + 34, + 141, + 134, + 0, + 132, + 50, + 158, + 85, + 248, + 224, + 229, + 28, + 57, + 195, + 68, + 143, + 251, + 196, + 178, + 14, + 244, + 127, + 219, + 97, + 187, + 117, + 22, + 215, + 249, + 142, + 153, + 22, + 42, + 4, + 97, + 92, + 215, + 135, + 48, + 85, + 15, + 243, + 140, + 180, + 28, + 223, + 140, + 38, + 233, + 21, + 51, + 171, + 178, + 183, + 72, + 148, + 228, + 231, + 50, + 60, + 12, + 221, + 180, + 31, + 115, + 17, + 31, + 70, + 94, + 19, + 154, + 153, + 43, + 149, + 226, + 142, + 212, + 217, + 203, + 195, + 22, + 155, + 135, + 98, + 55, + 226, + 148, + 228, + 114, + 207, + 46, + 151, + 241, + 115, + 207, + 163, + 16, + 129, + 41, + 137, + 159, + 238, + 60, + 88, + 55, + 107, + 23, + 194, + 153, + 70, + 184, + 192, + 101, + 125, + 229, + 20, + 14, + 94, + 42, + 129, + 100, + 202, + 184, + 65, + 182, + 133, + 187, + 149, + 69, + 232, + 40, + 55, + 31, + 220, + 180, + 145, + 33, + 161, + 108, + 153, + 234, + 157, + 153, + 9, + 233, + 19, + 32, + 110, + 78, + 36, + 210, + 86, + 239, + 135, + 214, + 125, + 1, + 79, + 218, + 246, + 43, + 118, + 255, + 93, + 41, + 216, + 69, + 98, + 51, + 143, + 54, + 12, + 255, + 58, + 229, + 184, + 141, + 138, + 247, + 189, + 158, + 191, + 195, + 123, + 205, + 158, + 202, + 66, + 134, + 98, + 13, + 237, + 222, + 87, + 95, + 198, + 138, + 53, + 44, + 153, + 135, + 49, + 189, + 174, + 214, + 148, + 235, + 185, + 229, + 63, + 34, + 142, + 194, + 131, + 120, + 121, + 140, + 138, + 172, + 36, + 202, + 118, + 248, + 211, + 162, + 248, + 234, + 97, + 174, + 244, + 160, + 187, + 183, + 95, + 40, + 18, + 198, + 96, + 254, + 63, + 192, + 219, + 200, + 53, + 70, + 2, + 218, + 204, + 174, + 162, + 208, + 0, + 62, + 217, + 38, + 10, + 183, + 240, + 231, + 241, + 16, + 181, + 14, + 175, + 67, + 27, + 63, + 214, + 236, + 12, + 213, + 208, + 130, + 71, + 184, + 194, + 144, + 133, + 249, + 104, + 180, + 253, + 134, + 48, + 246, + 13, + 22, + 248, + 186, + 225, + 163, + 184, + 59, + 209, + 158, + 229, + 148, + 19, + 69, + 175, + 7, + 121, + 5, + 90, + 189, + 151, + 235, + 92, + 54, + 135, + 166, + 30, + 61, + 23, + 102, + 32, + 154, + 105, + 94, + 124, + 170, + 123, + 130, + 228, + 68, + 52, + 136, + 116, + 227, + 87, + 140, + 142, + 154, + 203, + 166, + 210, + 71, + 130, + 250, + 61, + 253, + 122, + 33, + 124, + 231, + 202, + 71, + 32, + 96, + 30, + 138, + 31, + 153, + 232, + 147, + 117, + 180, + 132, + 55, + 194, + 233, + 0, + 75, + 34, + 111, + 108, + 22, + 5, + 250, + 189, + 125, + 102, + 115, + 100, + 146, + 223, + 8, + 198, + 226, + 49, + 122, + 33, + 141, + 41, + 220, + 250, + 32, + 74, + 102, + 189, + 190, + 115, + 107, + 54, + 82, + 246, + 85, + 175, + 203, + 146, + 30, + 167, + 127, + 131, + 104, + 205, + 137, + 71, + 120, + 128, + 78, + 61, + 93, + 214, + 222, + 32, + 29, + 37, + 45, + 34, + 3, + 136, + 84, + 57, + 33, + 97, + 254, + 26, + 237, + 35, + 238, + 29, + 23, + 75, + 69, + 138, + 77 + ], + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 64, + 245, + 21, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 8, + 0, + 0, + 0, + 137, + 95, + 78, + 148, + 26, + 166, + 167, + 160, + 156, + 154, + 158, + 167, + 172, + 167, + 158, + 155, + 153, + 155, + 152, + 143, + 143, + 142, + 149, + 144, + 185, + 180, + 185, + 185, + 187, + 164, + 151, + 184, + 51, + 250, + 111, + 55, + 88, + 68, + 49, + 113, + 7, + 174, + 160, + 163, + 113, + 195, + 167, + 255, + 197, + 177, + 135, + 64, + 252, + 202, + 170, + 65, + 62, + 225, + 186, + 11, + 98, + 133, + 246, + 253, + 27, + 141, + 147, + 107, + 109, + 164, + 20, + 204, + 105, + 87, + 48, + 175, + 205, + 160, + 16, + 179, + 144, + 62, + 93, + 61, + 248, + 70, + 206, + 227, + 60, + 40, + 227, + 110, + 138, + 167, + 92, + 250, + 103, + 189, + 140, + 229, + 201, + 188, + 252, + 99, + 215, + 155, + 20, + 113, + 185, + 108, + 53, + 44, + 57, + 124, + 107, + 43, + 128, + 192, + 165, + 174, + 86, + 29, + 64, + 193, + 118, + 176, + 107, + 23, + 32, + 59, + 16, + 14, + 243, + 221, + 168, + 23, + 216, + 163, + 19, + 96, + 137, + 75, + 99, + 110, + 250, + 25, + 187, + 17, + 85, + 243, + 161, + 192, + 17, + 217, + 94, + 68, + 62, + 115, + 230, + 35, + 7, + 83, + 45, + 239, + 155, + 139, + 220, + 111, + 186, + 231, + 117, + 218, + 193, + 26, + 251, + 137, + 180, + 226, + 8, + 127, + 239, + 35, + 130, + 134, + 181, + 121, + 25, + 74, + 147, + 143, + 90, + 181, + 40, + 178, + 168, + 45, + 10, + 184, + 12, + 108, + 21, + 159, + 120, + 223, + 178, + 216, + 95, + 144, + 246, + 177, + 115, + 63, + 236, + 127, + 79, + 246, + 65, + 210, + 187, + 171, + 7, + 163, + 237, + 69, + 64, + 46, + 222, + 77, + 222, + 82, + 238, + 91, + 193, + 17, + 175, + 214, + 52, + 99, + 62, + 15, + 231, + 121, + 37, + 187, + 160, + 232, + 214, + 83, + 30, + 38, + 195, + 29, + 250, + 26, + 184, + 95, + 253, + 106, + 60, + 122, + 216, + 97, + 136, + 96, + 112, + 167, + 26, + 49, + 203, + 185, + 144, + 223, + 196, + 26, + 99, + 223, + 213, + 18, + 39, + 218, + 236, + 156, + 113, + 43, + 239, + 190, + 132, + 61, + 234, + 32, + 241, + 145, + 95, + 200, + 22, + 160, + 170, + 216, + 197, + 37, + 245, + 74, + 161, + 102, + 82, + 185, + 30, + 168, + 247, + 214, + 54, + 136, + 234, + 22, + 101, + 222, + 231, + 71, + 19, + 66, + 212, + 72, + 118, + 63, + 246, + 142, + 223, + 59, + 244, + 97, + 229, + 166, + 55, + 186, + 195, + 48, + 23, + 199, + 95, + 239, + 97, + 203, + 252, + 209, + 200, + 204, + 193, + 30, + 205, + 250, + 2, + 135, + 29, + 190, + 213, + 54, + 30, + 244, + 186, + 54, + 76, + 217, + 169, + 208, + 184, + 219, + 10, + 75, + 23, + 241, + 47, + 252, + 19, + 138, + 175, + 43, + 231, + 106, + 253, + 94, + 162, + 97, + 208, + 184, + 234, + 44, + 168, + 119, + 47, + 249, + 116, + 150, + 142, + 137, + 53, + 176, + 185, + 28, + 10, + 232, + 39, + 104, + 165, + 186, + 65, + 99, + 134, + 240, + 205, + 137, + 125, + 68, + 10, + 98, + 42, + 116, + 87, + 107, + 24, + 152, + 23, + 249, + 16, + 22, + 170, + 43, + 14, + 76, + 111, + 244, + 23, + 199, + 209, + 151, + 127, + 242, + 96, + 102, + 126, + 118, + 30, + 94, + 197, + 119, + 37, + 218, + 174, + 235, + 176, + 49, + 91, + 118, + 205, + 87, + 41, + 246, + 200, + 62, + 99, + 24, + 88, + 89, + 10, + 136, + 73, + 165, + 214, + 50, + 221, + 39, + 12, + 203, + 239, + 108, + 254, + 164, + 161, + 191, + 144, + 109, + 87, + 78, + 38, + 44, + 158, + 62, + 241, + 220, + 219, + 234, + 129, + 244, + 97, + 196, + 16, + 63, + 61, + 24, + 162, + 85, + 243, + 125, + 78, + 39, + 218, + 107, + 109, + 192, + 82, + 113, + 56, + 95, + 136, + 143, + 128, + 195, + 72, + 91, + 189, + 176, + 35, + 189, + 124, + 159, + 184, + 192, + 90, + 90, + 61, + 104, + 51, + 125, + 81, + 168, + 21, + 45, + 113, + 215, + 29, + 114, + 21, + 175, + 234, + 228, + 65, + 154, + 201, + 237, + 135, + 116, + 124, + 245, + 139, + 55, + 29, + 29, + 99, + 49, + 166, + 248, + 114, + 79, + 185, + 218, + 120, + 108, + 66, + 35, + 215, + 185, + 111, + 127, + 246, + 33, + 149, + 171, + 242, + 193, + 16, + 251, + 76, + 71, + 168, + 50, + 78, + 71, + 28, + 62, + 162, + 244, + 1, + 74, + 61, + 248, + 159, + 117, + 27, + 104, + 160, + 49, + 205, + 178, + 233, + 115, + 148, + 188, + 125, + 36, + 198, + 225, + 13, + 198, + 236, + 136, + 74, + 86, + 21, + 16, + 40, + 236, + 131, + 83, + 245, + 88, + 182, + 94, + 13, + 131, + 226, + 109, + 40, + 159, + 89, + 149, + 225, + 63, + 64, + 49, + 171, + 76, + 141, + 188, + 0, + 2, + 203, + 155, + 82, + 115, + 5, + 57, + 90, + 163, + 46, + 234, + 174, + 130, + 120, + 156, + 161, + 126, + 179, + 85, + 182, + 135, + 253, + 14, + 184, + 29, + 97, + 12, + 109, + 240, + 190, + 35, + 117, + 12, + 82, + 145, + 122, + 77, + 184, + 194, + 136, + 192, + 163, + 111, + 170, + 218, + 248, + 236, + 110, + 255, + 193, + 46, + 85, + 156, + 114, + 226, + 163, + 213, + 92, + 240, + 174, + 204, + 60, + 219, + 61, + 17, + 88, + 54, + 53, + 137, + 147, + 0, + 186, + 99, + 24, + 136, + 172, + 5, + 42, + 172, + 94, + 3, + 141, + 202, + 37, + 158, + 38, + 237, + 66, + 24, + 204, + 0, + 199, + 195, + 222, + 138, + 8, + 189, + 239, + 244, + 55, + 245, + 79, + 34, + 178, + 61, + 40, + 212, + 210, + 157, + 82, + 216, + 224, + 253, + 55, + 150, + 7, + 62, + 217, + 4, + 44, + 166, + 225, + 25, + 209, + 220, + 50, + 236, + 129, + 227, + 195, + 64, + 138, + 118, + 64, + 131, + 154, + 40, + 71, + 180, + 165, + 112, + 225, + 253, + 155, + 168, + 64, + 171, + 59, + 229, + 105, + 245, + 188, + 223, + 32, + 159, + 87, + 112, + 110, + 52, + 93, + 140, + 219, + 80, + 74, + 7, + 242, + 95, + 51, + 31, + 8, + 17, + 124, + 113, + 123, + 206, + 7, + 46, + 237, + 18, + 121, + 219, + 57, + 147, + 7, + 164, + 36, + 154, + 74, + 182, + 70, + 77, + 184, + 194, + 185, + 210, + 63, + 210, + 150, + 104, + 140, + 246, + 149, + 240, + 200, + 238, + 186, + 75, + 232, + 144, + 123, + 156, + 74, + 117, + 72, + 125, + 189, + 47, + 21, + 181, + 53, + 221, + 104, + 227, + 25, + 244, + 234, + 211, + 147, + 12, + 82, + 176, + 26, + 137, + 30, + 37, + 56, + 115, + 239, + 220, + 230, + 117, + 219, + 219, + 135, + 135, + 242, + 105, + 108, + 159, + 143, + 75, + 164, + 182, + 153, + 244, + 228, + 86, + 25, + 222, + 187, + 61, + 200, + 142, + 47, + 39, + 3, + 237, + 109, + 10, + 250, + 14, + 21, + 72, + 122, + 165, + 229, + 131, + 238, + 225, + 46, + 49, + 161, + 151, + 222, + 199, + 46, + 248, + 168, + 228, + 92, + 118, + 89, + 96, + 119, + 135, + 64, + 42, + 211, + 186, + 148, + 169, + 143, + 4, + 110, + 173, + 150, + 26, + 83, + 105, + 83, + 125, + 61, + 238, + 123, + 13, + 44, + 136, + 147, + 100, + 138, + 213, + 183, + 209, + 168, + 44, + 55, + 151, + 112, + 165, + 151, + 50, + 212, + 192, + 173, + 245, + 133, + 120, + 241, + 110, + 30, + 164, + 237, + 75, + 173, + 133, + 28, + 108, + 221, + 210, + 184, + 196, + 42, + 162, + 248, + 101, + 144, + 180, + 56, + 254, + 67, + 71, + 244, + 74, + 196, + 196, + 216, + 203, + 216, + 222, + 144, + 70, + 32, + 83, + 220, + 204, + 215, + 181, + 154, + 97, + 25, + 71, + 75, + 238, + 78, + 215, + 159, + 52, + 255, + 221, + 141, + 93, + 46, + 42, + 87, + 125, + 196, + 186, + 76, + 110, + 227, + 196, + 69, + 23, + 247, + 98, + 230, + 116, + 192, + 223, + 163, + 71, + 49, + 243, + 234, + 20, + 5, + 177, + 114, + 241, + 137, + 158, + 247, + 183, + 42, + 234, + 132, + 60, + 209, + 56, + 111, + 172, + 120, + 91, + 246, + 98, + 7, + 153, + 240, + 212, + 63, + 68, + 98, + 156, + 19, + 165, + 181, + 116, + 173, + 236, + 148, + 84, + 9, + 37, + 165, + 237, + 253, + 38, + 9, + 6, + 254, + 226, + 68, + 206, + 224, + 100, + 70, + 235, + 255, + 106, + 124, + 159, + 3, + 59, + 147, + 188, + 191, + 200, + 200, + 238, + 33, + 25, + 174, + 63, + 27, + 166, + 223, + 138, + 112, + 74, + 175, + 34, + 173, + 180, + 220, + 143, + 85, + 201, + 50, + 139, + 84, + 211, + 226, + 154, + 159, + 157, + 3, + 53, + 121, + 132, + 255, + 223, + 158, + 34, + 171, + 38, + 89, + 184, + 194, + 152, + 222, + 201, + 45, + 231, + 40, + 165, + 168, + 185, + 158, + 106, + 75, + 155, + 155, + 5, + 242, + 143, + 250, + 153, + 227, + 70, + 80, + 234, + 246, + 110, + 152, + 255, + 128, + 204, + 85, + 2, + 9, + 121, + 26, + 184, + 163, + 240, + 109, + 37, + 111, + 210, + 52, + 204, + 244, + 225, + 10, + 109, + 107, + 197, + 93, + 234, + 219, + 49, + 233, + 97, + 41, + 49, + 33, + 224, + 133, + 107, + 76, + 101, + 139, + 55, + 156, + 4, + 118, + 125, + 47, + 87, + 58, + 51, + 207, + 35, + 104, + 189, + 56, + 189, + 221, + 90, + 0, + 169, + 239, + 155, + 187, + 140, + 96, + 96, + 86, + 42, + 77, + 191, + 233, + 89, + 59, + 82, + 150, + 144, + 40, + 196, + 44, + 111, + 192, + 154, + 218, + 212, + 1, + 250, + 19, + 194, + 140, + 83, + 198, + 38, + 171, + 108, + 38, + 82, + 174, + 203, + 206, + 15, + 218, + 64, + 117, + 199, + 219, + 164, + 240, + 196, + 48, + 49, + 129, + 237, + 235, + 53, + 182, + 115, + 249, + 67, + 74, + 54, + 149, + 94, + 69, + 94, + 160, + 180, + 229, + 150, + 175, + 171, + 116, + 18, + 144, + 49, + 138, + 154, + 50, + 219, + 32, + 245, + 85, + 243, + 74, + 9, + 225, + 37, + 205, + 184, + 196, + 37, + 146, + 95, + 163, + 43, + 114, + 132, + 235, + 50, + 161, + 51, + 76, + 189, + 239, + 30, + 185, + 38, + 98, + 219, + 167, + 137, + 174, + 94, + 193, + 116, + 47, + 150, + 93, + 163, + 182, + 254, + 175, + 213, + 121, + 199, + 228, + 34, + 215, + 125, + 211, + 157, + 109, + 189, + 134, + 67, + 134, + 129, + 233, + 100, + 243, + 162, + 7, + 108, + 169, + 207, + 34, + 140, + 204, + 92, + 73, + 132, + 156, + 40, + 146, + 90, + 181, + 10, + 36, + 191, + 229, + 228, + 14, + 168, + 1, + 143, + 218, + 105, + 63, + 112, + 168, + 66, + 97, + 117, + 172, + 60, + 51, + 36, + 195, + 4, + 56, + 42, + 179, + 99, + 209, + 172, + 122, + 133, + 85, + 189, + 93, + 59, + 238, + 118, + 38, + 32, + 168, + 96, + 139, + 138, + 150, + 82, + 174, + 228, + 248, + 212, + 190, + 140, + 74, + 166, + 208, + 0, + 34, + 226, + 18, + 62, + 149, + 144, + 40, + 124, + 159, + 101, + 121, + 122, + 97, + 111, + 48, + 5, + 219, + 68, + 131, + 147, + 176, + 91, + 23, + 249, + 77, + 10, + 233, + 34, + 115, + 108, + 213, + 48, + 47, + 145, + 72, + 95, + 146, + 222, + 210, + 207, + 166, + 130, + 66, + 107, + 184, + 192, + 181, + 162, + 165, + 128, + 17, + 76, + 194, + 81, + 247, + 54, + 224, + 122, + 29, + 197, + 12, + 182, + 72, + 212, + 202, + 33, + 198, + 198, + 150, + 55, + 232, + 171, + 89, + 48, + 85, + 140, + 113, + 222, + 211, + 15, + 245, + 183, + 232, + 51, + 1, + 225, + 154, + 46, + 0, + 224, + 128, + 148, + 249, + 187, + 229, + 219, + 86, + 240, + 57, + 133, + 244, + 18, + 72, + 125, + 42, + 143, + 177, + 29, + 27, + 80, + 150, + 213, + 153, + 134, + 253, + 45, + 179, + 237, + 198, + 180, + 104, + 67, + 10, + 112, + 92, + 221, + 168, + 197, + 210, + 170, + 156, + 75, + 153, + 64, + 136, + 233, + 118, + 156, + 85, + 157, + 159, + 52, + 125, + 92, + 210, + 253, + 190, + 244, + 131, + 144, + 212, + 252, + 178, + 241, + 70, + 44, + 78, + 165, + 81, + 23, + 249, + 100, + 171, + 220, + 180, + 217, + 16, + 96, + 205, + 228, + 241, + 247, + 222, + 140, + 32, + 153, + 38, + 207, + 100, + 68, + 104, + 160, + 119, + 170, + 26, + 28, + 228, + 23, + 125, + 20, + 139, + 207, + 31, + 179, + 51, + 55, + 71, + 137, + 16, + 174, + 207, + 113, + 184, + 192, + 13, + 138, + 204, + 239, + 168, + 219, + 4, + 248, + 73, + 151, + 241, + 220, + 114, + 142, + 239, + 195, + 44, + 185, + 27, + 69, + 164, + 148, + 40, + 244, + 251, + 172, + 23, + 100, + 15, + 7, + 217, + 3, + 214, + 111, + 157, + 254, + 174, + 22, + 51, + 98, + 81, + 105, + 176, + 79, + 243, + 248, + 89, + 227, + 182, + 52, + 223, + 160, + 223, + 12, + 77, + 205, + 62, + 94, + 98, + 90, + 106, + 124, + 64, + 70, + 142, + 86, + 124, + 19, + 82, + 115, + 125, + 73, + 241, + 51, + 35, + 248, + 12, + 213, + 141, + 79, + 203, + 170, + 175, + 38, + 198, + 214, + 210, + 30, + 118, + 169, + 101, + 78, + 233, + 61, + 163, + 3, + 255, + 21, + 245, + 250, + 132, + 205, + 216, + 186, + 91, + 97, + 2, + 191, + 217, + 214, + 236, + 83, + 174, + 96, + 56, + 115, + 236, + 103, + 49, + 16, + 107, + 239, + 63, + 225, + 150, + 92, + 69, + 121, + 104, + 96, + 201, + 114, + 2, + 228, + 128, + 24, + 61, + 38, + 171, + 8, + 12, + 45, + 136, + 231, + 27, + 252, + 196, + 90, + 128, + 241, + 186, + 223, + 113, + 184, + 194, + 124, + 202, + 91, + 217, + 28, + 75, + 92, + 225, + 247, + 106, + 138, + 232, + 36, + 168, + 86, + 92, + 23, + 75, + 129, + 92, + 122, + 190, + 74, + 31, + 64, + 189, + 114, + 117, + 241, + 80, + 196, + 27, + 36, + 67, + 163, + 96, + 237, + 121, + 205, + 239, + 199, + 165, + 190, + 44, + 63, + 202, + 210, + 237, + 197, + 222, + 81, + 20, + 227, + 33, + 194, + 14, + 66, + 27, + 148, + 149, + 130, + 112, + 54, + 217, + 164, + 239, + 243, + 251, + 236, + 30, + 31, + 166, + 192, + 193, + 226, + 116, + 118, + 32, + 155, + 68, + 235, + 219, + 52, + 206, + 75, + 156, + 82, + 41, + 166, + 234, + 63, + 213, + 222, + 39, + 212, + 101, + 253, + 120, + 167, + 91, + 250, + 206, + 74, + 232, + 99, + 41, + 248, + 133, + 22, + 209, + 227, + 120, + 180, + 12, + 60, + 65, + 206, + 105, + 110, + 70, + 229, + 195, + 86, + 248, + 143, + 175, + 59, + 0, + 127, + 16, + 212, + 96, + 211, + 12, + 161, + 93, + 170, + 196, + 249, + 143, + 78, + 77, + 167, + 56, + 112, + 226, + 155, + 248, + 50, + 38, + 113, + 184, + 195, + 222, + 157, + 161, + 106, + 185, + 93, + 128, + 137, + 9, + 231, + 32, + 29, + 165, + 88, + 183, + 114, + 61, + 198, + 17, + 3, + 83, + 33, + 6, + 1, + 199, + 74, + 240, + 38, + 243, + 140, + 153, + 73, + 153, + 121, + 45, + 161, + 50, + 94, + 140, + 250, + 72, + 34, + 43, + 205, + 240, + 123, + 7, + 100, + 116, + 206, + 132, + 163, + 233, + 155, + 118, + 143, + 45, + 228, + 142, + 163, + 42, + 254, + 4, + 74, + 210, + 158, + 136, + 67, + 65, + 250, + 62, + 143, + 184, + 145, + 115, + 45, + 56, + 98, + 96, + 244, + 147, + 9, + 107, + 22, + 136, + 217, + 20, + 27, + 70, + 132, + 28, + 187, + 85, + 88, + 99, + 236, + 169, + 1, + 74, + 157, + 89, + 81, + 46, + 71, + 231, + 51, + 95, + 5, + 83, + 167, + 81, + 133, + 241, + 136, + 93, + 92, + 198, + 197, + 156, + 193, + 241, + 43, + 228, + 195, + 46, + 172, + 254, + 60, + 177, + 14, + 156, + 72, + 4, + 223, + 23, + 128, + 172, + 60, + 105, + 74, + 175, + 34, + 64, + 233, + 249, + 108, + 227, + 96, + 209, + 116, + 255, + 205, + 108, + 184, + 10, + 113, + 113, + 165, + 39, + 251, + 42, + 153, + 163, + 42, + 175, + 66, + 16, + 21, + 184, + 88, + 189, + 69, + 75, + 231, + 110, + 4, + 218, + 102, + 11, + 213, + 117, + 48, + 144, + 132, + 123, + 219, + 39, + 95, + 208, + 148, + 108, + 46, + 51, + 59, + 175, + 220, + 113, + 250, + 99, + 110, + 77, + 177, + 252, + 61, + 12, + 89, + 201, + 60, + 250, + 220, + 176, + 249, + 65, + 210, + 165, + 153, + 191, + 180, + 159, + 14, + 159, + 37, + 7, + 138, + 251, + 210, + 24, + 119, + 175, + 200, + 48, + 118, + 179, + 120, + 233, + 76, + 3, + 91, + 121, + 235, + 201, + 91, + 155, + 32, + 186, + 175, + 41, + 197, + 141, + 250, + 152, + 33, + 162, + 26, + 30, + 94, + 183, + 24, + 0, + 66, + 100, + 39, + 10, + 204, + 252, + 34, + 162, + 169, + 241, + 147, + 110, + 233, + 26, + 171, + 58, + 235, + 222, + 161, + 171, + 187, + 142, + 117, + 46, + 86, + 74, + 239, + 172, + 161, + 115, + 235, + 102, + 93, + 163, + 159, + 235, + 174, + 215, + 232, + 210, + 126, + 227, + 58, + 214, + 159, + 95, + 184, + 29, + 51, + 145, + 126, + 249, + 236, + 149, + 112, + 224, + 8, + 208, + 16, + 249, + 225, + 170, + 47, + 190, + 248, + 90, + 66, + 161, + 71, + 35, + 34, + 146, + 219, + 74, + 77, + 92, + 78, + 111, + 138, + 82, + 192, + 142, + 69, + 22, + 102, + 153, + 124, + 139, + 21, + 170, + 79, + 236, + 4, + 89, + 220, + 166, + 240, + 244, + 107, + 241, + 75, + 210, + 158, + 252, + 51, + 106, + 205, + 101, + 150, + 46, + 40, + 17, + 60, + 153, + 36, + 209, + 221, + 130, + 49, + 189, + 24, + 166, + 188, + 100, + 173, + 205, + 89, + 239, + 143, + 228, + 185, + 59, + 140, + 99, + 56, + 47, + 101, + 153, + 200, + 105, + 151, + 186, + 93, + 33, + 156, + 129, + 166, + 10, + 13, + 221, + 128, + 135, + 187, + 74, + 166, + 21, + 119, + 98, + 218, + 41, + 83, + 213, + 225, + 147, + 196, + 156, + 77, + 199, + 147, + 21, + 1, + 74, + 250, + 126, + 62, + 128, + 198, + 239, + 73, + 177, + 53, + 95, + 255, + 92, + 220, + 16, + 130, + 6, + 85, + 184, + 192, + 13, + 40, + 252, + 126, + 67, + 115, + 237, + 228, + 105, + 30, + 192, + 85, + 32, + 204, + 166, + 198, + 176, + 4, + 177, + 20, + 189, + 51, + 85, + 41, + 41, + 46, + 176, + 192, + 46, + 127, + 154, + 89, + 60, + 51, + 157, + 103, + 59, + 135, + 48, + 172, + 32, + 246, + 233, + 57, + 135, + 45, + 22, + 218, + 251, + 209, + 179, + 65, + 13, + 213, + 139, + 36, + 197, + 44, + 234, + 198, + 151, + 245, + 102, + 66, + 186, + 79, + 191, + 43, + 13, + 46, + 79, + 87, + 232, + 229, + 100, + 118, + 3, + 147, + 128, + 184, + 163, + 195, + 239, + 150, + 105, + 38, + 104, + 61, + 168, + 103, + 31, + 31, + 249, + 147, + 48, + 72, + 106, + 254, + 92, + 119, + 205, + 27, + 56, + 55, + 86, + 94, + 69, + 6, + 110, + 0, + 45, + 83, + 85, + 157, + 26, + 198, + 108, + 179, + 185, + 246, + 191, + 224, + 171, + 5, + 159, + 245, + 80, + 226, + 215, + 52, + 159, + 86, + 116, + 87, + 152, + 135, + 117, + 34, + 219, + 157, + 113, + 184, + 194, + 115, + 42, + 83, + 76, + 117, + 249, + 171, + 225, + 125, + 65, + 82, + 200, + 170, + 123, + 83, + 109, + 61, + 129, + 227, + 255, + 13, + 205, + 141, + 136, + 82, + 18, + 131, + 97, + 162, + 43, + 102, + 79, + 40, + 99, + 132, + 245, + 170, + 215, + 61, + 126, + 84, + 195, + 244, + 189, + 210, + 24, + 62, + 115, + 46, + 68, + 137, + 219, + 122, + 211, + 133, + 132, + 0, + 221, + 232, + 20, + 247, + 246, + 156, + 139, + 121, + 128, + 195, + 63, + 18, + 26, + 233, + 14, + 239, + 110, + 148, + 190, + 70, + 56, + 13, + 159, + 61, + 170, + 120, + 146, + 90, + 29, + 177, + 214, + 178, + 126, + 133, + 51, + 216, + 171, + 66, + 153, + 140, + 168, + 47, + 162, + 53, + 238, + 15, + 200, + 225, + 205, + 181, + 139, + 221, + 220, + 145, + 233, + 207, + 62, + 128, + 156, + 200, + 131, + 104, + 134, + 207, + 248, + 42, + 173, + 130, + 27, + 181, + 150, + 14, + 113, + 33, + 215, + 91, + 64, + 48, + 155, + 44, + 238, + 177, + 217, + 184, + 10, + 147, + 137, + 220, + 209, + 168, + 144, + 62, + 208, + 163, + 27, + 140, + 245, + 224, + 65, + 243, + 166, + 138, + 94, + 9, + 40, + 28, + 134, + 156, + 106, + 2, + 87, + 136, + 250, + 27, + 255, + 217, + 218, + 144, + 7, + 50, + 89, + 186, + 6, + 81, + 73, + 40, + 209, + 132, + 37, + 176, + 218, + 10, + 213, + 147, + 21, + 93, + 216, + 79, + 247, + 104, + 142, + 76, + 112, + 134, + 202, + 183, + 115, + 246, + 173, + 30, + 13, + 232, + 162, + 96, + 100, + 204, + 152, + 24, + 64, + 65, + 0, + 109, + 202, + 202, + 41, + 2, + 5, + 165, + 255, + 173, + 137, + 97, + 25, + 61, + 28, + 82, + 141, + 215, + 80, + 82, + 7, + 103, + 52, + 69, + 12, + 111, + 74, + 225, + 94, + 54, + 217, + 41, + 89, + 216, + 175, + 181, + 133, + 230, + 123, + 129, + 133, + 32, + 188, + 207, + 74, + 212, + 207, + 19, + 37, + 93, + 27, + 144, + 61, + 45, + 131, + 54, + 48, + 68, + 38, + 12, + 229, + 208, + 101, + 213, + 19, + 54, + 155, + 122, + 137, + 209, + 165, + 214, + 184, + 3, + 188, + 170, + 15, + 190, + 137, + 18, + 172, + 147, + 28, + 87, + 116, + 74, + 56, + 131, + 235, + 96, + 81, + 254, + 149, + 57, + 147, + 90, + 14, + 181, + 80, + 132, + 88, + 174, + 94, + 177, + 226, + 7, + 253, + 188, + 176, + 116, + 47, + 14, + 43, + 20, + 134, + 174, + 113, + 9, + 40, + 213, + 127, + 48, + 178, + 169, + 63, + 61, + 23, + 110, + 103, + 43, + 50, + 23, + 21, + 242, + 118, + 79, + 68, + 146, + 24, + 28, + 85, + 167, + 209, + 154, + 55, + 16, + 216, + 141, + 136, + 197, + 68, + 65, + 123, + 200, + 41, + 103, + 205, + 167, + 24, + 81, + 3, + 77, + 191, + 77, + 111, + 154, + 45, + 146, + 57, + 128, + 204, + 138, + 56, + 56, + 49, + 89, + 148, + 249, + 36, + 6, + 86, + 245, + 157, + 21, + 83, + 105, + 245, + 166, + 12, + 107, + 122, + 51, + 24, + 123, + 113, + 233, + 141, + 208, + 65, + 23, + 18, + 56, + 68, + 15, + 60, + 130, + 87, + 107, + 57, + 242, + 212, + 134, + 246, + 173, + 199, + 181, + 184, + 119, + 224, + 59, + 53, + 15, + 166, + 198, + 227, + 54, + 216, + 228, + 232, + 26, + 10, + 62, + 153, + 17, + 196, + 143, + 206, + 82, + 134, + 122, + 182, + 120, + 91, + 40, + 155, + 146, + 149, + 204, + 237, + 97, + 169, + 67, + 226, + 142, + 76, + 84, + 151, + 134, + 5, + 72, + 142, + 158, + 101, + 199, + 209, + 244, + 67, + 76, + 107, + 207, + 30, + 5, + 222, + 107, + 92, + 29, + 183, + 198, + 102, + 240, + 99, + 49, + 221, + 102, + 112, + 61, + 144, + 184, + 108, + 33, + 236, + 73, + 18, + 123, + 209, + 201, + 119, + 244, + 201, + 253, + 225, + 54, + 24, + 231, + 195, + 69, + 231, + 56, + 74, + 20, + 27, + 238, + 141, + 54, + 1, + 127, + 252, + 82, + 61, + 184, + 0, + 146, + 186, + 192, + 13, + 10, + 112, + 220, + 241, + 19, + 33, + 204, + 166, + 231, + 78, + 10, + 115, + 100, + 255, + 76, + 130, + 161, + 151, + 81, + 117, + 224, + 182, + 155, + 244, + 78, + 198, + 69, + 59, + 77, + 60, + 160, + 64, + 12, + 59, + 152, + 106, + 212, + 205, + 254, + 18, + 200, + 20, + 56, + 15, + 152, + 91, + 56, + 255, + 90, + 83, + 103, + 121, + 233, + 202, + 48, + 103, + 91, + 147, + 65, + 38, + 87, + 146, + 112, + 250, + 160, + 181, + 125, + 234, + 186, + 94, + 72, + 153, + 217, + 82, + 222, + 133, + 184, + 22, + 50, + 224, + 134, + 28, + 60, + 209, + 99, + 24, + 245, + 174, + 182, + 35, + 135, + 219, + 1, + 132, + 237, + 159, + 246, + 197, + 180, + 211, + 13, + 117, + 53, + 138, + 182, + 232, + 48, + 157, + 115, + 87, + 147, + 172, + 216, + 98, + 24, + 153, + 194, + 186, + 225, + 9, + 147, + 143, + 43, + 79, + 28, + 251, + 144, + 141, + 55, + 172, + 181, + 27, + 78, + 189, + 79, + 178, + 247, + 131, + 210, + 25, + 206, + 51, + 112, + 184, + 94, + 141, + 118, + 136, + 184, + 209, + 8, + 0, + 1, + 76, + 96, + 217, + 18, + 147, + 15, + 229, + 0, + 128, + 114, + 199, + 130, + 68, + 89, + 70, + 244, + 247, + 98, + 22, + 105, + 163, + 64, + 92, + 208, + 228, + 145, + 10, + 126, + 97, + 254, + 153, + 40, + 138, + 247, + 102, + 131, + 42, + 83, + 45, + 213, + 131, + 85, + 40, + 28, + 192, + 52, + 95, + 204, + 142, + 242, + 147, + 230, + 95, + 0, + 204, + 107, + 89, + 82, + 235, + 73, + 32, + 136, + 95, + 246, + 143, + 236, + 206, + 125, + 155, + 157, + 3, + 181, + 149, + 3, + 34, + 67, + 51, + 212, + 11, + 150, + 56, + 210, + 235, + 128, + 206, + 130, + 159, + 149, + 12, + 166, + 111, + 186, + 56, + 215, + 1, + 104, + 189, + 192, + 169, + 186, + 59, + 68, + 249, + 184, + 36, + 129, + 224, + 65, + 92, + 179, + 177, + 102, + 177, + 255, + 144, + 212, + 16, + 199, + 159, + 37, + 133, + 73, + 242, + 242, + 243, + 29, + 196, + 157, + 114, + 169, + 157, + 152, + 160, + 244, + 221, + 56, + 83, + 91, + 168, + 22, + 239, + 58, + 190, + 215, + 49, + 96, + 208, + 240, + 192, + 88, + 116, + 239, + 253, + 199, + 159, + 148, + 64, + 87, + 123, + 156, + 69, + 43, + 98, + 207, + 41, + 62, + 226, + 174, + 196, + 40, + 123, + 81, + 252, + 231, + 235, + 65, + 55, + 186, + 132, + 122, + 137, + 187, + 78, + 39, + 159, + 203, + 115, + 20, + 231, + 21, + 25, + 13, + 59, + 76, + 125, + 149, + 125, + 57, + 78, + 34, + 181, + 145, + 82, + 33, + 52, + 112, + 145, + 205, + 132, + 198, + 210, + 180, + 141, + 26, + 78, + 182, + 145, + 6, + 108, + 227, + 156, + 170, + 31, + 252, + 211, + 229, + 122, + 184, + 254, + 244, + 153, + 252, + 240, + 140, + 100, + 182, + 70, + 58, + 152, + 226, + 195, + 196, + 104, + 74, + 108, + 112, + 202, + 26, + 155, + 65, + 255, + 182, + 196, + 145, + 251, + 52, + 0, + 142, + 28, + 10, + 124, + 167, + 194, + 64, + 173, + 3, + 37, + 72, + 193, + 106, + 170, + 221, + 69, + 255, + 81, + 128, + 239, + 51, + 33, + 145, + 14, + 60, + 120, + 229, + 74, + 52, + 243, + 10, + 184, + 32, + 117, + 1, + 182, + 187, + 64, + 9, + 1, + 181, + 203, + 228, + 37, + 61, + 229, + 189, + 74, + 195, + 30, + 90, + 83, + 205, + 160, + 130, + 25, + 8, + 119, + 47, + 15, + 7, + 127, + 236, + 223, + 118, + 60, + 227, + 26, + 26, + 95, + 127, + 62, + 46, + 61, + 45, + 82, + 23, + 92, + 164, + 14, + 74, + 70, + 176, + 65, + 146, + 147, + 151, + 50, + 139, + 85, + 228, + 243, + 183, + 242, + 223, + 233, + 231, + 21, + 120, + 100, + 198, + 138, + 215, + 38, + 81, + 46, + 202, + 1, + 79, + 87, + 25, + 113, + 21, + 18, + 96, + 95, + 221, + 159, + 16, + 77, + 232, + 16, + 53, + 159, + 96, + 162, + 85, + 246, + 107, + 212, + 137, + 74, + 69, + 225, + 125, + 249, + 93, + 171, + 253, + 163, + 76, + 155, + 36, + 63, + 163, + 192, + 206, + 132, + 41, + 197, + 60, + 252, + 21, + 250, + 230, + 36, + 161, + 92, + 2, + 101, + 30, + 51, + 98, + 85, + 221, + 145, + 194, + 21, + 244, + 205, + 201, + 222, + 94, + 91, + 130, + 137, + 81, + 177, + 207, + 124, + 185, + 170, + 54, + 117, + 250, + 195, + 187, + 190, + 246, + 23, + 101, + 196, + 220, + 200, + 113, + 187, + 7, + 12, + 59, + 127, + 219, + 204, + 22, + 144, + 0, + 120, + 57, + 209, + 106, + 226, + 209, + 44, + 62, + 2, + 223, + 156, + 184, + 10, + 16, + 119, + 121, + 51, + 81, + 37, + 172, + 164, + 77, + 111, + 34, + 188, + 59, + 64, + 71, + 237, + 241, + 182, + 156, + 156, + 48, + 203, + 145, + 31, + 96, + 168, + 59, + 49, + 164, + 58, + 143, + 182, + 159, + 52, + 35, + 127, + 134, + 134, + 226, + 159, + 148, + 161, + 22, + 174, + 235, + 94, + 197, + 239, + 64, + 176, + 159, + 27, + 206, + 237, + 105, + 76, + 75, + 190, + 162, + 162, + 120, + 216, + 233, + 186, + 206, + 82, + 20, + 179, + 133, + 49, + 28, + 84, + 122, + 193, + 140, + 162, + 21, + 97, + 99, + 9, + 201, + 171, + 209, + 137, + 245, + 230, + 23, + 108, + 178, + 118, + 81, + 103, + 233, + 196, + 100, + 165, + 84, + 137, + 162, + 50, + 169, + 119, + 6, + 98, + 64, + 77, + 44, + 125, + 169, + 180, + 208, + 199, + 208, + 187, + 241, + 14, + 23, + 245, + 249, + 126, + 217, + 23, + 208, + 139, + 58, + 149, + 207, + 146, + 86, + 238, + 187, + 183, + 133, + 198, + 91, + 228, + 199, + 72, + 82, + 45, + 87, + 4, + 230, + 194, + 255, + 210, + 132, + 86, + 242, + 85, + 219, + 183, + 102, + 125, + 133, + 191, + 62, + 82, + 160, + 64, + 52, + 205, + 74, + 124, + 226, + 150, + 41, + 246, + 129, + 67, + 115, + 155, + 73, + 181, + 32, + 10, + 130, + 253, + 214, + 98, + 18, + 157, + 25, + 150, + 177, + 184, + 24, + 30, + 210, + 15, + 10, + 238, + 235, + 166, + 24, + 222, + 210, + 220, + 215, + 66, + 100, + 166, + 38, + 197, + 161, + 237, + 39, + 163, + 240, + 198, + 151, + 117, + 70, + 103, + 215, + 19, + 226, + 206, + 76, + 144, + 133, + 191, + 227, + 225, + 181, + 250, + 98, + 62, + 66, + 241, + 160, + 221, + 196, + 15, + 189, + 181, + 116, + 23, + 40, + 116, + 210, + 150, + 82, + 232, + 129, + 199, + 174, + 180, + 109, + 237, + 12, + 105, + 188, + 130, + 158, + 103, + 212, + 106, + 206, + 218, + 84, + 150, + 164, + 110, + 66, + 186, + 216, + 109, + 2, + 62, + 152, + 77, + 13, + 117, + 244, + 67, + 128, + 99, + 31, + 98, + 2, + 153, + 234, + 196, + 165, + 41, + 124, + 255, + 12, + 8, + 15, + 195, + 242, + 204, + 192, + 209, + 77, + 102, + 111, + 182, + 111, + 94, + 255, + 127, + 180, + 164, + 11, + 89, + 96, + 9, + 192, + 127, + 32, + 33, + 72, + 68, + 30, + 135, + 150, + 101, + 16, + 96, + 35, + 232, + 242, + 173, + 35, + 195, + 25, + 206, + 43, + 226, + 8, + 43, + 35, + 181, + 129, + 184, + 153, + 22, + 54, + 204, + 159, + 237, + 184, + 11, + 202, + 112, + 72, + 184, + 8, + 195, + 210, + 5, + 152, + 69, + 100, + 33, + 136, + 102, + 37, + 226, + 158, + 156, + 236, + 53, + 87, + 45, + 128, + 88, + 175, + 171, + 85, + 138, + 22, + 224, + 196, + 149, + 29, + 207, + 130, + 159, + 56, + 89, + 216, + 19, + 87, + 169, + 80, + 190, + 21, + 133, + 197, + 93, + 236, + 86, + 16, + 98, + 126, + 38, + 65, + 162, + 181, + 127, + 123, + 124, + 120, + 39, + 169, + 227, + 233, + 152, + 141, + 98, + 62, + 4, + 227, + 163, + 184, + 143, + 16, + 146, + 23, + 255, + 30, + 178, + 211, + 30, + 151, + 213, + 205, + 100, + 214, + 23, + 251, + 15, + 79, + 57, + 165, + 155, + 142, + 167, + 119, + 189, + 38, + 36, + 85, + 16, + 65, + 214, + 66, + 189, + 30, + 163, + 200, + 174, + 205, + 21, + 64, + 160, + 161, + 152, + 236, + 49, + 91, + 121, + 43, + 160, + 28, + 144, + 24, + 153, + 246, + 155, + 118, + 25, + 155, + 36, + 106, + 20, + 228, + 52, + 19, + 81, + 13, + 5, + 253, + 39, + 177, + 228, + 163, + 41, + 211, + 78, + 0, + 200, + 212, + 40, + 226, + 72 + ], + "expectedReplyTypes": [] + }, + { + "text": null, + "binary": [ + 79, + 103, + 103, + 83, + 0, + 0, + 192, + 86, + 22, + 0, + 0, + 0, + 0, + 0, + 51, + 155, + 33, + 2, + 9, + 0, + 0, + 0, + 150, + 92, + 224, + 173, + 26, + 146, + 146, + 144, + 142, + 139, + 133, + 138, + 150, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 161, + 223, + 159, + 175, + 179, + 203, + 187, + 161, + 161, + 161, + 184, + 32, + 53, + 230, + 28, + 22, + 249, + 4, + 44, + 86, + 100, + 181, + 187, + 255, + 193, + 196, + 182, + 125, + 46, + 221, + 208, + 187, + 70, + 54, + 197, + 158, + 133, + 98, + 88, + 239, + 160, + 213, + 96, + 91, + 123, + 200, + 77, + 13, + 40, + 180, + 200, + 249, + 130, + 36, + 169, + 126, + 142, + 82, + 104, + 228, + 237, + 231, + 194, + 218, + 82, + 171, + 41, + 215, + 193, + 73, + 27, + 222, + 97, + 125, + 179, + 153, + 232, + 156, + 167, + 52, + 122, + 203, + 253, + 90, + 63, + 195, + 45, + 78, + 185, + 221, + 104, + 105, + 121, + 133, + 21, + 64, + 141, + 251, + 183, + 195, + 227, + 198, + 82, + 249, + 1, + 144, + 58, + 38, + 98, + 252, + 78, + 209, + 93, + 242, + 176, + 164, + 53, + 84, + 9, + 235, + 31, + 92, + 159, + 99, + 112, + 240, + 177, + 245, + 252, + 131, + 38, + 125, + 142, + 36, + 37, + 75, + 136, + 238, + 131, + 153, + 89, + 137, + 110, + 177, + 191, + 242, + 34, + 82, + 107, + 19, + 82, + 216, + 84, + 58, + 213, + 136, + 184, + 8, + 161, + 64, + 221, + 245, + 246, + 243, + 206, + 178, + 157, + 198, + 27, + 191, + 56, + 242, + 102, + 13, + 177, + 53, + 33, + 72, + 99, + 214, + 124, + 61, + 109, + 135, + 213, + 75, + 32, + 11, + 223, + 99, + 197, + 106, + 57, + 194, + 246, + 2, + 47, + 245, + 124, + 128, + 77, + 72, + 71, + 75, + 41, + 7, + 225, + 101, + 141, + 56, + 248, + 16, + 105, + 67, + 184, + 155, + 20, + 163, + 9, + 175, + 253, + 38, + 127, + 127, + 173, + 16, + 217, + 99, + 152, + 34, + 213, + 88, + 37, + 192, + 99, + 176, + 58, + 198, + 44, + 54, + 128, + 254, + 91, + 47, + 133, + 252, + 192, + 11, + 227, + 87, + 113, + 155, + 244, + 51, + 163, + 153, + 119, + 40, + 209, + 172, + 30, + 226, + 104, + 183, + 219, + 200, + 111, + 133, + 28, + 175, + 106, + 137, + 3, + 177, + 94, + 187, + 224, + 68, + 47, + 185, + 125, + 88, + 132, + 227, + 22, + 227, + 204, + 201, + 129, + 6, + 209, + 197, + 63, + 91, + 147, + 104, + 76, + 132, + 253, + 0, + 104, + 24, + 184, + 22, + 163, + 13, + 118, + 30, + 210, + 108, + 13, + 239, + 76, + 47, + 160, + 244, + 4, + 133, + 27, + 243, + 26, + 140, + 23, + 95, + 142, + 253, + 19, + 192, + 15, + 48, + 145, + 3, + 172, + 181, + 41, + 134, + 62, + 123, + 149, + 149, + 163, + 150, + 148, + 207, + 39, + 88, + 255, + 216, + 49, + 197, + 174, + 119, + 250, + 52, + 44, + 122, + 45, + 249, + 26, + 6, + 57, + 181, + 42, + 130, + 7, + 69, + 89, + 157, + 79, + 37, + 33, + 27, + 82, + 69, + 176, + 16, + 28, + 25, + 129, + 24, + 253, + 210, + 106, + 150, + 173, + 12, + 133, + 112, + 129, + 205, + 48, + 63, + 83, + 67, + 174, + 109, + 20, + 1, + 43, + 128, + 183, + 154, + 200, + 214, + 208, + 159, + 26, + 99, + 210, + 198, + 118, + 143, + 101, + 194, + 231, + 175, + 186, + 150, + 160, + 149, + 133, + 180, + 113, + 32, + 50, + 75, + 226, + 105, + 17, + 43, + 175, + 230, + 137, + 251, + 191, + 1, + 66, + 10, + 191, + 106, + 142, + 133, + 68, + 135, + 206, + 132, + 184, + 17, + 87, + 107, + 247, + 8, + 175, + 187, + 1, + 47, + 161, + 197, + 117, + 26, + 42, + 254, + 67, + 202, + 203, + 40, + 90, + 113, + 120, + 39, + 83, + 211, + 244, + 103, + 152, + 206, + 207, + 210, + 195, + 111, + 234, + 157, + 70, + 35, + 113, + 191, + 254, + 229, + 175, + 117, + 229, + 180, + 129, + 162, + 164, + 78, + 245, + 30, + 103, + 219, + 70, + 100, + 165, + 150, + 216, + 17, + 69, + 59, + 1, + 96, + 46, + 141, + 172, + 107, + 146, + 19, + 193, + 142, + 127, + 122, + 132, + 165, + 231, + 46, + 65, + 16, + 224, + 92, + 71, + 194, + 4, + 169, + 26, + 42, + 69, + 243, + 218, + 22, + 215, + 101, + 36, + 31, + 115, + 78, + 79, + 233, + 211, + 25, + 96, + 202, + 53, + 110, + 94, + 186, + 254, + 64, + 141, + 8, + 176, + 45, + 63, + 155, + 90, + 98, + 23, + 48, + 224, + 94, + 194, + 84, + 166, + 191, + 8, + 214, + 71, + 88, + 28, + 249, + 157, + 114, + 49, + 250, + 77, + 11, + 157, + 224, + 32, + 253, + 184, + 6, + 126, + 190, + 191, + 42, + 80, + 66, + 245, + 7, + 45, + 108, + 91, + 246, + 112, + 247, + 79, + 118, + 252, + 63, + 41, + 20, + 107, + 34, + 55, + 185, + 69, + 71, + 85, + 185, + 185, + 141, + 33, + 144, + 128, + 37, + 225, + 216, + 1, + 232, + 91, + 190, + 177, + 17, + 231, + 58, + 26, + 132, + 177, + 132, + 190, + 191, + 121, + 152, + 122, + 81, + 149, + 205, + 223, + 241, + 204, + 215, + 59, + 231, + 55, + 32, + 48, + 102, + 247, + 120, + 219, + 182, + 251, + 1, + 217, + 58, + 28, + 134, + 50, + 103, + 185, + 27, + 120, + 51, + 180, + 41, + 27, + 214, + 168, + 157, + 36, + 136, + 127, + 127, + 196, + 96, + 212, + 14, + 77, + 232, + 205, + 129, + 165, + 250, + 187, + 78, + 143, + 80, + 43, + 54, + 1, + 143, + 145, + 211, + 92, + 246, + 212, + 62, + 235, + 42, + 173, + 191, + 126, + 240, + 32, + 211, + 252, + 208, + 147, + 223, + 239, + 67, + 254, + 39, + 38, + 18, + 156, + 151, + 160, + 184, + 32, + 68, + 40, + 39, + 26, + 224, + 65, + 80, + 116, + 75, + 252, + 163, + 93, + 80, + 57, + 43, + 149, + 140, + 216, + 249, + 184, + 30, + 199, + 10, + 85, + 44, + 67, + 82, + 64, + 192, + 63, + 56, + 185, + 124, + 219, + 92, + 51, + 8, + 41, + 130, + 15, + 198, + 231, + 120, + 56, + 0, + 81, + 31, + 144, + 188, + 17, + 242, + 146, + 142, + 165, + 131, + 150, + 97, + 101, + 53, + 176, + 9, + 229, + 16, + 33, + 183, + 190, + 13, + 252, + 234, + 114, + 186, + 34, + 161, + 226, + 161, + 10, + 190, + 236, + 92, + 32, + 80, + 136, + 209, + 198, + 17, + 62, + 136, + 210, + 20, + 199, + 146, + 182, + 3, + 79, + 110, + 163, + 158, + 217, + 24, + 72, + 89, + 16, + 141, + 155, + 182, + 246, + 190, + 72, + 29, + 150, + 101, + 196, + 55, + 206, + 72, + 39, + 31, + 165, + 130, + 50, + 17, + 57, + 28, + 65, + 128, + 214, + 162, + 116, + 140, + 209, + 196, + 184, + 9, + 86, + 197, + 56, + 247, + 219, + 175, + 58, + 253, + 203, + 23, + 123, + 60, + 82, + 81, + 212, + 14, + 86, + 36, + 71, + 149, + 109, + 212, + 203, + 24, + 89, + 107, + 132, + 230, + 2, + 245, + 178, + 225, + 228, + 163, + 50, + 15, + 35, + 110, + 40, + 201, + 245, + 155, + 14, + 74, + 160, + 128, + 135, + 168, + 33, + 132, + 73, + 228, + 226, + 81, + 144, + 2, + 59, + 250, + 119, + 210, + 22, + 10, + 203, + 41, + 175, + 201, + 134, + 118, + 159, + 21, + 160, + 163, + 246, + 22, + 2, + 186, + 102, + 47, + 36, + 26, + 147, + 106, + 167, + 83, + 106, + 24, + 208, + 253, + 87, + 222, + 82, + 118, + 241, + 0, + 166, + 170, + 255, + 110, + 222, + 227, + 65, + 30, + 26, + 38, + 124, + 246, + 38, + 127, + 37, + 135, + 146, + 206, + 162, + 191, + 150, + 173, + 179, + 140, + 69, + 39, + 124, + 252, + 120, + 112, + 35, + 171, + 158, + 175, + 220, + 25, + 33, + 130, + 159, + 89, + 104, + 43, + 184, + 8, + 95, + 199, + 238, + 196, + 37, + 225, + 42, + 108, + 172, + 71, + 171, + 196, + 214, + 117, + 134, + 26, + 98, + 70, + 151, + 199, + 95, + 231, + 75, + 109, + 53, + 188, + 75, + 127, + 212, + 120, + 5, + 224, + 26, + 135, + 13, + 202, + 232, + 60, + 191, + 198, + 178, + 199, + 244, + 75, + 121, + 150, + 212, + 18, + 71, + 29, + 96, + 215, + 30, + 142, + 128, + 33, + 229, + 251, + 152, + 56, + 184, + 25, + 1, + 201, + 211, + 127, + 117, + 250, + 118, + 229, + 170, + 241, + 174, + 177, + 147, + 239, + 60, + 152, + 50, + 123, + 190, + 82, + 207, + 12, + 117, + 65, + 11, + 80, + 209, + 175, + 90, + 58, + 145, + 193, + 56, + 46, + 110, + 0, + 127, + 86, + 178, + 146, + 95, + 6, + 179, + 238, + 70, + 104, + 164, + 205, + 73, + 150, + 33, + 50, + 193, + 199, + 165, + 115, + 53, + 103, + 60, + 185, + 8, + 174, + 180, + 58, + 29, + 21, + 69, + 108, + 143, + 95, + 8, + 3, + 64, + 47, + 154, + 169, + 112, + 75, + 119, + 114, + 133, + 122, + 168, + 35, + 5, + 176, + 184, + 16, + 154, + 218, + 171, + 54, + 140, + 48, + 234, + 93, + 190, + 180, + 129, + 179, + 15, + 204, + 159, + 6, + 136, + 17, + 59, + 78, + 70, + 117, + 9, + 235, + 252, + 179, + 53, + 197, + 48, + 188, + 78, + 36, + 239, + 201, + 121, + 224, + 211, + 10, + 154, + 113, + 38, + 101, + 29, + 158, + 93, + 71, + 129, + 229, + 83, + 112, + 175, + 34, + 124, + 181, + 100, + 210, + 133, + 182, + 138, + 192, + 188, + 130, + 124, + 44, + 67, + 238, + 168, + 74, + 220, + 108, + 57, + 93, + 50, + 38, + 31, + 199, + 49, + 178, + 159, + 246, + 190, + 61, + 44, + 242, + 221, + 200, + 7, + 94, + 167, + 230, + 41, + 9, + 199, + 254, + 28, + 129, + 157, + 4, + 216, + 158, + 82, + 217, + 0, + 60, + 174, + 95, + 126, + 215, + 171, + 27, + 181, + 37, + 212, + 198, + 142, + 145, + 171, + 216, + 107, + 143, + 174, + 160, + 150, + 110, + 52, + 155, + 254, + 19, + 129, + 56, + 18, + 116, + 118, + 98, + 106, + 149, + 14, + 100, + 210, + 81, + 30, + 200, + 67, + 219, + 160, + 138, + 17, + 20, + 24, + 76, + 126, + 250, + 67, + 122, + 46, + 89, + 101, + 248, + 100, + 184, + 22, + 111, + 42, + 146, + 227, + 41, + 28, + 5, + 167, + 97, + 84, + 104, + 180, + 234, + 100, + 167, + 125, + 64, + 240, + 201, + 182, + 35, + 220, + 103, + 94, + 106, + 177, + 120, + 140, + 94, + 62, + 169, + 133, + 53, + 224, + 227, + 59, + 15, + 24, + 75, + 193, + 224, + 215, + 247, + 105, + 162, + 85, + 73, + 0, + 174, + 168, + 3, + 139, + 29, + 133, + 237, + 102, + 133, + 39, + 23, + 59, + 118, + 118, + 173, + 196, + 101, + 220, + 198, + 23, + 62, + 189, + 126, + 176, + 14, + 197, + 20, + 212, + 253, + 164, + 118, + 165, + 195, + 80, + 22, + 77, + 86, + 182, + 76, + 221, + 98, + 145, + 230, + 77, + 201, + 226, + 89, + 24, + 229, + 209, + 153, + 155, + 156, + 195, + 108, + 225, + 98, + 251, + 5, + 41, + 41, + 146, + 241, + 173, + 125, + 98, + 185, + 153, + 127, + 34, + 141, + 76, + 72, + 122, + 189, + 246, + 226, + 89, + 222, + 21, + 71, + 223, + 135, + 52, + 46, + 210, + 3, + 84, + 81, + 96, + 144, + 137, + 95, + 116, + 4, + 23, + 118, + 122, + 122, + 201, + 50, + 116, + 76, + 74, + 138, + 0, + 180, + 214, + 19, + 210, + 207, + 184, + 16, + 50, + 2, + 202, + 125, + 26, + 192, + 50, + 189, + 38, + 18, + 83, + 165, + 85, + 5, + 23, + 239, + 6, + 4, + 218, + 129, + 13, + 129, + 254, + 12, + 66, + 168, + 233, + 236, + 59, + 10, + 13, + 225, + 245, + 94, + 129, + 141, + 247, + 37, + 25, + 255, + 48, + 2, + 241, + 143, + 166, + 39, + 244, + 196, + 183, + 131, + 205, + 87, + 13, + 47, + 25, + 90, + 80, + 36, + 18, + 227, + 74, + 31, + 254, + 198, + 99, + 137, + 126, + 49, + 24, + 127, + 124, + 25, + 27, + 162, + 103, + 163, + 216, + 74, + 127, + 19, + 206, + 4, + 124, + 152, + 254, + 160, + 222, + 173, + 123, + 21, + 127, + 60, + 125, + 116, + 103, + 243, + 196, + 138, + 74, + 159, + 164, + 118, + 79, + 100, + 80, + 13, + 105, + 193, + 60, + 171, + 6, + 81, + 80, + 32, + 231, + 184, + 105, + 135, + 82, + 197, + 60, + 72, + 149, + 205, + 100, + 250, + 212, + 247, + 22, + 63, + 15, + 214, + 126, + 152, + 31, + 200, + 149, + 98, + 166, + 146, + 249, + 18, + 65, + 152, + 75, + 157, + 57, + 144, + 195, + 126, + 234, + 132, + 100, + 81, + 127, + 19, + 222, + 153, + 83, + 184, + 20, + 226, + 15, + 78, + 120, + 220, + 235, + 46, + 54, + 182, + 1, + 136, + 176, + 122, + 151, + 67, + 67, + 23, + 153, + 148, + 235, + 226, + 118, + 103, + 158, + 211, + 155, + 181, + 203, + 171, + 49, + 204, + 132, + 193, + 89, + 222, + 11, + 85, + 36, + 20, + 223, + 35, + 48, + 86, + 221, + 136, + 28, + 90, + 43, + 50, + 127, + 180, + 101, + 229, + 244, + 46, + 189, + 75, + 244, + 78, + 55, + 188, + 120, + 94, + 252, + 179, + 199, + 219, + 248, + 134, + 143, + 4, + 245, + 229, + 125, + 58, + 202, + 26, + 218, + 18, + 253, + 110, + 246, + 62, + 128, + 215, + 183, + 238, + 153, + 107, + 76, + 193, + 103, + 212, + 150, + 167, + 101, + 206, + 40, + 146, + 109, + 125, + 75, + 167, + 196, + 52, + 112, + 28, + 82, + 38, + 235, + 209, + 209, + 226, + 121, + 105, + 97, + 240, + 79, + 234, + 206, + 93, + 227, + 0, + 19, + 20, + 129, + 200, + 101, + 173, + 148, + 5, + 68, + 206, + 2, + 193, + 198, + 47, + 119, + 122, + 31, + 43, + 199, + 60, + 172, + 176, + 165, + 119, + 48, + 19, + 28, + 221, + 133, + 200, + 81, + 89, + 190, + 109, + 207, + 190, + 184, + 8, + 243, + 97, + 40, + 202, + 218, + 121, + 233, + 103, + 2, + 25, + 205, + 33, + 200, + 71, + 0, + 252, + 68, + 60, + 69, + 231, + 164, + 197, + 148, + 156, + 102, + 113, + 212, + 233, + 206, + 94, + 216, + 129, + 137, + 216, + 48, + 215, + 225, + 21, + 198, + 169, + 77, + 251, + 177, + 115, + 237, + 38, + 113, + 4, + 98, + 50, + 134, + 113, + 101, + 156, + 93, + 254, + 118, + 204, + 174, + 202, + 210, + 40, + 222, + 43, + 85, + 98, + 33, + 128, + 5, + 109, + 115, + 17, + 110, + 62, + 142, + 176, + 233, + 166, + 98, + 226, + 11, + 236, + 50, + 53, + 171, + 90, + 231, + 147, + 95, + 78, + 40, + 189, + 245, + 212, + 48, + 233, + 248, + 72, + 199, + 252, + 55, + 32, + 204, + 33, + 130, + 237, + 187, + 75, + 131, + 120, + 207, + 230, + 186, + 87, + 192, + 236, + 38, + 83, + 164, + 129, + 214, + 124, + 200, + 152, + 132, + 72, + 224, + 200, + 225, + 140, + 153, + 181, + 131, + 180, + 96, + 245, + 17, + 48, + 86, + 14, + 137, + 92, + 237, + 59, + 108, + 0, + 145, + 50, + 123, + 54, + 230, + 179, + 21, + 218, + 16, + 179, + 30, + 51, + 169, + 184, + 27, + 172, + 118, + 193, + 230, + 46, + 148, + 197, + 106, + 161, + 126, + 195, + 20, + 32, + 220, + 144, + 109, + 88, + 245, + 215, + 145, + 127, + 113, + 205, + 55, + 161, + 243, + 189, + 143, + 6, + 13, + 107, + 206, + 86, + 26, + 211, + 173, + 203, + 122, + 90, + 161, + 36, + 2, + 27, + 58, + 175, + 71, + 141, + 162, + 35, + 94, + 9, + 84, + 254, + 135, + 215, + 133, + 51, + 69, + 174, + 211, + 52, + 157, + 223, + 229, + 47, + 117, + 183, + 93, + 31, + 115, + 226, + 93, + 43, + 203, + 106, + 102, + 225, + 99, + 226, + 107, + 76, + 141, + 150, + 193, + 185, + 53, + 52, + 118, + 174, + 35, + 47, + 205, + 40, + 8, + 40, + 132, + 197, + 244, + 195, + 90, + 224, + 39, + 26, + 88, + 224, + 236, + 25, + 35, + 125, + 42, + 115, + 251, + 43, + 66, + 11, + 158, + 63, + 225, + 190, + 82, + 86, + 134, + 244, + 29, + 252, + 239, + 194, + 81, + 61, + 188, + 219, + 157, + 73, + 251, + 191, + 157, + 130, + 45, + 92, + 124, + 18, + 53, + 37, + 81, + 224, + 82, + 139, + 233, + 32, + 237, + 245, + 242, + 127, + 226, + 93, + 77, + 160, + 63, + 204, + 184, + 18, + 60, + 136, + 118, + 95, + 61, + 69, + 112, + 217, + 3, + 65, + 211, + 119, + 206, + 109, + 143, + 139, + 89, + 17, + 18, + 227, + 131, + 40, + 50, + 56, + 141, + 7, + 10, + 56, + 142, + 173, + 84, + 135, + 58, + 181, + 124, + 254, + 101, + 113, + 198, + 247, + 233, + 106, + 55, + 129, + 154, + 198, + 47, + 83, + 215, + 57, + 121, + 207, + 39, + 205, + 200, + 213, + 209, + 93, + 195, + 55, + 29, + 8, + 133, + 50, + 29, + 21, + 2, + 245, + 235, + 155, + 89, + 214, + 176, + 242, + 73, + 35, + 245, + 208, + 152, + 154, + 102, + 185, + 125, + 90, + 38, + 151, + 45, + 146, + 122, + 214, + 141, + 137, + 170, + 113, + 155, + 178, + 88, + 88, + 140, + 225, + 247, + 143, + 17, + 192, + 120, + 95, + 191, + 21, + 93, + 249, + 64, + 161, + 247, + 77, + 65, + 123, + 189, + 126, + 22, + 109, + 230, + 147, + 51, + 221, + 171, + 90, + 107, + 20, + 107, + 120, + 177, + 42, + 86, + 253, + 226, + 188, + 231, + 233, + 248, + 183, + 101, + 165, + 76, + 29, + 99, + 130, + 214, + 83, + 171, + 25, + 177, + 52, + 216, + 112, + 214, + 3, + 24, + 250, + 169, + 184, + 22, + 75, + 137, + 106, + 250, + 64, + 146, + 41, + 104, + 13, + 118, + 115, + 234, + 209, + 105, + 236, + 243, + 29, + 101, + 91, + 239, + 164, + 141, + 45, + 163, + 19, + 99, + 101, + 0, + 168, + 103, + 183, + 204, + 209, + 172, + 127, + 255, + 197, + 66, + 5, + 126, + 119, + 4, + 126, + 17, + 122, + 108, + 20, + 246, + 19, + 212, + 68, + 164, + 23, + 46, + 65, + 102, + 49, + 22, + 28, + 14, + 161, + 223, + 178, + 177, + 58, + 230, + 22, + 201, + 101, + 96, + 125, + 44, + 55, + 71, + 96, + 110, + 100, + 47, + 151, + 242, + 164, + 147, + 248, + 150, + 235, + 2, + 207, + 130, + 92, + 100, + 61, + 1, + 98, + 186, + 122, + 120, + 113, + 86, + 99, + 213, + 186, + 178, + 189, + 15, + 213, + 206, + 79, + 23, + 58, + 130, + 82, + 61, + 39, + 18, + 37, + 56, + 94, + 142, + 158, + 230, + 3, + 123, + 119, + 214, + 248, + 61, + 176, + 180, + 250, + 239, + 195, + 172, + 9, + 162, + 94, + 163, + 182, + 184, + 159, + 31, + 114, + 23, + 238, + 167, + 156, + 108, + 129, + 218, + 136, + 7, + 184, + 238, + 90, + 144, + 245, + 251, + 199, + 147, + 230, + 184, + 3, + 145, + 44, + 156, + 63, + 47, + 101, + 72, + 60, + 53, + 62, + 229, + 117, + 76, + 67, + 128, + 63, + 159, + 200, + 98, + 168, + 7, + 26, + 245, + 81, + 222, + 250, + 138, + 196, + 35, + 33, + 211, + 130, + 72, + 143, + 48, + 226, + 20, + 59, + 243, + 192, + 65, + 5, + 228, + 28, + 60, + 22, + 113, + 192, + 180, + 105, + 223, + 255, + 48, + 71, + 82, + 59, + 111, + 249, + 161, + 129, + 41, + 92, + 41, + 60, + 186, + 175, + 230, + 208, + 205, + 203, + 185, + 125, + 66, + 193, + 125, + 82, + 223, + 87, + 33, + 76, + 222, + 236, + 109, + 209, + 212, + 193, + 187, + 4, + 92, + 84, + 223, + 88, + 48, + 152, + 200, + 68, + 148, + 190, + 58, + 194, + 178, + 77, + 152, + 143, + 233, + 149, + 161, + 164, + 241, + 135, + 175, + 173, + 166, + 98, + 99, + 104, + 58, + 222, + 151, + 132, + 239, + 216, + 171, + 196, + 70, + 90, + 101, + 197, + 4, + 118, + 156, + 112, + 27, + 155, + 146, + 174, + 129, + 37, + 227, + 37, + 220, + 50, + 130, + 142, + 140, + 82, + 244, + 251, + 48, + 28, + 30, + 189, + 246, + 161, + 173, + 193, + 228, + 13, + 0, + 184, + 180, + 138, + 37, + 236, + 140, + 9, + 5, + 186, + 66, + 251, + 230, + 152, + 35, + 197, + 217, + 202, + 170, + 70, + 2, + 248, + 204, + 88, + 145, + 26, + 26, + 249, + 156, + 16, + 18, + 160, + 42, + 26, + 73, + 200, + 122, + 59, + 232, + 158, + 248, + 67, + 187, + 100, + 170, + 183, + 158, + 148, + 168, + 151, + 39, + 151, + 234, + 161, + 191, + 76, + 105, + 99, + 184, + 237, + 169, + 234, + 126, + 167, + 19, + 145, + 130, + 171, + 156, + 123, + 121, + 2, + 218, + 149, + 222, + 228, + 75, + 167, + 230, + 58, + 232, + 158, + 201, + 103, + 144, + 245, + 86, + 150, + 22, + 70, + 231, + 24, + 196, + 166, + 29, + 172, + 197, + 133, + 135, + 204, + 95, + 128, + 29, + 75, + 6, + 164, + 254, + 193, + 43, + 134, + 19, + 25, + 251, + 69, + 196, + 20, + 246, + 89, + 192, + 207, + 51, + 33, + 189, + 195, + 39, + 191, + 72, + 207, + 233, + 232, + 212, + 61, + 184, + 96, + 36, + 6, + 144, + 239, + 191, + 90, + 214, + 242, + 103, + 209, + 105, + 27, + 53, + 134, + 23, + 253, + 136, + 31, + 44, + 54, + 32, + 60, + 123, + 113, + 183, + 167, + 26, + 246, + 128, + 241, + 117, + 62, + 184, + 216, + 76, + 98, + 145, + 96, + 104, + 60, + 79, + 227, + 211, + 138, + 212, + 146, + 156, + 60, + 247, + 76, + 14, + 99, + 62, + 182, + 53, + 178, + 185, + 63, + 211, + 57, + 188, + 152, + 220, + 12, + 69, + 187, + 200, + 131, + 103, + 227, + 223, + 95, + 71, + 148, + 209, + 254, + 30, + 29, + 182, + 16, + 123, + 159, + 122, + 95, + 247, + 241, + 99, + 237, + 129, + 85, + 184, + 171, + 74, + 237, + 254, + 211, + 198, + 199, + 81, + 120, + 76, + 220, + 120, + 233, + 141, + 21, + 78, + 164, + 140, + 15, + 37, + 105, + 205, + 131, + 215, + 249, + 244, + 50, + 163, + 123, + 224, + 230, + 174, + 215, + 182, + 169, + 213, + 16, + 253, + 35, + 170, + 17, + 205, + 163, + 99, + 117, + 198, + 76, + 139, + 224, + 141, + 16, + 113, + 162, + 182, + 99, + 159, + 186, + 251, + 240, + 251, + 109, + 152, + 98, + 147, + 247, + 159, + 127, + 123, + 97, + 83, + 30, + 75, + 237, + 243, + 154, + 198, + 192, + 87, + 45, + 224, + 130, + 69, + 250, + 87, + 148, + 14, + 50, + 32, + 255, + 96, + 118, + 168, + 72, + 229, + 138, + 193, + 92, + 38, + 128, + 74, + 14, + 96, + 162, + 109, + 141, + 194, + 114, + 116, + 180, + 11, + 247, + 147, + 51, + 101, + 151, + 184, + 163, + 149, + 251, + 236, + 185, + 129, + 0, + 78, + 85, + 174, + 198, + 88, + 200, + 119, + 102, + 180, + 104, + 40, + 75, + 119, + 176, + 175, + 3, + 145, + 71, + 185, + 16, + 247, + 128, + 207, + 96, + 195, + 248, + 137, + 200, + 195, + 179, + 12, + 56, + 30, + 133, + 79, + 184, + 172, + 156, + 101, + 178, + 237, + 131, + 251, + 84, + 228, + 73, + 54, + 139, + 68, + 181, + 189, + 143, + 68, + 12, + 111, + 62, + 21, + 129, + 240, + 11, + 76, + 31, + 196, + 141, + 255, + 11, + 132, + 225, + 200, + 196, + 114, + 229, + 66, + 172, + 183, + 37, + 162, + 210, + 105, + 73, + 158, + 35, + 81, + 231, + 20, + 208, + 248, + 90, + 101, + 23, + 196, + 180, + 146, + 170, + 55, + 142, + 48, + 214, + 121, + 238, + 16, + 181, + 94, + 150, + 40, + 65, + 84, + 244, + 165, + 135, + 40, + 211, + 137, + 146, + 163, + 43, + 6, + 54, + 122, + 114, + 146, + 249, + 127, + 71, + 244, + 136, + 159, + 91, + 215, + 109, + 108, + 101, + 20, + 207, + 164, + 124, + 180, + 49, + 16, + 20, + 207, + 154, + 92, + 222, + 96, + 200, + 2, + 255, + 229, + 71, + 73, + 221, + 128, + 76, + 20, + 195, + 19, + 3, + 229, + 151, + 223, + 197, + 63, + 68, + 246, + 90, + 204, + 150, + 79, + 219, + 189, + 81, + 247, + 65, + 193, + 177, + 52, + 6, + 24, + 141, + 177, + 184, + 111, + 222, + 22, + 184, + 201, + 161, + 165, + 14, + 192, + 129, + 194, + 224, + 82, + 15, + 71, + 201, + 146, + 17, + 90, + 199, + 69, + 121, + 190, + 248, + 252, + 158, + 221, + 73, + 184, + 170, + 216, + 7, + 164, + 94, + 207, + 35, + 208, + 181, + 91, + 106, + 94, + 153, + 232, + 21, + 148, + 239, + 18, + 214, + 114, + 198, + 86, + 186, + 70, + 184, + 4, + 9, + 110, + 35, + 102, + 190, + 203, + 38, + 49, + 230, + 104, + 228, + 114, + 177, + 37, + 22, + 133, + 25, + 87, + 36, + 109, + 152, + 65, + 41, + 69, + 11, + 159, + 230, + 125, + 111, + 105, + 186, + 73, + 66, + 164, + 89, + 152, + 42, + 252, + 16, + 253, + 182, + 248, + 209, + 99, + 175, + 87, + 28, + 152, + 47, + 95, + 124, + 158, + 219, + 74, + 48, + 181, + 143, + 75, + 2, + 156, + 78, + 113, + 112, + 45, + 41, + 218, + 14, + 106, + 32, + 167, + 42, + 213, + 46, + 96, + 155, + 7, + 30, + 165, + 249, + 72, + 11, + 185, + 154, + 183, + 218, + 48, + 2, + 137, + 181, + 17, + 88, + 7, + 208, + 88, + 108, + 94, + 112, + 80, + 236, + 127, + 182, + 113, + 138, + 77, + 230, + 48, + 55, + 147, + 111, + 43, + 229, + 82, + 121, + 132, + 16, + 63, + 217, + 66, + 227, + 129, + 94, + 150, + 169, + 191, + 157, + 113, + 35, + 45, + 170, + 40, + 65, + 230, + 39, + 169, + 237, + 7, + 169, + 242, + 63, + 96, + 96, + 40, + 18, + 234, + 95, + 45, + 135, + 2, + 195, + 202, + 107, + 73, + 184, + 178, + 222, + 157, + 134, + 173, + 218, + 13, + 85, + 250, + 54, + 226, + 166, + 31, + 239, + 25, + 10, + 125, + 117, + 169, + 151, + 252, + 239, + 142, + 140, + 215, + 197, + 244, + 28, + 146, + 121, + 29, + 99, + 79, + 236, + 158, + 235, + 145, + 254, + 16, + 77, + 112, + 163, + 202, + 137, + 145, + 156, + 15, + 14, + 9, + 30, + 63, + 217, + 227, + 209, + 213, + 197, + 22, + 52, + 182, + 184, + 36, + 43, + 90, + 197, + 123, + 7, + 151, + 41, + 192, + 130, + 56, + 242, + 182, + 178, + 52, + 69, + 60, + 86, + 82, + 129, + 18, + 71, + 249, + 181, + 80, + 30, + 91, + 118, + 231, + 247, + 68, + 70, + 170, + 61, + 9, + 193, + 46, + 244, + 113, + 173, + 27, + 254, + 49, + 59, + 195, + 197, + 21, + 160, + 180, + 170, + 186, + 221, + 154, + 198, + 190, + 150, + 63, + 3, + 117, + 73, + 244, + 255, + 204, + 62, + 189, + 234, + 121, + 151, + 102, + 18, + 80, + 113, + 69, + 209, + 182, + 146, + 174, + 110, + 194, + 35, + 183, + 202, + 146, + 65, + 214, + 104, + 227, + 171, + 0, + 181, + 145, + 32, + 145, + 245, + 81, + 19, + 247, + 54, + 209, + 62, + 178, + 62, + 129, + 107, + 26, + 194, + 171, + 27, + 119, + 106, + 114, + 200, + 249, + 131, + 236, + 162, + 140, + 149, + 42, + 136, + 26, + 94, + 65, + 178, + 231, + 194, + 131, + 86, + 53, + 111, + 248, + 41, + 123, + 230, + 84, + 134, + 189, + 144, + 166, + 141, + 225, + 33, + 184, + 128, + 47, + 253, + 126, + 29, + 140, + 18, + 128, + 60, + 86, + 50, + 157, + 101, + 187, + 8, + 221, + 140, + 173, + 180, + 207, + 150, + 155, + 193, + 110, + 129, + 181, + 70, + 133, + 46, + 221, + 118, + 167, + 178, + 184, + 108, + 13, + 177, + 211, + 249, + 12, + 237, + 234, + 129, + 146, + 32, + 130, + 131, + 231, + 137, + 245, + 197, + 171, + 6, + 228, + 255, + 32, + 123, + 12, + 7, + 241, + 194, + 216, + 134, + 129, + 228, + 184, + 19, + 233, + 126, + 12, + 172, + 125, + 143, + 215, + 35, + 234, + 197, + 197, + 245, + 44, + 72, + 118, + 23, + 167, + 123, + 142, + 131, + 166, + 225, + 100, + 240, + 133, + 249, + 84, + 64, + 191, + 207, + 233, + 180, + 34, + 239, + 25, + 179, + 124, + 177, + 208, + 95, + 44, + 239, + 0, + 200, + 132, + 238, + 83, + 30, + 47, + 175, + 11, + 124, + 58, + 98, + 158, + 173, + 53, + 189, + 194, + 210, + 81, + 175, + 223, + 182, + 242, + 98, + 158, + 89, + 183, + 253, + 105, + 84, + 42, + 170, + 183, + 184, + 244, + 4, + 228, + 50, + 0, + 209, + 112, + 102, + 67, + 97, + 27, + 242, + 157, + 19, + 141, + 182, + 168, + 25, + 48, + 46, + 189, + 46, + 100, + 206, + 160, + 108, + 225, + 171, + 124, + 39, + 178, + 223, + 68, + 123, + 60, + 43, + 166, + 44, + 133, + 172, + 34, + 244, + 79, + 184, + 149, + 192, + 204, + 180, + 77, + 86, + 244, + 1, + 55, + 57, + 14, + 44, + 223, + 137, + 90, + 22, + 66, + 179, + 71, + 200, + 46, + 95, + 14, + 224, + 120, + 214, + 1, + 7, + 128, + 237, + 197, + 151, + 2, + 194, + 184, + 71, + 51, + 57, + 195, + 199, + 18, + 181, + 150, + 75, + 26, + 68, + 18, + 117, + 125, + 160, + 65, + 73, + 158, + 147, + 231, + 86, + 171, + 187, + 139, + 20, + 252, + 9, + 68, + 240, + 59, + 19, + 161, + 177, + 207, + 51, + 209, + 160, + 64, + 111, + 12, + 171, + 119, + 156, + 245, + 79, + 129, + 243, + 29, + 107, + 231, + 254, + 53, + 216, + 118, + 39, + 20, + 122, + 244, + 74, + 91, + 112, + 47, + 211, + 176, + 156, + 199, + 83, + 152, + 76, + 120, + 175, + 86, + 178, + 32, + 24, + 9, + 6, + 171, + 249, + 96, + 58, + 147, + 49, + 154, + 5, + 42, + 173, + 192, + 220, + 10, + 197, + 104, + 87, + 114, + 74, + 251, + 88, + 36, + 194, + 67, + 153, + 236, + 3, + 241, + 217, + 9, + 98, + 153, + 129, + 171, + 56, + 134, + 248, + 86, + 187, + 72, + 128, + 178, + 208, + 83, + 132, + 86, + 136, + 232, + 151, + 184, + 151, + 67, + 141, + 151, + 16, + 192, + 68, + 7, + 73, + 183, + 148, + 37, + 146, + 37, + 193, + 137, + 136, + 252, + 229, + 221, + 173, + 53, + 106, + 93, + 73, + 37, + 141, + 181, + 167, + 167, + 47, + 162, + 91, + 182, + 65, + 77, + 45, + 6, + 53, + 64, + 147, + 200, + 32, + 73, + 115, + 141, + 62, + 131, + 187, + 236, + 167, + 59, + 153, + 109, + 212, + 184, + 123, + 23, + 166, + 155, + 218, + 130, + 110, + 166, + 246, + 8, + 163, + 249, + 188, + 83, + 97, + 48, + 233, + 0, + 251, + 150, + 201, + 151, + 29, + 2, + 52, + 28, + 183, + 67, + 10, + 158, + 9, + 125, + 0, + 90, + 74, + 144, + 190, + 131, + 193, + 89, + 2, + 126, + 125, + 210, + 48, + 186, + 178, + 203, + 247, + 127, + 50, + 225, + 114, + 197, + 164, + 192, + 58, + 46, + 161, + 91, + 119, + 224, + 203, + 98, + 229, + 66, + 135, + 117, + 101, + 163, + 62, + 100, + 200, + 2, + 6, + 34, + 114, + 82, + 15, + 234, + 123, + 37, + 194, + 191, + 38, + 119, + 123, + 60, + 156, + 234, + 58, + 167, + 116, + 176, + 84, + 54, + 59, + 247, + 135, + 99, + 188, + 80, + 14, + 54, + 184, + 193, + 237, + 159, + 180, + 243, + 81, + 180, + 253, + 178, + 187, + 10, + 96, + 238, + 106, + 45, + 56, + 214, + 147, + 204, + 51, + 121, + 185, + 166, + 56, + 79, + 155, + 14, + 65, + 224, + 97, + 54, + 109, + 221, + 30, + 13, + 136, + 172, + 72, + 148, + 170, + 113, + 236, + 28, + 25, + 3, + 157, + 224, + 166, + 133, + 94, + 217, + 189, + 193, + 54, + 7, + 68, + 252, + 181, + 117, + 238, + 125, + 156, + 18, + 212, + 202, + 248, + 166, + 136, + 183, + 69, + 39, + 11, + 5, + 213, + 175, + 245, + 108, + 17, + 29, + 9, + 91, + 33, + 135, + 60, + 87, + 180, + 192, + 32, + 93, + 27, + 201, + 139, + 93, + 40, + 3, + 156, + 35, + 91, + 0, + 141, + 109, + 65, + 115, + 145, + 106, + 170, + 93, + 173, + 157, + 0, + 243, + 249, + 28, + 201, + 112, + 95, + 238, + 49, + 211, + 66, + 171, + 101, + 139, + 68, + 240, + 176, + 223, + 93, + 23, + 112, + 129, + 183, + 152, + 80, + 40, + 64, + 247, + 152, + 60, + 157, + 20, + 215, + 5, + 105, + 194, + 92, + 190, + 129, + 149, + 200, + 171, + 183, + 138, + 228, + 231, + 56, + 112, + 243, + 218, + 151 + ], + "expectedReplyTypes": [] + } + ] +} \ No newline at end of file diff --git a/_tmp/jibo-test-48/captures/websocket/fixtures/neohubjibocom-neohubproactive-tidd36da4d442a611f1aba45cf821ea55ae.flow.json b/_tmp/jibo-test-48/captures/websocket/fixtures/neohubjibocom-neohubproactive-tidd36da4d442a611f1aba45cf821ea55ae.flow.json new file mode 100644 index 0000000..1bba3ef --- /dev/null +++ b/_tmp/jibo-test-48/captures/websocket/fixtures/neohubjibocom-neohubproactive-tidd36da4d442a611f1aba45cf821ea55ae.flow.json @@ -0,0 +1,102 @@ +{ + "name": "neohubjibocom-neohubproactive-tidd36da4d442a611f1aba45cf821ea55ae", + "session": { + "hostName": "neo-hub.jibo.com", + "path": "/v1/proactive", + "kind": "neo-hub-proactive", + "token": "hub-usr_openjibo_owner-1777340189867" + }, + "steps": [ + { + "text": { + "type": "TRIGGER", + "ts": 1777341970615, + "msgID": "mid-d388c070-42a6-11f1-a414-5cf821ea55ae", + "transID": "tid-d36da4d4-42a6-11f1-aba4-5cf821ea55ae", + "data": { + "triggerSource": "SURPRISE", + "triggerData": { + "looperID": "5c0b221fdf9d450019c5e255" + } + } + }, + "binary": null, + "expectedReplyTypes": [] + }, + { + "text": { + "type": "CONTEXT", + "ts": 1777341970702, + "msgID": "mid-d395f790-42a6-11f1-95f4-5cf821ea55ae", + "transID": "tid-d36da4d4-42a6-11f1-aba4-5cf821ea55ae", + "data": { + "runtime": { + "character": { + "emotion": { + "name": "NEUTRAL", + "valence": 0.45, + "confidence": 0.2 + }, + "motivation": { + "social": 1, + "playful": 0.5152989351851469 + } + }, + "perception": { + "speaker": "5c0b221fdf9d450019c5e255", + "peoplePresent": [ + { + "id": "NOT_TRAINED", + "entityId": 16085, + "type": "fused", + "confidence": 1 + } + ] + }, + "location": { + "city": "Pleasant Hill", + "state": "Missouri", + "stateAbbr": "MO", + "country": "United States", + "countryCode": "US", + "lat": 38.8358494, + "lng": -94.1427229, + "iso": "2026-04-27T21:06:10.626-05:00" + }, + "loop": { + "loopId": "5c0b221fdf9d450019c5e253", + "users": [ + { + "firstName": "Erin", + "lastName": "Picone", + "phoneticName": "Erin", + "gender": "female", + "birthdate": 649209600000, + "id": "5c0b221fdf9d450019c5e255", + "accountId": "5c0b20547c46170019235759" + } + ], + "jibo": { + "color": "WHITE", + "birthdate": 1544234645598, + "id": "5c0b221fdf9d450019c5e254" + }, + "owner": "5c0b221fdf9d450019c5e255" + }, + "dialog": { + "referent": null + } + }, + "skill": { + "id": null + }, + "general": { + "release": "1.9.2" + } + } + }, + "binary": null, + "expectedReplyTypes": [] + } + ] +} \ No newline at end of file diff --git a/_tmp/jibo-test-48/jibo test 48.txt b/_tmp/jibo-test-48/jibo test 48.txt new file mode 100644 index 0000000..a750b05 --- /dev/null +++ b/_tmp/jibo-test-48/jibo test 48.txt @@ -0,0 +1,1688 @@ + +# cat /var/log/sts-error-bus.json +[null,{"name":"STS_ERR_LOOP_ID_UNKNOWN","type":2,"status":1,"count":28,"oldest":[71,346766],"newest":[345,227312]},null,{"name":"STS_ERR_INIT_FAIL","type":2,"status":1,"count":14,"olde# cat /var/log/messages +2026-05-19T19:44:37.122589-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Booting Linux on physical CPU 0x0 +2026-05-19T19:44:37.121836-05:00 Royal-Current-Sage-Canvas rsyslogd[-,info]: - [origin software="rsyslogd" swVersion="8.9.0" x-pid="142" x-info="http://www.rsyslog.com"] start +2026-05-19T19:44:37.129383-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Initializing cgroup subsys cpuset +2026-05-19T19:44:37.129448-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Initializing cgroup subsys cpu +2026-05-19T19:44:37.129465-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Initializing cgroup subsys cpuacct +2026-05-19T19:44:37.129479-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] Linux version 3.10.104 (jibo@highst-buildroot) (gcc version 4.9.3 (Buildroot 2015.11) ) #1 SMP PREEMPT Thu Aug 23 13:47:43 EDT 2018 +2026-05-19T19:44:37.129511-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] CPU: ARMv7 Processor [413fc0f3] revision 3 (ARMv7), cr=10c5387d +2026-05-19T19:44:37.129637-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache +2026-05-19T19:44:37.129660-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Machine: Avionic Design Meerkat (Device Tree), model: Avionic Design Tobor All In One, serial: 0 +2026-05-19T19:44:37.129675-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Tegra reserved memory: +2026-05-19T19:44:37.129685-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] LP0: 00000000 - 00000000 +2026-05-19T19:44:37.129696-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Bootloader framebuffer: 00000000 - 00000000 +2026-05-19T19:44:37.129709-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Bootloader framebuffer2: 00000000 - 00000000 +2026-05-19T19:44:37.129718-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Framebuffer: fed00000 - ffefffff +2026-05-19T19:44:37.129752-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] 2nd Framebuffer: 00000000 - 00000000 +2026-05-19T19:44:37.129770-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Carveout: 00000000 - 00000000 +2026-05-19T19:44:37.129783-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Vpr: 00000000 - 00000000 +2026-05-19T19:44:37.129793-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Tsec: 00000000 - 00000000 +2026-05-19T19:44:37.129805-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] cma: CMA: reserved 16 MiB at ae800000 +2026-05-19T19:44:37.129815-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] Memory policy: ECC disabled, Data cache writealloc +2026-05-19T19:44:37.129833-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] On node 0 totalpages: 518912 +2026-05-19T19:44:37.129844-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] free_area_init_node: node 0, pgdat c0d05340, node_mem_map c0e09000 +2026-05-19T19:44:37.129855-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] Normal zone: 1520 pages used for memmap +2026-05-19T19:44:37.129882-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] Normal zone: 0 pages reserved +2026-05-19T19:44:37.129896-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] Normal zone: 194560 pages, LIFO batch:31 +2026-05-19T19:44:37.129904-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] HighMem zone: 2574 pages used for memmap +2026-05-19T19:44:37.129916-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] HighMem zone: 324352 pages, LIFO batch:31 +2026-05-19T19:44:37.129925-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] DTS File Name: arch/arm/boot/dts/tegra124-tobor-aio-core.dtsi +2026-05-19T19:44:37.129934-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Tegra12: CPU Speedo value 2286, Soc Speedo value 2255, Gpu Speedo value 2089 +2026-05-19T19:44:37.129942-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Tegra12: CPU Speedo ID 5, Soc Speedo ID 0, Gpu Speedo ID 1 +2026-05-19T19:44:37.129959-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Tegra12: CPU Process ID 0,Soc Process ID 1,Gpu Process ID 0 +2026-05-19T19:44:37.130016-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Tegra Revision: A01 SKU: 0x87 CPU Process: 0 Core Process: 1 +2026-05-19T19:44:37.130037-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] tegra: PLLP fixed rate: 408000000 +2026-05-19T19:44:37.130048-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] tegra_clk_shared_bus_user_init: c2bus client se left ON +2026-05-19T19:44:37.130059-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] tegra_clk_shared_bus_user_init: c4bus client vi left ON +2026-05-19T19:44:37.130070-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] edp: using default cpu edp limits +2026-05-19T19:44:37.130084-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering cpu_lp maximum rate from 1350000000 to 1044000000 +2026-05-19T19:44:37.130100-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering sbus maximum rate from 420000000 to 372000000 +2026-05-19T19:44:37.130111-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering vic03 maximum rate from 900000000 to 756000000 +2026-05-19T19:44:37.130144-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering tsec maximum rate from 900000000 to 756000000 +2026-05-19T19:44:37.130288-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering msenc maximum rate from 600000000 to 480000000 +2026-05-19T19:44:37.130303-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering se maximum rate from 600000000 to 480000000 +2026-05-19T19:44:37.130314-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering vde maximum rate from 600000000 to 480000000 +2026-05-19T19:44:37.130326-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering host1x maximum rate from 500000000 to 408000000 +2026-05-19T19:44:37.130336-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering vi maximum rate from 700000000 to 600000000 +2026-05-19T19:44:37.130345-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering isp maximum rate from 700000000 to 600000000 +2026-05-19T19:44:37.130354-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering c4bus maximum rate from 700000000 to 600000000 +2026-05-19T19:44:37.130364-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering pll_c maximum rate from 1400000000 to 1066000000 +2026-05-19T19:44:37.130374-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering pll_c2 maximum rate from 1200000000 to 1066000000 +2026-05-19T19:44:37.130384-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering pll_c3 maximum rate from 1200000000 to 1066000000 +2026-05-19T19:44:37.130392-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering hdmi maximum rate from 594000000 to 297000000 +2026-05-19T19:44:37.130403-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering sdmmc1 maximum rate from 208000000 to 204000000 +2026-05-19T19:44:37.130413-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering sdmmc3 maximum rate from 208000000 to 204000000 +2026-05-19T19:44:37.130436-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering gbus maximum rate from 1032000000 to 852000000 +2026-05-19T19:44:37.130447-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Lowering cpu_g maximum rate from 3000000000 to 2065500000 +2026-05-19T19:44:37.130457-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] tegra dvfs: VDD_CPU nominal 1260mV, scaling enabled +2026-05-19T19:44:37.130467-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] tegra dvfs: VDD_CORE nominal 1150mV, scaling enabled +2026-05-19T19:44:37.130477-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] tegra dvfs: VDD_GPU nominal 1200mV, scaling enabled +2026-05-19T19:44:37.130488-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Switching to timer-based delay loop +2026-05-19T19:44:37.130497-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] ------------[ cut here ]------------ +2026-05-19T19:44:37.130507-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] WARNING: at arch/arm/mach-tegra/clock.c:969 tegra_common_init_clock+0x68/0x88() +2026-05-19T19:44:37.130526-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] tegra: spdif_in boot rate 408000000 exceeds max rate 100000000 +2026-05-19T19:44:37.130562-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] Modules linked in: +2026-05-19T19:44:37.130573-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 3.10.104 #1 +2026-05-19T19:44:37.130585-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (unwind_backtrace+0x0/0x134) from [] (show_stack+0x18/0x1c) +2026-05-19T19:44:37.130598-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (show_stack+0x18/0x1c) from [] (warn_slowpath_common+0x5c/0x74) +2026-05-19T19:44:37.130610-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (warn_slowpath_common+0x5c/0x74) from [] (warn_slowpath_fmt+0x38/0x48) +2026-05-19T19:44:37.130623-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (warn_slowpath_fmt+0x38/0x48) from [] (tegra_common_init_clock+0x68/0x88) +2026-05-19T19:44:37.130635-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (tegra_common_init_clock+0x68/0x88) from [] (tegra12x_init_early+0x108/0x2a8) +2026-05-19T19:44:37.130665-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (tegra12x_init_early+0x108/0x2a8) from [] (setup_arch+0x800/0x82c) +2026-05-19T19:44:37.130679-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (setup_arch+0x800/0x82c) from [] (start_kernel+0x94/0x334) +2026-05-19T19:44:37.130690-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] [] (start_kernel+0x94/0x334) from [<80008074>] (0x80008074) +2026-05-19T19:44:37.130707-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] ---[ end trace 1b75b31a2719ed1c ]--- +2026-05-19T19:44:37.130717-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] tegra_powergate_init: DONE +2026-05-19T19:44:37.130725-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] PERCPU: Embedded 9 pages/cpu @c1e32000 s14848 r8192 d13824 u36864 +2026-05-19T19:44:37.130735-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] pcpu-alloc: s14848 r8192 d13824 u36864 alloc=9*4096 +2026-05-19T19:44:37.130746-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 +2026-05-19T19:44:37.130770-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 517392 +2026-05-19T19:44:37.130914-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] Kernel command line: console=ttyS0,115200 root=/dev/mmcblk0p2 rw rootwait vt.global_cursor_default=0 net.ifnames=0 +2026-05-19T19:44:37.130926-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +2026-05-19T19:44:37.130934-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +2026-05-19T19:44:37.130946-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +2026-05-19T19:44:37.130955-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] allocated 4192256 bytes of page_cgroup +2026-05-19T19:44:37.130966-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +2026-05-19T19:44:37.130977-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Memory: 2027MB = 2027MB total +2026-05-19T19:44:37.130986-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] Memory: 2023116k/2023116k available, 73012k reserved, 1297408K highmem +2026-05-19T19:44:37.130993-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] Virtual kernel memory layout: +2026-05-19T19:44:37.131002-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) +2026-05-19T19:44:37.131014-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) +2026-05-19T19:44:37.131025-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] vmalloc : 0xf0000000 - 0xff000000 ( 240 MB) +2026-05-19T19:44:37.131036-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] lowmem : 0xc0000000 - 0xef800000 ( 760 MB) +2026-05-19T19:44:37.131050-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) +2026-05-19T19:44:37.131061-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB) +2026-05-19T19:44:37.131070-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] .text : 0xc0008000 - 0xc0aca238 (11017 kB) +2026-05-19T19:44:37.131085-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] .init : 0xc0acb000 - 0xc0c25a00 (1387 kB) +2026-05-19T19:44:37.131098-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] .data : 0xc0c26000 - 0xc0d1a7d8 ( 978 kB) +2026-05-19T19:44:37.131111-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.000000] .bss : 0xc0d1a7d8 - 0xc0db65fc ( 624 kB) +2026-05-19T19:44:37.131122-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Preemptible hierarchical RCU implementation. +2026-05-19T19:44:37.131134-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] NR_IRQS:960 +2026-05-19T19:44:37.131156-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] the number of interrupt controllers found is 5 +2026-05-19T19:44:37.131177-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Architected local timer running at 12.00MHz (phys). +2026-05-19T19:44:37.131195-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] sched_clock: 56 bits at 12MHz, resolution 83ns, wraps every 2863311536128ns +2026-05-19T19:44:37.131207-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Ignoring duplicate/late registration of read_current_timer delay +2026-05-19T19:44:37.131219-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000000] Console: colour dummy device 80x30 +2026-05-19T19:44:37.131235-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000442] Calibrating delay loop (skipped), value calculated using timer frequency.. lpj=12000 +2026-05-19T19:44:37.131243-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000458] pid_max: default: 32768 minimum: 301 +2026-05-19T19:44:37.131253-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.000731] Mount-cache hash table entries: 512 +2026-05-19T19:44:37.131263-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.026723] Initializing cgroup subsys debug +2026-05-19T19:44:37.131282-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.026739] Initializing cgroup subsys memory +2026-05-19T19:44:37.131296-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.026790] Initializing cgroup subsys devices +2026-05-19T19:44:37.131524-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.026809] Initializing cgroup subsys freezer +2026-05-19T19:44:37.131562-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.026820] Initializing cgroup subsys blkio +2026-05-19T19:44:37.131573-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.026872] CPU: Testing write buffer coherency: ok +2026-05-19T19:44:37.131583-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.026913] ftrace: allocating 29679 entries in 58 pages +2026-05-19T19:44:37.132012-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.065812] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 +2026-05-19T19:44:37.132029-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.065842] Setting up static identity map for 0xc07cef58 - 0xc07ceff4 +2026-05-19T19:44:37.132041-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.069843] ftrace: Allocated trace_printk buffers +2026-05-19T19:44:37.132054-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.076541] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 +2026-05-19T19:44:37.132064-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.079563] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002 +2026-05-19T19:44:37.132135-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.082599] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003 +2026-05-19T19:44:37.132150-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.082801] Brought up 4 CPUs +2026-05-19T19:44:37.132208-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.082821] SMP: Total of 4 processors activated. +2026-05-19T19:44:37.132274-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.082828] CPU: All CPU(s) started in SVC mode. +2026-05-19T19:44:37.132300-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.083758] devtmpfs: initialized +2026-05-19T19:44:37.132320-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.091395] pinctrl core: initialized pinctrl subsystem +2026-05-19T19:44:37.132339-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.091693] regulator-dummy: no parameters +2026-05-19T19:44:37.132351-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.092599] NET: Registered protocol family 16 +2026-05-19T19:44:37.132362-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.094365] DMA: preallocated 256 KiB pool for atomic coherent allocations +2026-05-19T19:44:37.132371-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.095631] tegra_smmu tegra_smmu: Loaded Tegra IOMMU driver +2026-05-19T19:44:37.132445-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.096780] console [pstore-1] enabled +2026-05-19T19:44:37.132492-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.096810] ramoops: attached 0x200000@0xfeb00000, ecc: 0/0 +2026-05-19T19:44:37.132573-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.097193] cpuidle: using governor ladder +2026-05-19T19:44:37.132594-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.097205] cpuidle: using governor menu +2026-05-19T19:44:37.132676-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.108777] tegra124-pinctrl 70000868.pinmux: lookup the user state drive not found +2026-05-19T19:44:37.132698-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.108796] tegra124-pinctrl 70000868.pinmux: lookup the user state unused not found +2026-05-19T19:44:37.132725-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.109514] gpiochip_add: registered GPIOs 0 to 255 on device: tegra-gpio +2026-05-19T19:44:37.132747-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.115907] Wake16 for irq=34 +2026-05-19T19:44:37.132761-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.122305] platform tegradc.0: IOVA linear map 0xfed00000(1200000) +2026-05-19T19:44:37.132771-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.124936] Wake39 for irq=52 +2026-05-19T19:44:37.132843-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.125552] platform tegra-otg: 4000 1000000 +2026-05-19T19:44:37.133049-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.125724] Wake40 for irq=53 +2026-05-19T19:44:37.133076-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.125735] Wake42 for irq=53 +2026-05-19T19:44:37.133084-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.126011] Wake41 for irq=129 +2026-05-19T19:44:37.133150-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.126022] Wake43 for irq=129 +2026-05-19T19:44:37.133224-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.132056] PMC DT attribute suspend_mode=2, board value=3 +2026-05-19T19:44:37.133283-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.132112] tegra_init_suspend: Suspend mode LP0 requested, no lp0_vec provided by bootlader -- disabling LP0 +2026-05-19T19:44:37.133298-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.132537] Clear bootloader IO dpd settings +2026-05-19T19:44:37.133307-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.132718] tegra-emc 7001b000.memory-controller: Found EMC table for ram-code 0x02 +2026-05-19T19:44:37.133317-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.133445] tegra: pll_m is selected as scalable EMC clock source +2026-05-19T19:44:37.133371-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.133466] Lowering emc maximum rate from 1200000000 to 924000000 +2026-05-19T19:44:37.133383-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.133483] tegra: validated EMC DFS table +2026-05-19T19:44:37.133424-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.133607] tegra_meerkat_edp_init: CPU regulator 12500 mA +2026-05-19T19:44:37.133470-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.133618] edp: cpu edp limit: 12500 +2026-05-19T19:44:37.133486-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.385516] tegra_meerkat_edp_init: GPU regulator 11400 mA +2026-05-19T19:44:37.133493-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.385527] edp: gpu edp limit: 11400 +2026-05-19T19:44:37.133501-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.386476] swapper/0 isomgr_init(): iso emc max clk=924000KHz +2026-05-19T19:44:37.133576-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.386488] swapper/0 isomgr_init(): max_iso_bw=7392000KB<6>[ 0.386943] tegra11_soctherem_oc_int_init(): OC interrupts are not enabled +2026-05-19T19:44:37.133645-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.387179] hw-breakpoint: Debug register access (0xee003e17) caused undefined instruction on CPU 3 +2026-05-19T19:44:37.133660-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.387184] hw-breakpoint: Debug register access (0xee003e17) caused undefined instruction on CPU 2 +2026-05-19T19:44:37.133672-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.387190] hw-breakpoint: Debug register access (0xee003e17) caused undefined instruction on CPU 1 +2026-05-19T19:44:37.133748-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.387194] hw-breakpoint: CPU 2 failed to disable vector catch +2026-05-19T19:44:37.133839-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.387153] No ATAGs? +2026-05-19T19:44:37.133975-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.387230] hw-breakpoint: Debug register access (0xee003e17) caused undefined instruction on CPU 0 +2026-05-19T19:44:37.134000-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.387497] mc-err: Started MC error interface! +2026-05-19T19:44:37.134019-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.397464] bio: create slab at 0 +2026-05-19T19:44:37.134077-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.399570] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@50[0]' +2026-05-19T19:44:37.134160-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.399683] VSYS: 12000 mV +2026-05-19T19:44:37.134273-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.399805] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@101[0]' +2026-05-19T19:44:37.134293-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.399908] +5V_SOM: 5000 mV +2026-05-19T19:44:37.134303-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.399963] +5V_SOM: supplied by VSYS +2026-05-19T19:44:37.134312-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.400109] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@102[0]' +2026-05-19T19:44:37.134372-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.400211] +3V3_SOM: 3300 mV +2026-05-19T19:44:37.134431-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.400254] +3V3_SOM: supplied by VSYS +2026-05-19T19:44:37.134451-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.400404] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@103[0]' +2026-05-19T19:44:37.134468-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.400496] +5V_EXT: 5000 mV +2026-05-19T19:44:37.134476-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.400538] +5V_EXT: supplied by VSYS +2026-05-19T19:44:37.134485-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.400673] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@104[0]' +2026-05-19T19:44:37.134498-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.400766] +3V3_EXT: 3300 mV +2026-05-19T19:44:37.134523-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.400807] +3V3_EXT: supplied by VSYS +2026-05-19T19:44:37.134534-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.400950] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@105[0]' +2026-05-19T19:44:37.134565-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.401034] +1V8_EXT: 1800 mV +2026-05-19T19:44:37.134574-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.401081] reg-fixed-voltage 69.regulator: Failed to find supply vin +2026-05-19T19:44:37.134583-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.401180] reg-fixed-voltage 69.regulator: Failed to register regulator: -517 +2026-05-19T19:44:37.134593-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.401220] platform 69.regulator: Driver reg-fixed-voltage requests probe deferral +2026-05-19T19:44:37.134606-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.401302] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.134678-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.401409] HDMI_VCC: 5000 mV +2026-05-19T19:44:37.134694-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.401452] HDMI_VCC: supplied by +5V_EXT +2026-05-19T19:44:37.134702-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.401609] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.134735-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.401711] +3V3_SD: 3300 mV +2026-05-19T19:44:37.134754-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.401753] +3V3_SD: supplied by +3V3_EXT +2026-05-19T19:44:37.134836-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.401895] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@108[0]' +2026-05-19T19:44:37.134861-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.401985] +1V5_mPCIe: 1500 mV +2026-05-19T19:44:37.134884-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.402028] +1V5_mPCIe: supplied by +3V3_EXT +2026-05-19T19:44:37.134948-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.402170] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@109[0]' +2026-05-19T19:44:37.134974-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.402288] +3V3_mPCIe: 3300 mV +2026-05-19T19:44:37.135049-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.402330] +3V3_mPCIe: supplied by +3V3_EXT +2026-05-19T19:44:37.135069-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.402485] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.135086-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.402594] USB_CLIENT_VBUS: 5000 mV +2026-05-19T19:44:37.135148-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.402637] USB_CLIENT_VBUS: supplied by +5V_EXT +2026-05-19T19:44:37.135196-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.402796] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.135216-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.402911] USB1_VCC: 5000 mV +2026-05-19T19:44:37.135227-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.402955] USB1_VCC: supplied by +5V_EXT +2026-05-19T19:44:37.135280-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.403107] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.135293-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.403220] AMP_EN: 1800 mV +2026-05-19T19:44:37.135350-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.403282] AMP_EN: supplied by +5V_EXT +2026-05-19T19:44:37.135425-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.403470] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.135450-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.403579] WLAN_EN: 1800 mV +2026-05-19T19:44:37.135470-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.403623] WLAN_EN: supplied by +5V_EXT +2026-05-19T19:44:37.135488-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.403784] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@201[0]' +2026-05-19T19:44:37.135564-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.403883] vana: 2700 mV +2026-05-19T19:44:37.135583-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.403926] vana: supplied by +5V_EXT +2026-05-19T19:44:37.135657-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.404082] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@202[0]' +2026-05-19T19:44:37.135800-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.404169] vdig: 1200 mV +2026-05-19T19:44:37.135817-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.404212] vdig: supplied by +5V_EXT +2026-05-19T19:44:37.135829-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.404372] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@203[0]' +2026-05-19T19:44:37.135849-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.404459] vif: 1800 mV +2026-05-19T19:44:37.135860-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.404501] vif: supplied by +5V_EXT +2026-05-19T19:44:37.135931-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.404651] of_get_named_gpiod_flags: can't parse gpios property of node '/com_regulators/regulator@0[0]' +2026-05-19T19:44:37.136064-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.404749] +VDD_MUX: 5000 mV +2026-05-19T19:44:37.136078-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.404792] +VDD_MUX: supplied by +5V_SOM +2026-05-19T19:44:37.136087-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.404943] of_get_named_gpiod_flags: can't parse gpios property of node '/com_regulators/regulator@1[0]' +2026-05-19T19:44:37.136096-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405031] +5V_SYS: 5000 mV +2026-05-19T19:44:37.136108-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405075] +5V_SYS: supplied by +VDD_MUX +2026-05-19T19:44:37.136127-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.405220] of_get_named_gpiod_flags: can't parse gpios property of node '/com_regulators/regulator@2[0]' +2026-05-19T19:44:37.136203-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405325] +3V3_SYS: 3300 mV +2026-05-19T19:44:37.136276-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405370] +3V3_SYS: supplied by +3V3_SOM +2026-05-19T19:44:37.136291-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.405524] of_get_named_gpiod_flags: can't parse gpios property of node '/com_regulators/regulator@3[0]' +2026-05-19T19:44:37.136300-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405612] +3V3_RUN: 3300 mV +2026-05-19T19:44:37.136347-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405655] +3V3_RUN: supplied by +3V3_SYS +2026-05-19T19:44:37.136391-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.405798] of_get_named_gpiod_flags: can't parse gpios property of node '/com_regulators/regulator@4[0]' +2026-05-19T19:44:37.136404-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405897] +3V3_AVDD_HDMI_AP_GATED: 3300 mV +2026-05-19T19:44:37.136411-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.405941] +3V3_AVDD_HDMI_AP_GATED: supplied by +3V3_RUN +2026-05-19T19:44:37.136422-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.406105] of_get_named_gpiod_flags exited with status -517 +2026-05-19T19:44:37.136462-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.406124] platform 5.regulator: Driver reg-fixed-voltage requests probe deferral +2026-05-19T19:44:37.136474-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.406202] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.136481-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.406335] +1V05_RUN_AVDD_HDMI_PLL_AP_GATED: 1050 mV +2026-05-19T19:44:37.136489-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.406382] reg-fixed-voltage 6.regulator: Failed to find supply vin +2026-05-19T19:44:37.136570-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.406481] reg-fixed-voltage 6.regulator: Failed to register regulator: -517 +2026-05-19T19:44:37.136594-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.406502] platform 6.regulator: Driver reg-fixed-voltage requests probe deferral +2026-05-19T19:44:37.136636-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.408081] vgaarb: loaded +2026-05-19T19:44:37.136644-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 0.408725] SCSI subsystem initialized +2026-05-19T19:44:37.137452-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.408905] libata version 3.00 loaded. +2026-05-19T19:44:37.137479-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.409105] usbcore: registered new interface driver usbfs +2026-05-19T19:44:37.137489-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.409166] usbcore: registered new interface driver hub +2026-05-19T19:44:37.137657-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.409272] usbcore: registered new device driver usb +2026-05-19T19:44:37.137667-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.409544] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137680-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.409560] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137689-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.409762] regulator_get() failed for (i2c-0,pull-ups), -19 +2026-05-19T19:44:37.137700-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.411245] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137710-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.411262] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137718-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.411461] regulator_get() failed for (i2c-1,pull-ups), -19 +2026-05-19T19:44:37.137729-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.411820] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137803-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.411837] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137818-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.412101] tegra-i2c tegra12-i2c.2: Failed to add I2C adapter +2026-05-19T19:44:37.137832-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.412136] platform tegra12-i2c.2: Driver tegra-i2c requests probe deferral +2026-05-19T19:44:37.137886-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.412206] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137898-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.412221] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.137941-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.412490] regulator_get() failed for (i2c-4,pull-ups), -19 +2026-05-19T19:44:37.138011-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.412559] Wake18 for irq=118 +2026-05-19T19:44:37.138039-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.413490] as3722 4-0040: AS3722 ID: ID1:ID2:ID3 = 0x0c:0x01:0x05 +2026-05-19T19:44:37.138059-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.413508] as3722 4-0040: Device version 1V1 and platform version 1V2 +2026-05-19T19:44:37.138073-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.413520] as3722 4-0040: Final OTP version 1V2 +2026-05-19T19:44:37.138087-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.414333] Wake18 for irq=118 +2026-05-19T19:44:37.138096-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.418325] gpiochip_find_base: found new base at 1016 +2026-05-19T19:44:37.138106-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.418426] gpiochip_add: registered GPIOs 1016 to 1023 on device: as3722-gpio +2026-05-19T19:44:37.138185-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.418463] GPIO chip as3722-gpio: created GPIO range 0->7 ==> as3722-pinctrl PIN 0->7 +2026-05-19T19:44:37.138207-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.418667] as3722-regulator as3722-regulator.0: Consumer cpu does not have device name +2026-05-19T19:44:37.138286-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.418710] as3722-regulator as3722-regulator.0: Consumer core does not have device name +2026-05-19T19:44:37.138302-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.418827] as3722-regulator as3722-regulator.0: Consumer gpu does not have device name +2026-05-19T19:44:37.138315-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.418843] as3722-regulator as3722-regulator.0: Consumer gpu_simon does not have device name +2026-05-19T19:44:37.138396-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.419847] +VDD_CPU_AP: 650 <--> 1300 mV at 800 mV 3500 mA +2026-05-19T19:44:37.138416-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.421220] +VDD_CORE: 700 <--> 1350 mV at 1100 mV 3500 mA +2026-05-19T19:44:37.138529-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.422378] +1V35_LP0(sd2): 1450 mV +2026-05-19T19:44:37.138577-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.422441] +1V35_LP0(sd2): supplied by +5V_SYS +2026-05-19T19:44:37.138586-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.423343] +1V35_LP0(sd3): no parameters +2026-05-19T19:44:37.138593-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.423409] +1V35_LP0(sd3): supplied by +5V_SYS +2026-05-19T19:44:37.138600-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.423733] +1V05_RUN: 1050 mV +2026-05-19T19:44:37.139629-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.423791] +1V05_RUN: supplied by +5V_SYS +2026-05-19T19:44:37.139651-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.424958] +1V8_VDDIO: 1800 mV +2026-05-19T19:44:37.139664-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.425014] +1V8_VDDIO: supplied by +5V_SYS +2026-05-19T19:44:37.139673-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.425308] +VDD_GPU_AP: applied init 1000000uV constraint +2026-05-19T19:44:37.139681-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.426170] +VDD_GPU_AP: 650 <--> 1200 mV at 1000 mV 3500 mA +2026-05-19T19:44:37.139690-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.426645] +1V05_RUN_AVDD: 1050 mV at 300 mA +2026-05-19T19:44:37.139747-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.426696] +1V05_RUN_AVDD: supplied by +1V35_LP0(sd2) +2026-05-19T19:44:37.139761-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.427609] +1V8_RUN_CAM: 1800 mV at 150 mA +2026-05-19T19:44:37.139826-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.427677] +1V8_RUN_CAM: supplied by +3V3_RUN +2026-05-19T19:44:37.139883-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.428312] +1V2_GEN_AVDD: 1200 mV at 150 mA +2026-05-19T19:44:37.139897-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.428367] +1V2_GEN_AVDD: supplied by +1V8_VDDIO +2026-05-19T19:44:37.139905-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.429531] +1V05_LDO_VDD_RTC: 1000 mV at 150 mA +2026-05-19T19:44:37.139954-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.429862] AVDD_LVDS_PLL: 1800 <--> 3300 mV at 150 mA +2026-05-19T19:44:37.140017-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.430167] as3722-ldo5: at 150 mA +2026-05-19T19:44:37.140031-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.430221] as3722-ldo5: supplied by +1V8_VDDIO +2026-05-19T19:44:37.140039-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.430678] +VDDIO_SDMMC3: 1800 mV at 150 mA +2026-05-19T19:44:37.140047-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.430745] +VDDIO_SDMMC3: supplied by +3V3_RUN +2026-05-19T19:44:37.140101-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.431067] as3722-ldo7: at 150 mA +2026-05-19T19:44:37.140114-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.431121] as3722-ldo7: supplied by +1V8_VDDIO +2026-05-19T19:44:37.140123-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.431443] as3722-ldo9: at 150 mA +2026-05-19T19:44:37.140134-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.431503] as3722-ldo9: supplied by +5V_SYS +2026-05-19T19:44:37.140203-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.431992] as3722-ldo10: at 150 mA +2026-05-19T19:44:37.140217-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.432054] as3722-ldo10: supplied by +5V_SYS +2026-05-19T19:44:37.140232-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.432516] +1V8_RUN_VPP_FUSE: 1800 mV at 150 mA +2026-05-19T19:44:37.140284-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.432579] +1V8_RUN_VPP_FUSE: supplied by +3V3_RUN +2026-05-19T19:44:37.140299-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.433365] gpio wake35 for gpio=70 +2026-05-19T19:44:37.140351-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.434049] Linux video capture interface: v2.00 +2026-05-19T19:44:37.140402-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.435134] Advanced Linux Sound Architecture Driver Initialized. +2026-05-19T19:44:37.140421-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.438932] as3722-adc-extcon as3722-adc-extcon.2: USB-Host is disconnected +2026-05-19T19:44:37.140430-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.441994] platform power_detect.8: Driver tegra-power-detect requests probe deferral +2026-05-19T19:44:37.140438-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.442245] Switching to clocksource arch_sys_counter +2026-05-19T19:44:37.140483-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.464021] nvmap_heap_init: nvmap_heap_init: created heap block cache +2026-05-19T19:44:37.140496-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.464202] nvmap_page_pool_init: Total MB RAM: 1991 +2026-05-19T19:44:37.140564-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.464214] nvmap_page_pool_init: nvmap page pool size: 63734 pages (248 MB) +2026-05-19T19:44:37.140632-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.464348] nvmap_background_zero_thread: PP zeroing thread starting. +2026-05-19T19:44:37.140644-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.464520] iram: dma coherent mem declare 0x40001000,258048 +2026-05-19T19:44:37.140685-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.465374] misc nvmap: created heap iram base 0x40001000 size (252KiB) +2026-05-19T19:44:37.140699-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.465516] nvmap:inner cache maint threshold=2097152 +2026-05-19T19:44:37.140751-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.474952] of_get_named_gpiod_flags: can't parse gpios property of node '/otg@7d000000[0]' +2026-05-19T19:44:37.140806-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.475059] of_get_named_gpiod_flags: can't parse gpios property of node '/usb@7d000000[0]' +2026-05-19T19:44:37.140821-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.475243] Wake39 for irq=52 +2026-05-19T19:44:37.140833-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.475349] tegra-otg tegra-otg: otg transceiver registered +2026-05-19T19:44:37.140888-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.475700] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type com-thermal +2026-05-19T19:44:37.140958-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.475970] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type cpu-thermal +2026-05-19T19:44:37.140973-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.476146] NET: Registered protocol family 2 +2026-05-19T19:44:37.141024-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.477027] TCP established hash table entries: 8192 (order: 4, 65536 bytes) +2026-05-19T19:44:37.141037-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.477221] TCP bind hash table entries: 8192 (order: 4, 65536 bytes) +2026-05-19T19:44:37.141050-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.477420] TCP: Hash tables configured (established 8192 bind 8192) +2026-05-19T19:44:37.141103-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.477471] TCP: reno registered +2026-05-19T19:44:37.141117-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.477488] UDP hash table entries: 512 (order: 2, 16384 bytes) +2026-05-19T19:44:37.141169-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.477533] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +2026-05-19T19:44:37.141184-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.477828] NET: Registered protocol family 1 +2026-05-19T19:44:37.141238-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.478229] RPC: Registered named UNIX socket transport module. +2026-05-19T19:44:37.141289-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.478241] RPC: Registered udp transport module. +2026-05-19T19:44:37.141311-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.478251] RPC: Registered tcp transport module. +2026-05-19T19:44:37.141323-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.478260] RPC: Registered tcp NFSv4.1 backchannel transport module. +2026-05-19T19:44:37.141333-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.478273] PCI: CLS 0 bytes, default 64 +2026-05-19T19:44:37.141378-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.478545] tegra-fuse tegra-fuse: Fuse driver initialized succesfully +2026-05-19T19:44:37.141390-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.484047] host1x host1x: initialized +2026-05-19T19:44:37.141433-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.484644] hw perfevents: enabled with ARMv7 Cortex-A15 PMU driver, 7 counters available +2026-05-19T19:44:37.141444-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.485389] tegra_throttle : init passed +2026-05-19T19:44:37.141484-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.485478] Tegra cpuquiet initialized: disabled +2026-05-19T19:44:37.141527-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.485615] cpu-tegra: init EDP limit: 2065 MHz +2026-05-19T19:44:37.141596-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.486574] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type CPU-therm +2026-05-19T19:44:37.141649-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.486941] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type GPU-therm +2026-05-19T19:44:37.141698-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.487147] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type MEM-therm +2026-05-19T19:44:37.141715-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.487385] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type PLL-therm +2026-05-19T19:44:37.141733-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.489047] bounce pool size: 64 pages +2026-05-19T19:44:37.141744-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.490512] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +2026-05-19T19:44:37.141798-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.490786] NTFS driver 2.1.30 [Flags: R/O]. +2026-05-19T19:44:37.141811-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.490935] fuse init (API version 7.22) +2026-05-19T19:44:37.141869-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.491163] msgmni has been set to 1449 +2026-05-19T19:44:37.141916-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.492912] io scheduler noop registered (default) +2026-05-19T19:44:37.141930-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.493231] of_get_named_gpiod_flags: can't parse gpios property of node '/pcie-controller[0]' +2026-05-19T19:44:37.141938-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.493243] of_get_named_gpiod_flags: can't parse gpios property of node '/pcie-controller[0]' +2026-05-19T19:44:37.141948-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.493254] of_get_named_gpiod_flags: can't parse gpios property of node '/pcie-controller[0]' +2026-05-19T19:44:37.141959-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.493417] PCIE: Failed to enable regulators +2026-05-19T19:44:37.141999-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.493460] PCIE: Failed to power on: -517 +2026-05-19T19:44:37.142011-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.493470] PCIE: get resources failed +2026-05-19T19:44:37.142020-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.493494] platform pcie-controller.1: Driver tegra-pcie requests probe deferral +2026-05-19T19:44:37.142072-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.493979] of_get_named_gpiod_flags: can't parse gpios property of node '/backlight[0]' +2026-05-19T19:44:37.142084-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 0.493998] regulator_get() failed for (backlight.9,power), -19 +2026-05-19T19:44:37.142125-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.494110] sysedp_create_consumer: unable to create backlight.9, no consumer_data for backlight.9 found +2026-05-19T19:44:37.142168-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.495579] tsec tsec: initialized +2026-05-19T19:44:37.142181-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.497577] isp isp.0: initialized +2026-05-19T19:44:37.142190-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.499059] isp isp.1: initialized +2026-05-19T19:44:37.142202-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.501140] falcon vic03.0: initialized +2026-05-19T19:44:37.142249-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.502859] falcon msenc: initialized +2026-05-19T19:44:37.142689-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.503649] of_get_named_gpiod_flags: can't parse gpios property of node '/host1x/dsi/panel-t-720-1280-1[0]' +2026-05-19T19:44:37.142717-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 0.503753] tegradc tegradc.0: No ddc device node in /host1x/dsi +2026-05-19T19:44:37.142729-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.503771] of_dc_parse_platform_data: could not find SD settings node +2026-05-19T19:44:37.142783-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.504091] tegradc tegradc.0: DSI: HS clock rate is 186000 +2026-05-19T19:44:37.142794-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.505424] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.142833-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.505442] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.142845-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.505459] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.142884-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 0.505474] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.142924-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.569802] tegradc tegradc.0: nominal-pclk:61904000 parent:61750000 div:1.0 pclk:61750000 56332640~67475360 +2026-05-19T19:44:37.142938-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 0.659484] tegradc tegradc.0: DSI pad calibration done +2026-05-19T19:44:37.142946-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 1.786205] tegradc tegradc.0: probed +2026-05-19T19:44:37.142955-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 1.786885] tegradc tegradc.0: nominal-pclk:62000000 parent:186000000 div:3.0 pclk:62000000 56420000~67580000 +2026-05-19T19:44:37.142964-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 1.796460] Console: switching to colour frame buffer device 90x80 +2026-05-19T19:44:37.142972-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 1.808612] tegradc tegradc.0: fb registered +2026-05-19T19:44:37.142979-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 1.812385] tegra-apbdma tegra-apbdma: Tegra20 APB DMA driver register 32 channels +2026-05-19T19:44:37.142987-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 1.813138] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled +2026-05-19T19:44:37.142994-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 1.814726] serial8250.3: ttyS0 at MMIO 0x70006300 (irq = 122) is a Tegra +2026-05-19T19:44:37.143043-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.580717] console [ttyS0] enabled +2026-05-19T19:44:37.143055-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.584975] serial-tegra.0: ttyTHS0 at MMIO 0x70006000 (irq = 68) is a SERIAL_TEGRA +2026-05-19T19:44:37.143063-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.592903] serial-tegra.1: ttyTHS1 at MMIO 0x70006040 (irq = 69) is a SERIAL_TEGRA +2026-05-19T19:44:37.143072-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.600874] serial-tegra.2: ttyTHS2 at MMIO 0x70006200 (irq = 78) is a SERIAL_TEGRA +2026-05-19T19:44:37.143082-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.613840] loop: module loaded +2026-05-19T19:44:37.143129-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.617565] tegra_profiler: Branch: Dev +2026-05-19T19:44:37.143140-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.621448] tegra_profiler: Version: 1.103 +2026-05-19T19:44:37.143147-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.625558] tegra_profiler: Samples version: 34 +2026-05-19T19:44:37.143154-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.630097] tegra_profiler: IO version: 18 +2026-05-19T19:44:37.143199-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.634204] armv7_pmu: arch: Cortex A15, type: 4, ver: 0 +2026-05-19T19:44:37.143210-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.639675] tegra_profiler: auth: init +2026-05-19T19:44:37.143219-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.643802] GPS: mt3332_gps_mod_init: platform_driver_register ret = 0 +2026-05-19T19:44:37.143266-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.653249] tun: Universal TUN/TAP device driver, 1.6 +2026-05-19T19:44:37.143313-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.658327] tun: (C) 1999-2004 Max Krasnyansky +2026-05-19T19:44:37.143326-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.664791] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +2026-05-19T19:44:37.143334-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.671477] tegra USB phy - inst[0] platform info: +2026-05-19T19:44:37.143372-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.676285] port_otg: yes +2026-05-19T19:44:37.143413-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.678918] has_hostpc: yes +2026-05-19T19:44:37.143427-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.681724] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.143435-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.686035] op_mode: TEGRA_USB_OPMODE_HOST +2026-05-19T19:44:37.143444-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.690146] qc2_voltage: 0 +2026-05-19T19:44:37.143483-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.692864] vbus_gpio: -1 +2026-05-19T19:44:37.143493-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.695493] hot_plug: enabled +2026-05-19T19:44:37.143531-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.698472] remote_wakeup: enabled +2026-05-19T19:44:37.143568-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 3.701938] tegra-ehci tegra-ehci.0: failed to open USB phy (-517) +2026-05-19T19:44:37.143617-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.708170] platform tegra-ehci.0: Driver tegra-ehci requests probe deferral +2026-05-19T19:44:37.143665-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 3.715285] tegra-ehci tegra-ehci.1: Failed to get id-det-type, assume default +2026-05-19T19:44:37.143684-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 3.722523] of_get_named_gpiod_flags: can't parse gpios property of node '/usb@7d004000[0]' +2026-05-19T19:44:37.143696-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.722576] tegra USB phy - inst[1] platform info: +2026-05-19T19:44:37.143705-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.727402] port_otg: no +2026-05-19T19:44:37.143714-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.729971] has_hostpc: yes +2026-05-19T19:44:37.143723-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.732868] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.143735-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.737149] op_mode: TEGRA_USB_OPMODE_HOST +2026-05-19T19:44:37.143754-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.741253] qc2_voltage: 0 +2026-05-19T19:44:37.143766-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.743969] vbus_gpio: -1 +2026-05-19T19:44:37.143778-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.746600] hot_plug: disabled +2026-05-19T19:44:37.143789-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.749690] remote_wakeup: enabled +2026-05-19T19:44:37.143801-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 3.753141] tegra-ehci tegra-ehci.1: failed to open USB phy (-517) +2026-05-19T19:44:37.143812-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.759344] platform tegra-ehci.1: Driver tegra-ehci requests probe deferral +2026-05-19T19:44:37.143820-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 3.766451] tegra-ehci tegra-ehci.2: Failed to get id-det-type, assume default +2026-05-19T19:44:37.143883-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 3.773714] of_get_named_gpiod_flags: can't parse gpios property of node '/usb@7d008000[0]' +2026-05-19T19:44:37.143898-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.773765] tegra USB phy - inst[2] platform info: +2026-05-19T19:44:37.143909-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.778565] port_otg: no +2026-05-19T19:44:37.143921-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.781109] has_hostpc: yes +2026-05-19T19:44:37.143935-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.783913] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.144002-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.788190] op_mode: TEGRA_USB_OPMODE_HOST +2026-05-19T19:44:37.144013-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.792301] qc2_voltage: 0 +2026-05-19T19:44:37.144022-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.795042] vbus_gpio: -1 +2026-05-19T19:44:37.144034-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.797675] hot_plug: disabled +2026-05-19T19:44:37.144104-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.800761] remote_wakeup: enabled +2026-05-19T19:44:37.144116-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 3.804207] tegra-ehci tegra-ehci.2: failed to open USB phy (-517) +2026-05-19T19:44:37.144126-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.810409] platform tegra-ehci.2: Driver tegra-ehci requests probe deferral +2026-05-19T19:44:37.144196-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.817592] ehci-pci: EHCI PCI platform driver +2026-05-19T19:44:37.144211-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.822452] usbcore: registered new interface driver usb-storage +2026-05-19T19:44:37.144264-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.828561] usbcore: registered new interface driver usbserial +2026-05-19T19:44:37.144304-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.834435] usbcore: registered new interface driver option +2026-05-19T19:44:37.144351-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.840071] usbserial: USB Serial support registered for GSM modem (1-port) +2026-05-19T19:44:37.144366-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.847071] usbcore: registered new interface driver pl2303 +2026-05-19T19:44:37.144374-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.852684] usbserial: USB Serial support registered for pl2303 +2026-05-19T19:44:37.144383-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 3.858758] of_get_named_gpiod_flags: can't parse gpios property of node '/udc@7d000000[0]' +2026-05-19T19:44:37.144430-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.858804] tegra USB phy - inst[0] platform info: +2026-05-19T19:44:37.144441-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.863632] port_otg: yes +2026-05-19T19:44:37.144452-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.866267] has_hostpc: yes +2026-05-19T19:44:37.144461-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.869071] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.144509-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.873349] op_mode: TEGRA_USB_OPMODE_DEVICE +2026-05-19T19:44:37.144521-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.877626] qc2_voltage: 0 +2026-05-19T19:44:37.144530-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.880343] vbus_pmu_irq: 0 +2026-05-19T19:44:37.144595-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.883147] vbus_gpio: -1 +2026-05-19T19:44:37.144608-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.885801] charging: disabled +2026-05-19T19:44:37.144618-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.888868] remote_wakeup: disabled +2026-05-19T19:44:37.144659-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 3.892400] tegra-udc tegra-udc.0: failed to open USB phy +2026-05-19T19:44:37.144670-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.897821] platform tegra-udc.0: Driver tegra-udc requests probe deferral +2026-05-19T19:44:37.144712-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.906260] input: as3722-input as /devices/platform/tegra12-i2c.4/i2c-4/4-0040/as3722-input.6/input/input0 +2026-05-19T19:44:37.144761-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.918809] as3722-rtc as3722-rtc.1: rtc core: registered as3722 as rtc0 +2026-05-19T19:44:37.144775-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.925560] as3722-rtc as3722-rtc.1: RTC interrupt 449 +2026-05-19T19:44:37.144783-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.932747] i2c /dev entries driver +2026-05-19T19:44:37.144791-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.939942] nvavp nvavp: allocated IOVA at 8ff00000 for AVP os +2026-05-19T19:44:37.144835-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.946630] usbcore: registered new interface driver uvcvideo +2026-05-19T19:44:37.144846-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.952388] USB Video Class driver (1.1.1) +2026-05-19T19:44:37.144899-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.957281] zram: Created 1 device(s) ... +2026-05-19T19:44:37.144951-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.962944] gpio wake35 for gpio=70 +2026-05-19T19:44:37.144967-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 3.972949] tegra-i2c tegra12-i2c.1: no acknowledge from address 0x70 +2026-05-19T19:44:37.144980-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 3.979497] tmp103 1-0070: error writing config register +2026-05-19T19:44:37.145032-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 3.984888] tmp103: probe of 1-0070 failed with error -121 +2026-05-19T19:44:37.145085-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.991047] tegra-wdt 60005000.timer: initialized (heartbeat = 120 sec, nowayout = 1) +2026-05-19T19:44:37.145098-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 3.999319] sdhci: Secure Digital Host Controller Interface driver +2026-05-19T19:44:37.145106-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.005539] sdhci: Copyright(c) Pierre Ossman +2026-05-19T19:44:37.145118-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.009914] sdhci-pltfm: SDHCI platform and OF driver helper +2026-05-19T19:44:37.145135-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 4.015773] of_get_named_gpiod_flags: can't parse gpios property of node '/sdhci@700b0600[0]' +2026-05-19T19:44:37.145147-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 4.015785] of_get_named_gpiod_flags: can't parse gpios property of node '/sdhci@700b0600[0]' +2026-05-19T19:44:37.145159-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 4.015796] of_get_named_gpiod_flags: can't parse gpios property of node '/sdhci@700b0600[0]' +2026-05-19T19:44:37.145174-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.016093] sdhci-tegra sdhci-tegra.3: Speedo value 0 +2026-05-19T19:44:37.145223-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.021165] sdhci-tegra sdhci-tegra.3: Tuning constraints: nom_mv 1150, boot_mv 1150, min_or_mv 1150 +2026-05-19T19:44:37.145235-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 4.030374] regulator_get() failed for (sdhci-tegra.3,vqmmc), -19 +2026-05-19T19:44:37.145243-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.036506] mmc0: no vqmmc regulator found +2026-05-19T19:44:37.145253-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 4.040623] regulator_get() failed for (sdhci-tegra.3,vmmc), -19 +2026-05-19T19:44:37.145307-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.046635] mmc0: no vmmc regulator found +2026-05-19T19:44:37.145321-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.050655] mmc0: Invalid maximum block size, assuming 512 bytes +2026-05-19T19:44:37.145379-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.056720] sysedp_create_consumer: unable to create sdhci-tegra.3, no consumer_data for sdhci-tegra.3 found +2026-05-19T19:44:37.145393-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.090341] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADMA +2026-05-19T19:44:37.145438-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 4.098013] of_get_named_gpiod_flags: can't parse gpios property of node '/sdhci@700b0400[0]' +2026-05-19T19:44:37.145489-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 4.098024] of_get_named_gpiod_flags: can't parse gpios property of node '/sdhci@700b0400[0]' +2026-05-19T19:44:37.145502-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 4.098034] of_get_named_gpiod_flags: can't parse gpios property of node '/sdhci@700b0400[0]' +2026-05-19T19:44:37.145510-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.098445] sdhci-tegra sdhci-tegra.2: Speedo value 0 +2026-05-19T19:44:37.145519-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.103588] sdhci-tegra sdhci-tegra.2: Tuning constraints: nom_mv 1150, boot_mv 1150, min_or_mv 1150 +2026-05-19T19:44:37.145531-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 4.112803] regulator_get() failed for (sdhci-tegra.2,vqmmc), -19 +2026-05-19T19:44:37.145563-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.119020] mmc1: no vqmmc regulator found +2026-05-19T19:44:37.145572-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.123268] mmc1: Invalid maximum block size, assuming 512 bytes +2026-05-19T19:44:37.145986-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.129390] sysedp_create_consumer: unable to create sdhci-tegra.2, no consumer_data for sdhci-tegra.2 found +2026-05-19T19:44:37.146012-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.164347] mmc1: SDHCI controller on sdhci-tegra.2 [sdhci-tegra.2] using ADMA +2026-05-19T19:44:37.146024-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 4.173254] tegra-se tegra12-se: crypto_register_sha alg failed index[5] +2026-05-19T19:44:37.146039-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.180048] ------------[ cut here ]------------ +2026-05-19T19:44:37.146052-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.184677] WARNING: at kernel/irq/manage.c:1244 __free_irq+0xb8/0x21c() +2026-05-19T19:44:37.146064-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.191367] Trying to free already-free IRQ 90 +2026-05-19T19:44:37.146077-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.195802] Modules linked in: +2026-05-19T19:44:37.146090-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.198870] CPU: 1 PID: 1 Comm: swapper/0 Tainted: G W 3.10.104 #1 +2026-05-19T19:44:37.146156-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.205928] [] (unwind_backtrace+0x0/0x134) from [] (show_stack+0x18/0x1c) +2026-05-19T19:44:37.146172-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.208835] mmc0: BKOPS_EN bit is not set +2026-05-19T19:44:37.146181-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.214484] sdhci-tegra sdhci-tegra.3: Found T2T coeffs data +2026-05-19T19:44:37.146193-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.214492] sdhci-tegra sdhci-tegra.3: 200MHz tap hole coeffs found +2026-05-19T19:44:37.146251-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.230436] [] (show_stack+0x18/0x1c) from [] (warn_slowpath_common+0x5c/0x74) +2026-05-19T19:44:37.146265-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.239389] [] (warn_slowpath_common+0x5c/0x74) from [] (warn_slowpath_fmt+0x38/0x48) +2026-05-19T19:44:37.146275-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.248952] [] (warn_slowpath_fmt+0x38/0x48) from [] (__free_irq+0xb8/0x21c) +2026-05-19T19:44:37.146327-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.257733] [] (__free_irq+0xb8/0x21c) from [] (free_irq+0x44/0x78) +2026-05-19T19:44:37.146383-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.265737] [] (free_irq+0x44/0x78) from [] (tegra_se_probe+0x200/0x9bc) +2026-05-19T19:44:37.146396-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.274173] [] (tegra_se_probe+0x200/0x9bc) from [] (driver_probe_device+0x144/0x3a8) +2026-05-19T19:44:37.146405-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.283731] [] (driver_probe_device+0x144/0x3a8) from [] (__driver_attach+0x94/0x98) +2026-05-19T19:44:37.146447-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.293206] [] (__driver_attach+0x94/0x98) from [] (bus_for_each_dev+0x74/0xa8) +2026-05-19T19:44:37.146490-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.302247] [] (bus_for_each_dev+0x74/0xa8) from [] (bus_add_driver+0x1dc/0x280) +2026-05-19T19:44:37.146505-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.311372] [] (bus_add_driver+0x1dc/0x280) from [] (driver_register+0x80/0x148) +2026-05-19T19:44:37.146514-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.320496] [] (driver_register+0x80/0x148) from [] (do_one_initcall+0xdc/0x198) +2026-05-19T19:44:37.146575-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.329623] [] (do_one_initcall+0xdc/0x198) from [] (kernel_init_freeable+0x194/0x234) +2026-05-19T19:44:37.146587-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.339270] [] (kernel_init_freeable+0x194/0x234) from [] (kernel_init+0x14/0x168) +2026-05-19T19:44:37.146595-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.348570] [] (kernel_init+0x14/0x168) from [] (ret_from_fork+0x14/0x20) +2026-05-19T19:44:37.146648-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.357081] ---[ end trace 1b75b31a2719ed1d ]--- +2026-05-19T19:44:37.146660-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 4.361740] tegra-se: probe of tegra12-se failed with error -22 +2026-05-19T19:44:37.146721-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.369926] usbcore: registered new interface driver usbhid +2026-05-19T19:44:37.146767-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.375513] usbhid: USB HID core driver +2026-05-19T19:44:37.146780-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 4.379703] tegra-hier-ictlr 60004800.hier-ictlr: probed +2026-05-19T19:44:37.146788-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.386627] usbcore: registered new interface driver snd-usb-audio +2026-05-19T19:44:37.146798-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.393503] tegra_offload_platform probe successfull. +2026-05-19T19:44:37.146846-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.401721] oprofile: using timer interrupt. +2026-05-19T19:44:37.146857-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764272] GACT probability NOT on +2026-05-19T19:44:37.146866-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764325] **********Auto tuning windows************* +2026-05-19T19:44:37.146877-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764328] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE +2026-05-19T19:44:37.146927-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764333] win[0]: 0(0) - 66(1) +2026-05-19T19:44:37.146940-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764338] win[1]: 74(0) - 147(1) +2026-05-19T19:44:37.146950-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764343] win[2]: 154(0) - 229(1) +2026-05-19T19:44:37.147009-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764346] win[3]: 235(0) - 255(1) +2026-05-19T19:44:37.147023-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764349] *************************************** +2026-05-19T19:44:37.147073-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764366] ********tuning windows after inserting holes***** +2026-05-19T19:44:37.147101-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764368] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE +2026-05-19T19:44:37.147111-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764373] win[0]:-7(0) - 42(2) +2026-05-19T19:44:37.147124-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764377] win[1]:44(2) - 66(1) +2026-05-19T19:44:37.147173-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764381] win[2]:74(0) - 123(2) +2026-05-19T19:44:37.147186-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764385] win[3]:125(2) - 147(1) +2026-05-19T19:44:37.147198-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764388] win[4]:154(0) - 204(2) +2026-05-19T19:44:37.147249-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764392] win[5]:206(2) - 229(1) +2026-05-19T19:44:37.147263-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764395] win[6]:235(0) - 255(1) +2026-05-19T19:44:37.147312-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764398] *********************************************** +2026-05-19T19:44:37.147325-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764402] **********Tuning values********* +2026-05-19T19:44:37.147374-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764405] **estimated values** +2026-05-19T19:44:37.147429-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764411] T2T_Vmax 118, T2T_Vmin 188, 1'st_hole_Vmax 4294951, UI_Vmax 42 +2026-05-19T19:44:37.147444-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764413] **Calculated values** +2026-05-19T19:44:37.147454-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764417] T2T_Vmax 61, 1'st_hole_Vmax 43, UI_Vmax 81 +2026-05-19T19:44:37.147468-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764421] T2T_Vmin 61, 1'st_hole_Vmin 43, UI_Vmin 81 +2026-05-19T19:44:37.147479-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764424] *********************************** +2026-05-19T19:44:37.147487-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764430] ***********final tuning windows********** +2026-05-19T19:44:37.147494-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764433] win[0]: 9 - 33 +2026-05-19T19:44:37.147505-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764437] win[1]: 54 - 50 +2026-05-19T19:44:37.147514-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764440] win[2]: 90 - 109 +2026-05-19T19:44:37.147566-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764443] win[3]: 140 - 131 +2026-05-19T19:44:37.147577-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764446] win[4]: 170 - 184 +2026-05-19T19:44:37.147585-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764450] win[5]: 227 - 213 +2026-05-19T19:44:37.147592-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764453] win[6]: 251 - 239 +2026-05-19T19:44:37.147599-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764455] ******************************** +2026-05-19T19:44:37.147606-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.764460] best tap win - (9-33), best tap value 21 prev_best_tap 0 +2026-05-19T19:44:37.147616-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.905172] Mirror/redirect action on +2026-05-19T19:44:37.147662-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.908854] u32 classifier +2026-05-19T19:44:37.147673-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.911572] Actions configured +2026-05-19T19:44:37.147681-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.914986] Netfilter messages via NETLINK v0.30. +2026-05-19T19:44:37.147690-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 4.919762] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +2026-05-19T19:44:37.147697-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.320511] **********Auto tuning windows************* +2026-05-19T19:44:37.147709-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.320602] NF_TPROXY: Transparent proxy support initialized, version 4.1.0 +2026-05-19T19:44:37.147722-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.320605] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd. +2026-05-19T19:44:37.147788-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.338580] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE +2026-05-19T19:44:37.147803-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.338677] xt_time: kernel timezone is -0000 +2026-05-19T19:44:37.147811-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.338988] ip_tables: (C) 2000-2006 Netfilter Core Team +2026-05-19T19:44:37.147819-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.339158] arp_tables: (C) 2002 David S. Miller +2026-05-19T19:44:37.147827-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.339200] TCP: cubic registered +2026-05-19T19:44:37.147896-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.361765] win[0]: 0(0) - 67(1) +2026-05-19T19:44:37.147912-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365014] NET: Registered protocol family 10 +2026-05-19T19:44:37.147923-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365115] win[1]: 74(0) - 147(1) +2026-05-19T19:44:37.147934-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365120] win[2]: 154(0) - 228(1) +2026-05-19T19:44:37.147992-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365124] win[3]: 235(0) - 255(1) +2026-05-19T19:44:37.148009-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365127] *************************************** +2026-05-19T19:44:37.148033-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365149] ********tuning windows after inserting holes***** +2026-05-19T19:44:37.148040-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365151] WIN_ATTR legend: 0-BOUN_ST, 1-BOUN_END, 2-HOLE +2026-05-19T19:44:37.148051-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365156] win[0]:-6(0) - 41(2) +2026-05-19T19:44:37.148138-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365160] win[1]:43(2) - 67(1) +2026-05-19T19:44:37.148152-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365164] win[2]:74(0) - 121(2) +2026-05-19T19:44:37.148162-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365168] win[3]:123(2) - 147(1) +2026-05-19T19:44:37.148170-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365171] win[4]:154(0) - 201(2) +2026-05-19T19:44:37.148201-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365175] win[5]:203(2) - 228(1) +2026-05-19T19:44:37.148212-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365179] win[6]:235(0) - 255(1) +2026-05-19T19:44:37.148221-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365181] *********************************************** +2026-05-19T19:44:37.148279-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365275] **********Tuning values********* +2026-05-19T19:44:37.148294-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365278] **estimated values** +2026-05-19T19:44:37.148303-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365283] T2T_Vmax 118, T2T_Vmin 188, 1'st_hole_Vmax 4294951, UI_Vmax 42 +2026-05-19T19:44:37.148312-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365286] **Calculated values** +2026-05-19T19:44:37.148322-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365290] T2T_Vmax 62, 1'st_hole_Vmax 42, UI_Vmax 80 +2026-05-19T19:44:37.148330-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365319] T2T_Vmin 62, 1'st_hole_Vmin 42, UI_Vmin 80 +2026-05-19T19:44:37.148390-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365321] *********************************** +2026-05-19T19:44:37.148403-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365327] ***********final tuning windows********** +2026-05-19T19:44:37.148419-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365330] win[0]: 10 - 33 +2026-05-19T19:44:37.148436-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365334] win[1]: 52 - 51 +2026-05-19T19:44:37.148451-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365337] win[2]: 90 - 107 +2026-05-19T19:44:37.148463-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365340] win[3]: 138 - 131 +2026-05-19T19:44:37.148525-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365344] win[4]: 170 - 181 +2026-05-19T19:44:37.148561-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365347] win[5]: 224 - 212 +2026-05-19T19:44:37.148570-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365350] win[6]: 251 - 239 +2026-05-19T19:44:37.148579-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365353] ******************************** +2026-05-19T19:44:37.148589-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365358] best tap win - (10-33), best tap value 22 prev_best_tap 21 +2026-05-19T19:44:37.148650-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.365451] sdhci-tegra sdhci-tegra.3: sdhci_tegra_verify_best_tap: tuning freq 200000000hz, best tap 22 +2026-05-19T19:44:37.148665-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.369170] mmc0: new HS200 MMC card at address 0001 +2026-05-19T19:44:37.148674-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.369432] mmcblk mmc0:0001: Card claimed for testing. +2026-05-19T19:44:37.148684-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.369640] mmcblk0: mmc0:0001 HAG4a2 14.6 GiB +2026-05-19T19:44:37.148744-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.369785] mmcblk0boot0: mmc0:0001 HAG4a2 partition 1 4.00 MiB +2026-05-19T19:44:37.148758-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.369914] mmcblk0boot1: mmc0:0001 HAG4a2 partition 2 4.00 MiB +2026-05-19T19:44:37.148771-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.373153] mmcblk0: p1 p2 p3 p4 p5 p6 +2026-05-19T19:44:37.148825-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.375491] mmcblk0boot1: unknown partition table +2026-05-19T19:44:37.148836-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.376418] mmcblk0boot0: unknown partition table +2026-05-19T19:44:37.148888-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 5.453102] mmc1: card claims to support voltages below the defined range. These will be ignored. +2026-05-19T19:44:37.148936-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 5.466822] mmc1: queuing unknown CIS tuple 0x91 (3 bytes) +2026-05-19T19:44:37.148955-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.468903] mmc1: new high speed SDIO card at address 0001 +2026-05-19T19:44:37.148965-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.563096] mip6: Mobile IPv6 +2026-05-19T19:44:37.148977-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.566122] ip6_tables: (C) 2000-2006 Netfilter Core Team +2026-05-19T19:44:37.149036-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.571674] sit: IPv6 over IPv4 tunneling driver +2026-05-19T19:44:37.149050-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.577179] NET: Registered protocol family 17 +2026-05-19T19:44:37.149060-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.581672] NET: Registered protocol family 15 +2026-05-19T19:44:37.149114-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.586206] NET: Registered protocol family 35 +2026-05-19T19:44:37.149127-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.590767] NET: Registered protocol family 37 +2026-05-19T19:44:37.149135-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.595231] NET: Registered protocol family 41 +2026-05-19T19:44:37.149709-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.600358] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0 +2026-05-19T19:44:37.149730-05:00 Royal-Current-Sage-Canvas kernel[-,notice]: - [ 5.632101] Registering SWP/SWPB emulation handler +2026-05-19T19:44:37.149738-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.636916] last reset is due to power on reset +2026-05-19T19:44:37.149745-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.636916] +2026-05-19T19:44:37.149793-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.643795] tegra dvfs: tegra sysfs cap interface is initialized +2026-05-19T19:44:37.149806-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.649919] tegra dvfs: tegra sysfs gpu & emc interface is initialized +2026-05-19T19:44:37.149827-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.657291] tegra_actmon.emc: Completed initialization (0) +2026-05-19T19:44:37.149836-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.663037] tegra_actmon.avp: Completed initialization (0) +2026-05-19T19:44:37.149844-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.668680] tegra_mon.cpu_emc: Completed initialization (0) +2026-05-19T19:44:37.149901-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.677091] +1V8_RUN_VPP_FUSE: disabling +2026-05-19T19:44:37.149913-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.681231] as3722-ldo10: disabling +2026-05-19T19:44:37.149923-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.684920] as3722-ldo9: disabling +2026-05-19T19:44:37.149933-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.688514] as3722-ldo7: disabling +2026-05-19T19:44:37.149996-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.692179] as3722-ldo5: disabling +2026-05-19T19:44:37.150010-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.695798] AVDD_LVDS_PLL: disabling +2026-05-19T19:44:37.150035-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.699564] +1V8_RUN_CAM: disabling +2026-05-19T19:44:37.150047-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.703326] +VDD_GPU_AP: disabling +2026-05-19T19:44:37.150110-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.706915] +1V05_RUN: disabling +2026-05-19T19:44:37.150125-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.710162] +3V3_AVDD_HDMI_AP_GATED: disabling +2026-05-19T19:44:37.150136-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.714681] AMP_EN: disabling +2026-05-19T19:44:37.150192-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.717691] USB1_VCC: disabling +2026-05-19T19:44:37.150206-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.720844] USB_CLIENT_VBUS: disabling +2026-05-19T19:44:37.150256-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.724628] +3V3_mPCIe: disabling +2026-05-19T19:44:37.150299-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.728016] +1V5_mPCIe: disabling +2026-05-19T19:44:37.150313-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.731463] HDMI_VCC: disabling +2026-05-19T19:44:37.150320-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.734623] regulator-dummy: disabling +2026-05-19T19:44:37.150328-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.738721] of_get_named_gpiod_flags: can't parse gpios property of node '/regulators/regulator@105[0]' +2026-05-19T19:44:37.150375-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.738840] +1V8_EXT: 1800 mV +2026-05-19T19:44:37.150387-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.741959] +1V8_EXT: supplied by +1V8_VDDIO +2026-05-19T19:44:37.150441-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.746465] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.150455-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.746988] +3V3_LP0: 3300 mV +2026-05-19T19:44:37.150464-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.750186] +3V3_LP0: supplied by +3V3_SYS +2026-05-19T19:44:37.150508-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.754490] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.150524-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.754606] +1V05_RUN_AVDD_HDMI_PLL_AP_GATED: 1050 mV +2026-05-19T19:44:37.150593-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.759820] +1V05_RUN_AVDD_HDMI_PLL_AP_GATED: supplied by +1V05_RUN +2026-05-19T19:44:37.150637-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.766372] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.150685-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.766388] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:37.150700-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.768423] tegra: started io power detection dynamic control +2026-05-19T19:44:37.150709-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.774260] tegra: NO_IO_POWER setting 0x0 +2026-05-19T19:44:37.150717-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.778522] of_get_named_gpiod_flags: can't parse gpios property of node '/pcie-controller[0]' +2026-05-19T19:44:37.150769-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.778532] of_get_named_gpiod_flags: can't parse gpios property of node '/pcie-controller[0]' +2026-05-19T19:44:37.150780-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 5.778542] of_get_named_gpiod_flags: can't parse gpios property of node '/pcie-controller[0]' +2026-05-19T19:44:37.150832-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 5.979767] PCIE: port 0: link down, retrying +2026-05-19T19:44:37.150880-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.184273] PCIE: port 0: link down, retrying +2026-05-19T19:44:37.150895-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.388680] PCIE: port 0: link down, retrying +2026-05-19T19:44:37.150903-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.393047] PCIE: port 0: link down, ignoring +2026-05-19T19:44:37.150916-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 6.397425] PCIE: no ports detected +2026-05-19T19:44:37.150963-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.401627] tegra USB phy - inst[0] platform info: +2026-05-19T19:44:37.150978-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.406490] port_otg: yes +2026-05-19T19:44:37.151031-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.409123] has_hostpc: yes +2026-05-19T19:44:37.151089-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.411930] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.151104-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.416208] op_mode: TEGRA_USB_OPMODE_HOST +2026-05-19T19:44:37.151116-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.420356] qc2_voltage: 0 +2026-05-19T19:44:37.151127-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.423076] vbus_gpio: -1 +2026-05-19T19:44:37.151141-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.425706] hot_plug: enabled +2026-05-19T19:44:37.151152-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 6.428686] remote_wakeup: enabled +2026-05-19T19:44:37.151164-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.434686] tegra USB phy - inst[1] platform info: +2026-05-19T19:44:37.151176-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.439510] port_otg: no +2026-05-19T19:44:37.151229-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.442091] has_hostpc: yes +2026-05-19T19:44:37.151242-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.444900] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.151250-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.449189] op_mode: TEGRA_USB_OPMODE_HOST +2026-05-19T19:44:37.151310-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.453303] qc2_voltage: 0 +2026-05-19T19:44:37.151322-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.456020] vbus_gpio: -1 +2026-05-19T19:44:37.151333-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.458652] hot_plug: disabled +2026-05-19T19:44:37.151340-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.461794] remote_wakeup: enabled +2026-05-19T19:44:37.151392-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.467764] tegra-ehci tegra-ehci.1: Tegra EHCI Host Controller +2026-05-19T19:44:37.151405-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.473734] tegra-ehci tegra-ehci.1: new USB bus registered, assigned bus number 1 +2026-05-19T19:44:37.151415-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.481478] Wake40 for irq=53 +2026-05-19T19:44:37.151457-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.484444] Wake42 for irq=53 +2026-05-19T19:44:37.151468-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.487454] tegra-ehci tegra-ehci.1: irq 53, io mem 0x7d004000 +2026-05-19T19:44:37.151478-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.499338] tegra-ehci tegra-ehci.1: USB 2.0 started, EHCI 1.10 +2026-05-19T19:44:37.151528-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.505406] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 +2026-05-19T19:44:37.151559-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.512228] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +2026-05-19T19:44:37.151607-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.519520] usb usb1: Product: Tegra EHCI Host Controller +2026-05-19T19:44:37.151661-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.524967] usb usb1: Manufacturer: Linux 3.10.104 ehci_hcd +2026-05-19T19:44:37.151678-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.530552] usb usb1: SerialNumber: tegra-ehci.1 +2026-05-19T19:44:37.151690-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.535844] hub 1-0:1.0: USB hub found +2026-05-19T19:44:37.151699-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.539632] hub 1-0:1.0: 1 port detected +2026-05-19T19:44:37.151750-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.544149] tegra USB phy - inst[2] platform info: +2026-05-19T19:44:37.151762-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.548993] port_otg: no +2026-05-19T19:44:37.151814-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.551541] has_hostpc: yes +2026-05-19T19:44:37.151860-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.554346] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.151910-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.558625] op_mode: TEGRA_USB_OPMODE_HOST +2026-05-19T19:44:37.151923-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.562730] qc2_voltage: 0 +2026-05-19T19:44:37.151935-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.565449] vbus_gpio: -1 +2026-05-19T19:44:37.151945-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.568090] hot_plug: disabled +2026-05-19T19:44:37.151958-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.571182] remote_wakeup: enabled +2026-05-19T19:44:37.151971-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 7.574857] regulator_get() failed for (tegra-ehci.2,usb_vbus), -19 +2026-05-19T19:44:37.151983-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 7.581205] usb_phy: failed to get regulator vdd_vbus_usb:-19,instance : 2 +2026-05-19T19:44:37.151995-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.590246] tegra-ehci tegra-ehci.2: Tegra EHCI Host Controller +2026-05-19T19:44:37.152053-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.596225] tegra-ehci tegra-ehci.2: new USB bus registered, assigned bus number 2 +2026-05-19T19:44:37.152068-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.603922] Wake41 for irq=129 +2026-05-19T19:44:37.152077-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.606973] Wake43 for irq=129 +2026-05-19T19:44:37.152121-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.610063] tegra-ehci tegra-ehci.2: irq 129, io mem 0x7d008000 +2026-05-19T19:44:37.152132-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.621335] tegra-ehci tegra-ehci.2: USB 2.0 started, EHCI 1.10 +2026-05-19T19:44:37.152141-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.627355] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 +2026-05-19T19:44:37.152148-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.634156] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +2026-05-19T19:44:37.152188-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.641425] usb usb2: Product: Tegra EHCI Host Controller +2026-05-19T19:44:37.152197-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.646883] usb usb2: Manufacturer: Linux 3.10.104 ehci_hcd +2026-05-19T19:44:37.152205-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.652545] usb usb2: SerialNumber: tegra-ehci.2 +2026-05-19T19:44:37.152251-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.657702] hub 2-0:1.0: USB hub found +2026-05-19T19:44:37.152261-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.661514] hub 2-0:1.0: 1 port detected +2026-05-19T19:44:37.152301-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.665966] tegra USB phy - inst[0] platform info: +2026-05-19T19:44:37.152347-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.670776] port_otg: yes +2026-05-19T19:44:37.152359-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.673409] has_hostpc: yes +2026-05-19T19:44:37.152366-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.676215] phy_interface: USB_PHY_INTF_UTMI +2026-05-19T19:44:37.152373-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.680493] op_mode: TEGRA_USB_OPMODE_DEVICE +2026-05-19T19:44:37.152411-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.684816] qc2_voltage: 0 +2026-05-19T19:44:37.152422-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.687536] vbus_pmu_irq: 0 +2026-05-19T19:44:37.152460-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.690348] vbus_gpio: -1 +2026-05-19T19:44:37.152472-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.692979] charging: disabled +2026-05-19T19:44:37.152511-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.696044] remote_wakeup: disabled +2026-05-19T19:44:37.152563-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 7.702187] regulator_get() failed for (tegra-udc.0,usb_bat_chg), -19 +2026-05-19T19:44:37.152575-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.708692] tegra-udc tegra-udc.0: usb_bat_chg regulator not registered: USB charging will not be enabled +2026-05-19T19:44:37.152615-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.719024] console [netcon0] enabled +2026-05-19T19:44:37.152654-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.722713] netconsole: network logging started +2026-05-19T19:44:37.152694-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.727789] as3722-rtc as3722-rtc.1: setting system clock to 2026-05-20 00:44:34 UTC (1779237874) +2026-05-19T19:44:37.152706-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.737220] Disabling clocks left on by bootloader: +2026-05-19T19:44:37.152713-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.742093] clk_out_3 +2026-05-19T19:44:37.152721-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.744651] audio_2x +2026-05-19T19:44:37.152760-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.747118] audio +2026-05-19T19:44:37.152770-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.749319] audio4 +2026-05-19T19:44:37.152811-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.751605] audio3 +2026-05-19T19:44:37.152823-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.753904] audio2 +2026-05-19T19:44:37.152861-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.756188] audio1 +2026-05-19T19:44:37.152871-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.758508] audio0 +2026-05-19T19:44:37.152880-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.760880] hdmi_audio +2026-05-19T19:44:37.152919-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.763515] entropy +2026-05-19T19:44:37.152930-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.765944] dsi2-fixed +2026-05-19T19:44:37.152969-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.768584] dsi1-fixed +2026-05-19T19:44:37.152979-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.771236] nor +2026-05-19T19:44:37.153016-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.773266] trace +2026-05-19T19:44:37.153057-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.775471] sdmmc4_ddr +2026-05-19T19:44:37.153068-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.778119] amx1 +2026-05-19T19:44:37.153075-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.780262] amx +2026-05-19T19:44:37.153082-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.782303] adx1 +2026-05-19T19:44:37.153120-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.784417] adx +2026-05-19T19:44:37.153131-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.786444] dam2 +2026-05-19T19:44:37.153170-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.788558] dam1 +2026-05-19T19:44:37.153217-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.790689] dam0 +2026-05-19T19:44:37.153229-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.792813] spdif_in +2026-05-19T19:44:37.153236-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.795278] apbif +2026-05-19T19:44:37.153243-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.797498] cclk_lp +2026-05-19T19:44:37.153282-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.799902] pll_x_out0 +2026-05-19T19:44:37.153292-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.802597] pll_u_12M +2026-05-19T19:44:37.153331-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 7.805162] pll_m_out1 +2026-05-19T19:44:37.153342-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.807935] tegra_dvfs: vdd_cpu connected to regulator +2026-05-19T19:44:37.153379-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.813125] tegra_dvfs: vdd_core connected to regulator +2026-05-19T19:44:37.153420-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.818896] tegra_dvfs: vdd_gpu connected to regulator +2026-05-19T19:44:37.153434-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.825154] tegra_cl_dvfs tegra_cl_dvfs: DT data retrieved successfully +2026-05-19T19:44:37.153442-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.832413] cpu_cold cooling device is registered +2026-05-19T19:44:37.153449-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.837312] cpu_hot cooling device is registered +2026-05-19T19:44:37.153487-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.837543] Tegra CPU DFLL is initialized with use_dfll = 1 +2026-05-19T19:44:37.153497-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 7.837624] CPU rate: 696 MHz +2026-05-19T19:44:37.153558-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.017265] ALSA device list: +2026-05-19T19:44:37.153601-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.020245] No soundcards found. +2026-05-19T19:44:37.153643-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 8.029792] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities +2026-05-19T19:44:37.153654-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 8.038310] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities +2026-05-19T19:44:37.153662-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.050185] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null) +2026-05-19T19:44:37.153700-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.058358] VFS: Mounted root (ext4 filesystem) on device 179:2. +2026-05-19T19:44:37.153710-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.066656] devtmpfs: mounted +2026-05-19T19:44:37.153753-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.070510] Freeing unused kernel memory: 1384K (c0acb000 - c0c25000) +2026-05-19T19:44:37.153762-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.136370] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null) +2026-05-19T19:44:37.153771-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 8.146907] EXT4-fs (mmcblk0p5): warning: maximal mount count reached, running e2fsck is recommended +2026-05-19T19:44:37.153813-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.157252] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null) +2026-05-19T19:44:37.153856-05:00 Royal-Current-Sage-Canvas kernel[-,warning]: - [ 8.177360] EXT4-fs (mmcblk0p6): warning: maximal mount count reached, running e2fsck is recommended +2026-05-19T19:44:37.153868-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 8.187969] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null) +2026-05-19T19:44:37.153875-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 10.276518] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null) +2026-05-19T19:44:37.263252-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 10.486328] Tegra cpuquiet clusterswitch enabled +2026-05-19T19:44:42.175067-05:00 Royal-Current-Sage-Canvas crond[157,info]: - crond (busybox 1.24.1) started, log level 8 +2026-05-19T19:44:42.477975-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.698809] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.478060-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.698976] tegra-tobor_adc 1.sound: Failed to parse DAI link to codecs +2026-05-19T19:44:42.485435-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.706092] platform 1.sound: Driver tegra-tobor_adc requests probe deferral +2026-05-19T19:44:42.493200-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.713978] tegra-tlv320dac3100 0.sound: ASoC: CODEC (null) not registered +2026-05-19T19:44:42.502321-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.722490] tegra-tlv320dac3100 0.sound: snd_soc_register_card failed (-517) +2026-05-19T19:44:42.511571-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.731293] platform 0.sound: Driver tegra-tlv320dac3100 requests probe deferral +2026-05-19T19:44:42.531143-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.747054] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.531226-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.747213] tegra-tobor_adc 1.sound: Failed to parse DAI link to codecs +2026-05-19T19:44:42.531243-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.748131] tegra-vi2 vi.0: Some sensors are missing +2026-05-19T19:44:42.546421-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.759855] platform 1.sound: Driver tegra-tobor_adc requests probe deferral +2026-05-19T19:44:42.546514-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.761493] tegra-vi2 vi.0: Some sensors are missing +2026-05-19T19:44:42.556491-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.776485] tegra-tlv320dac3100 0.sound: ASoC: CODEC (null) not registered +2026-05-19T19:44:42.556574-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.783487] tegra-tlv320dac3100 0.sound: snd_soc_register_card failed (-517) +2026-05-19T19:44:42.572520-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.788329] Loading modules backported from version +2026-05-19T19:44:42.572604-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.788332] Backport generated by backports.git +2026-05-19T19:44:42.572638-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.800272] platform 0.sound: Driver tegra-tlv320dac3100 requests probe deferral +2026-05-19T19:44:42.587478-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.808349] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.587573-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.808520] tegra-tobor_adc 1.sound: Failed to parse DAI link to codecs +2026-05-19T19:44:42.596475-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.815405] platform 1.sound: Driver tegra-tobor_adc requests probe deferral +2026-05-19T19:44:42.604921-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.825348] tegra-tlv320dac3100 0.sound: ASoC: CODEC (null) not registered +2026-05-19T19:44:42.612741-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.833348] tegra-tlv320dac3100 0.sound: snd_soc_register_card failed (-517) +2026-05-19T19:44:42.620305-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.840607] platform 0.sound: Driver tegra-tlv320dac3100 requests probe deferral +2026-05-19T19:44:42.665670-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.892594] tlv320dac3100-codec 0-0018: GPIO lookup for consumer reset +2026-05-19T19:44:42.665753-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.892620] tlv320dac3100-codec 0-0018: using device tree for GPIO lookup +2026-05-19T19:44:42.665767-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.892643] of_get_named_gpiod_flags: can't parse gpios property of node '/i2c@7000c000/tlv320dac3100@18[0]' +2026-05-19T19:44:42.665778-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.892714] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.669722-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.897169] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.669783-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 15.897404] tegra-tobor_adc 1.sound: Failed to parse DAI link to codecs +2026-05-19T19:44:42.687788-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.897901] cs53l30 0-0048: GPIO lookup for consumer reset +2026-05-19T19:44:42.687877-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.897910] cs53l30 0-0048: using device tree for GPIO lookup +2026-05-19T19:44:42.687895-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.897921] of_get_named_gpiod_flags: can't parse gpios property of node '/i2c@7000c000/adc@48[0]' +2026-05-19T19:44:42.687966-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.897951] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.687989-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.898802] cs53l30 0-0048: Found device 53a300, revision 00 +2026-05-19T19:44:42.688004-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.901148] cs53l30 0-0049: GPIO lookup for consumer reset +2026-05-19T19:44:42.688021-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.901157] cs53l30 0-0049: using device tree for GPIO lookup +2026-05-19T19:44:42.688039-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.901167] of_get_named_gpiod_flags: can't parse gpios property of node '/i2c@7000c000/adc@49[0]' +2026-05-19T19:44:42.688058-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.901199] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.688100-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.903882] cs53l30 0-0049: Found device 53a300, revision 00 +2026-05-19T19:44:42.688134-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.915525] platform 1.sound: Driver tegra-tobor_adc requests probe deferral +2026-05-19T19:44:42.704517-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.924569] tegra-tlv320dac3100 0.sound: dac3100-hifi <-> tegra30-i2s.3 mapping ok +2026-05-19T19:44:42.721628-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 15.949000] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:42.736076-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 15.956288] tegra-tobor_adc 1.sound: multicodec <-> tegra30-i2s.1 mapping ok +2026-05-19T19:44:42.870891-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.093338] cfg80211: World regulatory domain updated: +2026-05-19T19:44:42.885118-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.098632] cfg80211: DFS Master region: unset +2026-05-19T19:44:42.885167-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.103041] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) +2026-05-19T19:44:42.885183-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.112830] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) +2026-05-19T19:44:42.901159-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.120864] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) +2026-05-19T19:44:42.901199-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.128894] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) +2026-05-19T19:44:42.915618-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.134077] SDIO Vendor ID:0097 and SDIO Device ID: 4076 +2026-05-19T19:44:42.915664-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.143328] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A) +2026-05-19T19:44:42.925119-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.152839] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s) +2026-05-19T19:44:42.942718-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.162345] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) +2026-05-19T19:44:42.942751-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.170447] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) +2026-05-19T19:44:42.951393-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.179103] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) +2026-05-19T19:44:43.114502-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.336347] wlcore: wl18xx HW: 183x or 180x, PG 2.2 (ROM 0x11) +2026-05-19T19:44:43.122232-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 16.344711] Warning: enabling a non-LP0 wake source 229 +2026-05-19T19:44:43.136957-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 16.361931] wlcore: loaded +2026-05-19T19:44:45.640301-05:00 Royal-Current-Sage-Canvas sshd[267,info]: - Server listening on :: port 22. +2026-05-19T19:44:45.640458-05:00 Royal-Current-Sage-Canvas sshd[267,info]: - Server listening on 0.0.0.0 port 22. +2026-05-19T19:44:45.642735-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 18.870097] _gpio_request: gpio-144 (sysfs) status -16 +2026-05-19T19:44:45.642750-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 18.870105] export_store: status -16 +2026-05-19T19:44:45.762159-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 18.984467] SDIO Vendor ID:0097 and SDIO Device ID: 4076 +2026-05-19T19:44:46.079678-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.301867] wlcore: PHY firmware version: Rev 8.2.0.0.236 +2026-05-19T19:44:46.209533-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.432163] wlcore: firmware booted (Rev 8.9.0.0.69) +2026-05-19T19:44:46.237287-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.459111] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready +2026-05-19T19:44:46.448469-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.670213] cfg80211: Regulatory domain changed to country: US +2026-05-19T19:44:46.463419-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.677015] cfg80211: DFS Master region: FCC +2026-05-19T19:44:46.463481-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.681269] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) +2026-05-19T19:44:46.471994-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.691502] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A) +2026-05-19T19:44:46.481797-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.699968] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (N/A) +2026-05-19T19:44:46.491863-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.709818] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (0 s) +2026-05-19T19:44:46.500016-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.719677] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2300 mBm), (0 s) +2026-05-19T19:44:46.508116-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.727804] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A) +2026-05-19T19:44:46.516760-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.736164] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A) +2026-05-19T19:44:46.540505-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Found user 'avahi' (UID 1000) and group 'avahi' (GID 1000). +2026-05-19T19:44:46.540784-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Successfully dropped root privileges. +2026-05-19T19:44:46.541100-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - avahi-daemon 0.6.32 starting up. +2026-05-19T19:44:46.541591-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,warning]: - WARNING: No NSS support for mDNS detected, consider installing nss-mdns! +2026-05-19T19:44:46.544313-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Successfully called chroot(). +2026-05-19T19:44:46.544401-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Successfully dropped remaining capabilities. +2026-05-19T19:44:46.545196-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Loading service file /services/sftp-ssh.service. +2026-05-19T19:44:46.545631-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Loading service file /services/ssh.service. +2026-05-19T19:44:46.546567-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.8.170. +2026-05-19T19:44:46.546767-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - New relevant interface wlan0.IPv4 for mDNS. +2026-05-19T19:44:46.547025-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Network interface enumeration completed. +2026-05-19T19:44:46.547105-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Registering new address record for 192.168.8.170 on wlan0.IPv4. +2026-05-19T19:44:46.555616-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 19.782943] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:46.575127-05:00 Royal-Current-Sage-Canvas kernel[-,err]: - [ 19.793347] synaptics_dsx_i2c 0-0020: synaptics_rmi4_f1a_button_map: Button map is missing in board file +2026-05-19T19:44:46.591613-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.810839] input: synaptics_dsx as /devices/platform/tegra12-i2c.0/i2c-0/0-0020/input/input1 +2026-05-19T19:44:46.604531-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.827554] ov4689_v4l2 2-0010: ov4689_v4l2_probe +2026-05-19T19:44:46.610179-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.832397] ov4689_v4l2 2-0010: Device tree platform data. +2026-05-19T19:44:46.615332-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.837977] ov4689_v4l2 2-0010: ov4689_v4l2_parse_dt +2026-05-19T19:44:46.619957-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 19.843141] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:46.619968-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 19.843149] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:46.619972-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.843168] [ov4689_v4l2] ov4689_v4l2_power_get +2026-05-19T19:44:46.625624-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.847968] ov4689_v4l2 2-0010: Resetting camera with 219 +2026-05-19T19:44:46.642134-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.864485] ov4689_v4l2 2-0010: ov4689_v4l2_get_sensor_id +2026-05-19T19:44:46.649506-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.869925] [ov4689_v4l2] ov4689_v4l2_mclk_enable: enable mclk with 24000000 Hz +2026-05-19T19:44:46.654015-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.877322] [ov4689_v4l2] ov4689_v4l2_power_on +2026-05-19T19:44:46.658876-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.881807] [ov4689_v4l2] releasing power down 221 +2026-05-19T19:44:46.675626-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.894404] [ov4689_v4l2] ov4689_v4l2_get_sensor_id: fuse_id_size: 2 fuse_id: +2026-05-19T19:44:46.677777-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.901441] 0x46 0x88 +2026-05-19T19:44:46.677785-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.903854] +2026-05-19T19:44:46.682374-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.905569] [ov4689_v4l2] ov4689_v4l2_power_off +2026-05-19T19:44:46.688974-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.910374] [ov4689_v4l2] ov4689_v4l2_write_table wrote 1 registers. +2026-05-19T19:44:46.693875-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.916836] [ov4689_v4l2] asserting power down 221 +2026-05-19T19:44:46.698699-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.921662] [ov4689_v4l2] ov4689_v4l2_mclk_disable +2026-05-19T19:44:46.704307-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.926486] ov4689_v4l2 2-0010: Controls initialization.... +2026-05-19T19:44:46.709100-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.932145] ov4689_v4l2 2-0036: ov4689_v4l2_probe +2026-05-19T19:44:46.714649-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.936919] ov4689_v4l2 2-0036: Device tree platform data. +2026-05-19T19:44:46.719671-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.942436] ov4689_v4l2 2-0036: ov4689_v4l2_parse_dt +2026-05-19T19:44:46.724265-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 19.947465] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:46.724274-05:00 Royal-Current-Sage-Canvas kernel[-,debug]: - [ 19.947472] of_get_named_gpiod_flags exited with status 0 +2026-05-19T19:44:46.724277-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.947484] [ov4689_v4l2] ov4689_v4l2_power_get +2026-05-19T19:44:46.729782-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.952135] ov4689_v4l2 2-0036: Resetting camera with 226 +2026-05-19T19:44:46.744715-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.967062] ov4689_v4l2 2-0036: ov4689_v4l2_get_sensor_id +2026-05-19T19:44:46.752302-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.972509] [ov4689_v4l2] ov4689_v4l2_mclk_enable: enable mclk with 24000000 Hz +2026-05-19T19:44:46.757068-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.980241] [ov4689_v4l2] ov4689_v4l2_power_on +2026-05-19T19:44:46.762160-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.984996] [ov4689_v4l2] releasing power down 222 +2026-05-19T19:44:46.779474-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 19.998092] [ov4689_v4l2] ov4689_v4l2_get_sensor_id: fuse_id_size: 2 fuse_id: +2026-05-19T19:44:46.781915-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 20.005258] 0x46 0x88 +2026-05-19T19:44:46.781928-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 20.007856] +2026-05-19T19:44:46.786814-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 20.009876] [ov4689_v4l2] ov4689_v4l2_power_off +2026-05-19T19:44:46.793696-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 20.014966] [ov4689_v4l2] ov4689_v4l2_write_table wrote 1 registers. +2026-05-19T19:44:46.798714-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 20.021615] [ov4689_v4l2] asserting power down 222 +2026-05-19T19:44:46.803690-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 20.026545] [ov4689_v4l2] ov4689_v4l2_mclk_disable +2026-05-19T19:44:46.809299-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 20.031480] ov4689_v4l2 2-0036: Controls initialization.... +2026-05-19T19:44:47.289202-05:00 Royal-Current-Sage-Canvas ntpd[387,notice]: - ntpd 4.2.8p4@1.3265-o Thu Aug 23 17:53:10 UTC 2018 (1): Starting +2026-05-19T19:44:47.289225-05:00 Royal-Current-Sage-Canvas ntpd[387,info]: - Command line: /usr/sbin/ntpd -g +2026-05-19T19:44:47.297039-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - proto: precision = 0.500 usec (-21) +2026-05-19T19:44:47.297760-05:00 Royal-Current-Sage-Canvas ntpd[389,err]: - leapsecond file ('/etc/ntp.leapseconds'): stat failed: No such file or directory +2026-05-19T19:44:47.297958-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - Listen and drop on 0 v6wildcard [::]:123 +2026-05-19T19:44:47.298046-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - Listen and drop on 1 v4wildcard 0.0.0.0:123 +2026-05-19T19:44:47.298464-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - Listen normally on 2 lo 127.0.0.1:123 +2026-05-19T19:44:47.298588-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - Listen normally on 3 lo [::1]:123 +2026-05-19T19:44:47.298696-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - Listening on routing socket on fd #20 for interface updates +2026-05-19T19:44:47.440822-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Server startup complete. Host name is Royal-Current-Sage-Canvas.local. Local service cookie is 3557169468. +2026-05-19T19:44:48.333607-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Service "Royal-Current-Sage-Canvas" (/services/ssh.service) successfully established. +2026-05-19T19:44:48.333697-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Service "Royal-Current-Sage-Canvas" (/services/sftp-ssh.service) successfully established. +2026-05-19T19:44:49.346573-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 21.261372] tegradc tegradc.0: nominal-pclk:62000000 parent:186000000 div:3.0 pclk:62000000 56420000~67580000 +2026-05-19T19:44:49.346594-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 21.374816] tegradc tegradc.0: DSI pad calibration done +2026-05-19T19:44:49.699841-05:00 Royal-Current-Sage-Canvas jibo-service-registry[455,info]: - P.ServiceApp: Chronometer timestamp: 22 s, 904893 us +2026-05-19T19:44:49.712774-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 22.935213] wlan0: authenticate with 94:83:c4:70:2c:8c +2026-05-19T19:44:49.722866-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 22.944969] wlan0: send auth to 94:83:c4:70:2c:8c (try 1/3) +2026-05-19T19:44:49.760854-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 22.985348] wlan0: authenticated +2026-05-19T19:44:49.767741-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 22.988940] wlan0: associating with AP with corrupt probe response +2026-05-19T19:44:49.773824-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 22.995586] wlan0: associate with 94:83:c4:70:2c:8c (try 1/3) +2026-05-19T19:44:49.786622-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.006458] wlan0: RX AssocResp from 94:83:c4:70:2c:8c (capab=0x411 status=0 aid=3) +2026-05-19T19:44:49.804736-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.022915] wlan0: associated +2026-05-19T19:44:49.804757-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.025902] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready +2026-05-19T19:44:49.819209-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.040804] cfg80211: Regulatory domain changed to country: US +2026-05-19T19:44:49.833649-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.047038] cfg80211: DFS Master region: FCC +2026-05-19T19:44:49.833670-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.051361] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) +2026-05-19T19:44:49.842021-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.061485] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A) +2026-05-19T19:44:49.851594-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.069837] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (N/A) +2026-05-19T19:44:49.861192-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.079453] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (0 s) +2026-05-19T19:44:49.869716-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.089052] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2300 mBm), (0 s) +2026-05-19T19:44:49.878044-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.097539] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A) +2026-05-19T19:44:49.886486-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.105852] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A) +2026-05-19T19:44:49.923862-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 23.147485] wlcore: Association completed. +2026-05-19T19:44:50.197291-05:00 Royal-Current-Sage-Canvas post-identity[490,info]: - P.PostIdentity: serial_number: BOJW-1000-0017-1114-0008 +2026-05-19T19:44:50.197476-05:00 Royal-Current-Sage-Canvas post-identity[490,info]: - P.PostIdentity: name: Royal-Current-Sage-Canvas +2026-05-19T19:44:50.197616-05:00 Royal-Current-Sage-Canvas post-identity[490,info]: - P.PostIdentity: cpuid: 317474D5D118180A +2026-05-19T19:44:50.197709-05:00 Royal-Current-Sage-Canvas post-identity[490,info]: - P.PostIdentity: wifi_mac: 5c:f8:21:ea:55:ae +2026-05-19T19:44:50.204664-05:00 Royal-Current-Sage-Canvas init[-,info]: - starting pid 510, tty '/dev/ttyS0': '/sbin/getty -L -l /usr/bin/jibo-login-wrapper ttyS0 115200 vt100 ' +2026-05-19T19:44:51.230713-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::5ef8:21ff:feea:55ae. +2026-05-19T19:44:51.230750-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - New relevant interface wlan0.IPv6 for mDNS. +2026-05-19T19:44:51.230815-05:00 Royal-Current-Sage-Canvas avahi-daemon[332,info]: - Registering new address record for fe80::5ef8:21ff:feea:55ae on wlan0.*. +2026-05-19T19:44:53.296241-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - Listen normally on 4 wlan0 192.168.8.170:123 +2026-05-19T19:44:53.296313-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - Listen normally on 5 wlan0 [fe80::5ef8:21ff:feea:55ae%6]:123 +2026-05-19T19:44:53.296404-05:00 Royal-Current-Sage-Canvas ntpd[389,debug]: - new interface(s) found: waking up resolver +2026-05-19T19:44:53.661294-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.SystemManager.SkillManager: SkillManager::refresh Error reading package file for @be: File not found +2026-05-19T19:44:53.674637-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.ServiceApp: Chronometer timestamp: 26 s, 879926 us +2026-05-19T19:44:54.892640-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service body launched with PID 623 +2026-05-19T19:44:54.969350-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,info]: - P.ServiceApp: Chronometer timestamp: 28 s, 174537 us +2026-05-19T19:44:55.184320-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service audio launched with PID 639 +2026-05-19T19:44:55.286179-05:00 Royal-Current-Sage-Canvas jibo-audio-service[639,notice]: - P.AlsaRouter: playback buffer underrun: 256 +2026-05-19T19:44:55.286367-05:00 Royal-Current-Sage-Canvas jibo-audio-service[639,notice]: - P.AlsaRouter: playback buffer underrun: 48 +2026-05-19T19:44:55.289427-05:00 Royal-Current-Sage-Canvas jibo-audio-service[639,info]: - P.ServiceApp: Chronometer timestamp: 28 s, 494763 us +2026-05-19T19:44:55.541514-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service identity launched with PID 660 +2026-05-19T19:44:55.942331-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:44:56.894468-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.ServiceManager.Service: identity: modprobe: FATAL: Module nvidia not found. +2026-05-19T19:44:56.630246-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - receive: Unexpected origin timestamp from 186.192.158.147 +2026-05-19T19:44:56.703932-05:00 Royal-Current-Sage-Canvas ntpd[389,info]: - receive: Unexpected origin timestamp from 103.186.118.220 +2026-05-19T19:44:58.161869-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:44:59.161204-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:44:59.351937-05:00 Royal-Current-Sage-Canvas jibo-identity-service[660,info]: - P.ServiceApp: Chronometer timestamp: 33 s, 340673 us +2026-05-19T19:44:59.591934-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service jetstream launched with PID 679 +2026-05-20T00:44:59.672Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.ServiceApp: Initializing subsystem: WebCore +2026-05-20T00:44:59.676Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.ServiceApp: Initializing subsystem: ManagementCore +2026-05-20T00:44:59.677Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.ServiceApp: Initializing subsystem: Debugging +2026-05-20T00:44:59.677Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.ServiceApp: Initializing subsystem: JetService +2026-05-20T00:44:59.678Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.Service: Starting new Jetstream service session. +2026-05-20T00:44:59.679Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.ServiceApp: Initializing subsystem: ListenLoop +2026-05-20T00:44:59.680Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.ServiceApp: Initializing subsystem: RecLoop +2026-05-20T00:44:59.680Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.PronunLearning: at new PronunLearning(). +2026-05-20T00:44:59.688Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.RecogHJ: FluentSoft SDK Library version: 1.2.0 +2026-05-20T00:44:59.689Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.RecogHJ: Expiration date: never +2026-05-20T00:44:59.689Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.RecogHJ: Loading net file: /usr/local/share/asr/hey_jibo/net.raw +2026-05-20T00:44:59.691Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.RecogHJ: Loading search file: /usr/local/share/asr/hey_jibo/search.raw +2026-05-20T00:44:59.692Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.RecogHJ: RecogHJ initialized. +2026-05-20T00:44:59.697Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogSpeakerID: RecogSpeakerTD::create_authenticator +2026-05-20T00:44:59.709Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogSpeakerID: Number of enrolled speakers: 1 +2026-05-20T00:44:59.714Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogSpeakerEnroll: Enroller created in 3.958 ms. +2026-05-20T00:44:59.718Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.ServiceApp: Initializing subsystem: Proactivity +2026-05-20T00:44:59.721Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: Listenloop up and running +2026-05-20T00:44:59.721Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: Entering HJ-W state +2026-05-20T00:44:59.721Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.ServiceApp: Chronometer timestamp: 33 s, 710504 us +2026-05-20T00:44:59.733Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.AudioChannel: Overriding ALSA period size with a config setting: 85 +2026-05-20T00:44:59.733Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.AudioChannel: Overriding ALSA buffer size with a config setting: 2048 +2026-05-20T00:44:59.737Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.AudioChannel: STARTRECORD SUCCEEDED +2026-05-20T00:44:59.737Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.AudioChannel: Starting audio channel thread. +2026-05-20T00:44:59.738Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogHJ: Starting RecogHJ thread. +2026-05-20T00:44:59.738Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.HJLogger: Starting HJLogger thread. +2026-05-20T00:44:59.738Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogSpeakerID: Starting RecogSpeakerID thread. +2026-05-20T00:44:59.739Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogVAD: Starting RecogVAD thread. +2026-05-19T19:44:59.964065-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service tts launched with PID 708 +2026-05-19T19:45:00.161335-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:00.201763-05:00 Royal-Current-Sage-Canvas jibo-tts-service[708,info]: - C.TTSService: Called ConnectingEngine initializeEngine +2026-05-19T19:45:01.165579-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:02.162322-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:03.163630-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:04.163683-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:05.163754-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:06.164053-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:06.847625-05:00 Royal-Current-Sage-Canvas jibo-tts-service[708,info]: - C.ServiceApp: Chronometer timestamp: 40 s, 836536 us +2026-05-19T19:45:07.084045-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service lps launched with PID 723 +2026-05-19T19:45:07.164105-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:08.163553-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:09.164105-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:10.163766-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:11.163831-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:12.164388-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:13.167681-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:14.163619-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.BodyBoard: Failed to read PMIC GPU sensor: read_sysfs_float: /sys/class/hwmon/hwmon6/temp5_input: stof +2026-05-19T19:45:15.082259-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.ServiceManager.Service: lps: modprobe: FATAL: Module nvidia not found. +2026-05-19T19:45:15.112179-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.SystemManager.SkillManager: SkillManager::refresh Error reading package file for @be: File not found +2026-05-19T19:45:15.139170-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.145480] [ov4689_v4l2] ov4689_v4l2_s_power on: 1 +2026-05-19T19:45:15.151538-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.155411] [ov4689_v4l2] ov4689_v4l2_mclk_enable: enable mclk with 24000000 Hz +2026-05-19T19:45:15.156933-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.163269] [ov4689_v4l2] ov4689_v4l2_power_on +2026-05-19T19:45:15.165025-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.170942] [ov4689_v4l2] releasing power down 222 +2026-05-19T19:45:15.180695-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.186408] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.187039-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.192820] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.189868-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.198703] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.198961-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.204634] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.207071-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.211749] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.207095-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.217609] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.218553-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.224322] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.218586-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.229991] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.227103-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.235653] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.235565-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.241311] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.235584-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.246974] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.241220-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.252634] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.246978-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.258305] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.258189-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.263966] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.258214-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.269626] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.269507-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.275286] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.269531-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.280942] ov4689_v4l2 2-0036: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.276789-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.286606] tegra-vi2 vi.0: ov4689_v4l2_g_fmt +2026-05-19T19:45:15.286666-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.290969] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.286690-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.298103] tegra-vi2 vi.0: ov4689_v4l2_s_fmt(12295) +2026-05-19T19:45:15.298765-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.303070] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.306153-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.310319] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.306176-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.317460] tegra-vi2 vi.0: ov4689_v4l2_s_fmt(12295) +2026-05-19T19:45:15.311067-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.322443] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.478462-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.484911] ov4689_v4l2 2-0036: ov4689_v4l2_s_stream +2026-05-19T19:45:15.483176-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.490246] ov4689_v4l2 2-0036: set mode to 1 +2026-05-19T19:45:15.549137-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.554027] [ov4689_v4l2] ov4689_v4l2_write_table wrote 254 registers. +2026-05-19T19:45:15.562228-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.567216] [ov4689_v4l2] ov4689_v4l2_write_table wrote 27 registers. +2026-05-19T19:45:15.569006-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.574086] [ov4689_v4l2] ov4689_v4l2_write_table wrote 1 registers. +2026-05-19T19:45:15.573625-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.580784] ov4689_v4l2 2-0036: Stream on... +2026-05-19T19:45:15.581689-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.588090] [ov4689_v4l2] ov4689_v4l2_s_power on: 1 +2026-05-19T19:45:15.589103-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.593229] [ov4689_v4l2] ov4689_v4l2_mclk_enable: enable mclk with 24000000 Hz +2026-05-19T19:45:15.592100-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.602019] [ov4689_v4l2] ov4689_v4l2_power_on +2026-05-19T19:45:15.599956-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.606588] [ov4689_v4l2] releasing power down 221 +2026-05-19T19:45:15.613496-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.619276] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.620073-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.625511] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.626768-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.632380] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.632800-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.638389] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.638688-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.644363] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.644433-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.650208] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.651100-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.656875] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.657039-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.662807] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.663059-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.668821] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.663181-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.674575] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.674766-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.680536] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.681430-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.686989] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.687397-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.693076] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.687418-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.698815] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.699768-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.705330] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.706647-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.712387] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 0 +2026-05-19T19:45:15.713005-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.718199] ov4689_v4l2 2-0010: ov4689_v4l2_enum_fmt index 1 +2026-05-19T19:45:15.717514-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.724529] tegra-vi2 vi.0: ov4689_v4l2_g_fmt +2026-05-19T19:45:15.724972-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.729030] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.730044-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.736497] tegra-vi2 vi.0: ov4689_v4l2_s_fmt(12295) +2026-05-19T19:45:15.737570-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.741553] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.745008-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.749321] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.752959-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.758537] tegra-vi2 vi.0: ov4689_v4l2_s_fmt(12295) +2026-05-19T19:45:15.760364-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.764577] tegra-vi2 vi.0: ov4689_v4l2_try_fmt 1280 x 720 mode 1 code 12295 +2026-05-19T19:45:15.794534-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.800995] ov4689_v4l2 2-0010: ov4689_v4l2_s_stream +2026-05-19T19:45:15.801321-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.808381] ov4689_v4l2 2-0010: set mode to 1 +2026-05-19T19:45:15.887269-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.891495] [ov4689_v4l2] ov4689_v4l2_write_table wrote 254 registers. +2026-05-19T19:45:15.901905-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.906793] [ov4689_v4l2] ov4689_v4l2_write_table wrote 27 registers. +2026-05-19T19:45:15.903401-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.913852] [ov4689_v4l2] ov4689_v4l2_write_table wrote 1 registers. +2026-05-19T19:45:15.914025-05:00 Royal-Current-Sage-Canvas kernel[-,info]: - [ 49.920542] ov4689_v4l2 2-0010: Stream on... +2026-05-19T19:45:15.933000-05:00 Royal-Current-Sage-Canvas jibo-lps-service[723,info]: - P.ServiceApp: Chronometer timestamp: 49 s, 921210 us +2026-05-19T19:45:16.230865-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service expression launched with PID 785 +2026-05-20T00:45:19.490Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp: Instantiated +2026-05-20T00:45:19.658Z Royal-Current-Sage-Canvas exp[785,err]: [1@1 frames="[{\"method\":\"getRecords\",\"filename\":\"/usr/local/bin/jibo-ssm/node_modules/jibo-client-framework/lib/jibo-client-framework.js\",\"line\":242,\"column\":30},{\"method\":\"get\",\"filename\":\"/usr/local/bin/jibo-ssm/node_modules/jibo-client-framework/lib/jibo-client-framework.js\",\"line\":221,\"column\":13},{\"method\":\"IncomingMessage.response.on\",\"filename\":\"/usr/local/bin/jibo-ssm/node_modules/jibo-client-framework/lib/jibo-client-framework.js\",\"line\":109,\"column\":17},{\"method\":\"emitNone\",\"filename\":\"events.js\",\"line\":91,\"column\":20},{\"method\":\"IncomingMessage.emit\",\"filename\":\"events.js\",\"line\":185,\"column\":7},{\"method\":\"endReadableNT\",\"filename\":\"_stream_readable.js\",\"line\":974,\"column\":12},{\"method\":\"_combinedTickCallback\",\"filename\":\"internal/process/next_tick.js\",\"line\":74,\"column\":11},{\"method\":\"process._tickCallback\",\"filename\":\"internal/process/next_tick.js\",\"line\":98,\"column\":9}\]" message="no record for service \"server\" found in registry"][versions@1 release="1.9.2"] T.SF.Client.NotificationsDispatcher: Error getting "server" service record no record for service "server" found in registry +2026-05-20T00:45:19.669Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SF.Client.NotificationsDispatcher: Initialized +2026-05-20T00:45:19.670Z Royal-Current-Sage-Canvas exp[785,err]: [1@1 frames="[{\"method\":\"getRecords\",\"filename\":\"/usr/local/bin/jibo-ssm/node_modules/jibo-client-framework/lib/jibo-client-framework.js\",\"line\":242,\"column\":30},{\"method\":\"get\",\"filename\":\"/usr/local/bin/jibo-ssm/node_modules/jibo-client-framework/lib/jibo-client-framework.js\",\"line\":221,\"column\":13},{\"method\":\"IncomingMessage.response.on\",\"filename\":\"/usr/local/bin/jibo-ssm/node_modules/jibo-client-framework/lib/jibo-client-framework.js\",\"line\":109,\"column\":17},{\"method\":\"emitNone\",\"filename\":\"events.js\",\"line\":91,\"column\":20},{\"method\":\"IncomingMessage.emit\",\"filename\":\"events.js\",\"line\":185,\"column\":7},{\"method\":\"endReadableNT\",\"filename\":\"_stream_readable.js\",\"line\":974,\"column\":12},{\"method\":\"_combinedTickCallback\",\"filename\":\"internal/process/next_tick.js\",\"line\":74,\"column\":11},{\"method\":\"process._tickCallback\",\"filename\":\"internal/process/next_tick.js\",\"line\":98,\"column\":9}\]" message="no record for service \"server\" found in registry"][versions@1 release="1.9.2"] T.SSM.Svc.Exp: Error initializing NotificationsDispatcher no record for service "server" found in registry +2026-05-20T00:45:19.689Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: expression service listening on port 10015 +2026-05-19T19:45:19.879568-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-STARTED +2026-05-20T00:45:19.958Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE staying in ESTABLISHING due to: disconnected, unindexed(), +2026-05-20T00:45:20.080Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp: Finished initialization reporting pid 785 +2026-05-19T19:45:20.373239-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service server launched with PID 812 +2026-05-19T19:45:23.128558-05:00 Royal-Current-Sage-Canvas jibo-server-service[812,info]: - P.NotificationSubsystem: NotificationSubsystem::connect Connecting to api-socket.jibo.com:443/token-Royal-Current-Sage-Canvas-1779237922710 +2026-05-19T19:45:23.477786-05:00 Royal-Current-Sage-Canvas jibo-server-service[812,info]: - P.NotificationSubsystem: NotificationSubsystem::connect established connection to server +2026-05-19T19:45:23.478396-05:00 Royal-Current-Sage-Canvas jibo-server-service[812,info]: - P.ServiceApp: Chronometer timestamp: 57 s, 467370 us +2026-05-19T19:45:23.777890-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service monitor launched with PID 831 +2026-05-19T19:45:23.868770-05:00 Royal-Current-Sage-Canvas jibo-system-monitoring-service[831,info]: - P.ServiceApp: Chronometer timestamp: 57 s, 857197 us +2026-05-19T19:45:23.881162-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 27 36:23:03:95:2b:b7 +2026-05-19T19:45:23.881336-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-RESULTS +2026-05-19T19:45:23.899449-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.SystemManager.SkillManager: SkillManager::refresh Error reading package file for @be: File not found +2026-05-19T19:45:24.254549-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service media-manager launched with PID 856 +2026-05-20T00:45:24.971Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE staying in ESTABLISHING due to: unindexed(true,false,false), +2026-05-19T19:45:28.894590-05:00 Royal-Current-Sage-Canvas jibo-system-monitoring-service[831,err]: - P.SystemMonitoringService.ErrorBusTask: ErrorBusTask::run Error receiving response from (system-manager): Timeout: Timeout +2026-05-20T00:45:29.391Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SSM.Svc.MMS: Instantiated +2026-05-20T00:45:29.367Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SSM.Svc.MMS: pre create mms +2026-05-20T00:45:29.550Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: media-manager service listening on port 8488 +2026-05-20T00:45:29.599Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SF.Client.NotificationsDispatcher: Initialized +2026-05-20T00:45:29.601Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.Jibo.Log: Registering for log "LevelChanged" notifications +2026-05-20T00:45:29.624Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SSM.Svc.MMS: Initialized +2026-05-20T00:45:29.632Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SSM.Svc.MMS: MMS Started +2026-05-19T19:45:29.960702-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service security-controller-service launched with PID 891 +2026-05-19T19:45:30.629553-05:00 Royal-Current-Sage-Canvas jibo-log-client-async[877,info]: - Upload log /tmp/tmp831aaaaaa size 4213 bytes +2026-05-20T00:45:30.627Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SSM.Svc.MMS: sweeping media photo cache (max size 104857600 min free 26214400) +2026-05-20T00:45:30.649Z Royal-Current-Sage-Canvas mms[856,info]: [versions@1 release="1.9.2"] T.SSM.Svc.MMS: media photo cache using 7826859 bytes in 128 files +2026-05-20T00:45:32.760Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: Instantiated +2026-05-20T00:45:32.784Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: Inititalizing +2026-05-20T00:45:32.820Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: Initialized +2026-05-20T00:45:32.742Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: pre create scs +2026-05-20T00:45:32.860Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SF.Client.NotificationsDispatcher: Initialized +2026-05-20T00:45:32.862Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: NotificationsDispatcher inited. +2026-05-20T00:45:32.863Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.Jibo.Log: Registering for log "LevelChanged" notifications +2026-05-20T00:45:32.866Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: registering for "RomConnectionRequested" notifications +2026-05-20T00:45:32.868Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: registering for "CommandRequest" notifications +2026-05-20T00:45:32.924Z Royal-Current-Sage-Canvas scs[891,info]: [versions@1 release="1.9.2"] T.SSM.Svc.SCS: SCS Started +2026-05-19T19:45:33.190617-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service secure-transfer launched with PID 920 +2026-05-19T19:45:36.820565-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.ServiceManager.Service: secure-transfer: P.SF.Service.HTTPService secure-transfer service listening on port 8485 +2026-05-20T00:45:36.821Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.SF.Service.HTTPService: secure-transfer service listening on port 8485 +2026-05-20T00:45:36.967Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:45:36.973Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: Exchange client not initialized +2026-05-20T00:45:36.975Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-19T19:45:37.323963-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.Service.Monitor: Service ssm launched with PID 937 +2026-05-20T00:45:37.363Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-20T00:45:38.913Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM: Checking for running skills +2026-05-19T19:45:39.038829-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.SystemManager.SkillManager: SkillManager::refresh Error reading package file for @be: File not found +2026-05-20T00:45:39.072Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM: No skill to shut down. Initializing SSM +2026-05-20T00:45:43.686Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.DevShell.TcpProxy: TcpProxy for port 9222 listening on port 9191 +2026-05-20T00:45:44.016Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Creating orchestrator +2026-05-20T00:45:44.019Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Creating service instances +2026-05-20T00:45:44.023Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB: Instantiated +2026-05-20T00:45:44.028Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.GlobalService: Instantiated +2026-05-20T00:45:44.031Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Skills: Instantiated +2026-05-20T00:45:44.034Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Notifications: Instantiated +2026-05-20T00:45:44.042Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Error: Instantiated +2026-05-20T00:45:44.047Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Scheduler.OTAUpdater: Initialized with filter fcs +2026-05-20T00:45:44.048Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Scheduler: Instantiated +2026-05-20T00:45:44.050Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Sim.PerformanceService: Instantiated +2026-05-20T00:45:44.053Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Remote.RemoteService: Instantiated +2026-05-20T00:45:44.057Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.WiFi: Instantiated +2026-05-20T00:45:44.059Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding registry service task to orchestrator +2026-05-20T00:45:44.061Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding registry client task to orchestrator +2026-05-20T00:45:44.063Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service AudioServiceSim init task to orchestrator +2026-05-20T00:45:44.065Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service BodyService init task to orchestrator +2026-05-20T00:45:44.067Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service EventPlayback init task to orchestrator +2026-05-20T00:45:44.071Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service LPSService init task to orchestrator +2026-05-20T00:45:44.073Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service MediaService init task to orchestrator +2026-05-20T00:45:44.076Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service PerformanceServiceSim init task to orchestrator +2026-05-20T00:45:44.079Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service SecureTransferServiceSim init task to orchestrator +2026-05-20T00:45:44.081Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service ServerService init task to orchestrator +2026-05-20T00:45:44.082Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service SkillsServiceSim init task to orchestrator +2026-05-20T00:45:44.083Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service SystemManagerService init task to orchestrator +2026-05-20T00:45:44.084Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service SystemMonitoringServiceSim init task to orchestrator +2026-05-20T00:45:44.086Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service TTSService init task to orchestrator +2026-05-20T00:45:44.087Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding simulated-service JetstreamServiceSim init task to orchestrator +2026-05-20T00:45:44.088Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding shared platform-service clients task to orchestrator +2026-05-20T00:45:44.090Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding platform-service clients task to orchestrator +2026-05-20T00:45:44.091Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding real services init tasks to orchestrator +2026-05-20T00:45:44.096Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding DevShell init task to orchestrator +2026-05-20T00:45:44.099Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding ErrorService init task to orchestrator +2026-05-20T00:45:44.101Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding ExpressionService init task to orchestrator +2026-05-20T00:45:44.102Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding GlobalManagerService init task to orchestrator +2026-05-20T00:45:44.103Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding KBService init task to orchestrator +2026-05-20T00:45:44.104Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding MediaManagerService init task to orchestrator +2026-05-20T00:45:44.106Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding NotificationsService init task to orchestrator +2026-05-20T00:45:44.109Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding PerformanceService init task to orchestrator +2026-05-20T00:45:44.112Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding RemoteService init task to orchestrator +2026-05-20T00:45:44.113Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding SchedulerService init task to orchestrator +2026-05-20T00:45:44.115Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding SecurityControllerService init task to orchestrator +2026-05-20T00:45:44.116Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding SkillsService init task to orchestrator +2026-05-20T00:45:44.118Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding WifiService init task to orchestrator +2026-05-20T00:45:44.119Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding sync managers task to orchestrator +2026-05-20T00:45:44.127Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding NotificationsDispatcher task to orchestrator +2026-05-20T00:45:44.128Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding late clients task to orchestrator +2026-05-20T00:45:44.129Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding analytics task to orchestrator +2026-05-20T00:45:44.131Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding BackgroundUtils task to orchestrator +2026-05-20T00:45:44.133Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Adding All (ending) task to orchestrator +2026-05-20T00:45:44.135Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Starting orchestrator +2026-05-20T00:45:44.141Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: start undefined: seq: RegistryService,RegistryClient,SystemManagerService,SharedClients,BodyService,LPSService,PlatformClients,AudioServiceSim,ExpressionService,MediaService,MediaManagerService,KBService,ErrorService,WifiService,JetstreamServiceSim,LateClients,GlobalManagerService,PerformanceService,SkillsService,TTSService,DevShell,NotificationsService,ServerService,NotificationsDispatcher,SecurityControllerService,RemoteService,SchedulerService,EventPlayback,PerformanceServiceSim,SecureTransferServiceSim,SkillsServiceSim,SystemMonitoringServiceSim,Analytics,BackgroundUtils,SyncManagers,All +2026-05-20T00:45:44.143Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start RegistryService: RegistryService started +2026-05-20T00:45:44.148Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop RegistryService: RegistryService callback +2026-05-20T00:45:44.150Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start RegistryClient: RegistryClient started +2026-05-20T00:45:44.151Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Getting registry host +2026-05-20T00:45:44.154Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop RegistryClient: RegistryClient callback +2026-05-20T00:45:44.157Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SystemManagerService: SystemManagerService started +2026-05-20T00:45:44.158Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SystemManagerService: SystemManagerService callback +2026-05-20T00:45:44.160Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SharedClients: SharedClients started +2026-05-20T00:45:44.166Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start BodyService: BodyService started +2026-05-20T00:45:44.168Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop BodyService: BodyService callback +2026-05-20T00:45:44.170Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start LPSService: LPSService started +2026-05-20T00:45:44.172Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop LPSService: LPSService callback +2026-05-20T00:45:44.173Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start AudioServiceSim: AudioServiceSim started +2026-05-20T00:45:44.177Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop AudioServiceSim: AudioServiceSim callback +2026-05-20T00:45:44.181Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start MediaService: MediaService started +2026-05-20T00:45:44.182Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop MediaService: MediaService callback +2026-05-20T00:45:44.185Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start JetstreamServiceSim: JetstreamServiceSim started +2026-05-20T00:45:44.188Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop JetstreamServiceSim: JetstreamServiceSim callback +2026-05-20T00:45:44.189Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start ServerService: ServerService started +2026-05-20T00:45:44.190Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop ServerService: ServerService callback +2026-05-20T00:45:44.191Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start EventPlayback: EventPlayback started +2026-05-20T00:45:44.192Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop EventPlayback: EventPlayback callback +2026-05-20T00:45:44.193Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start PerformanceServiceSim: PerformanceServiceSim started +2026-05-20T00:45:44.195Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Sim.PerformanceService: Initialized +2026-05-20T00:45:44.196Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop PerformanceServiceSim: PerformanceServiceSim callback +2026-05-20T00:45:44.197Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SecureTransferServiceSim: SecureTransferServiceSim started +2026-05-20T00:45:44.198Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SecureTransferServiceSim: SecureTransferServiceSim callback +2026-05-20T00:45:44.199Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SystemMonitoringServiceSim: SystemMonitoringServiceSim started +2026-05-20T00:45:44.200Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SystemMonitoringServiceSim: SystemMonitoringServiceSim callback +2026-05-20T00:45:44.293Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SharedClients: SharedClients callback +2026-05-20T00:45:44.295Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start PlatformClients: PlatformClients started +2026-05-20T00:45:44.332Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop PlatformClients: PlatformClients callback +2026-05-20T00:45:44.333Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start ExpressionService: ExpressionService started +2026-05-20T00:45:44.336Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop ExpressionService: ExpressionService callback +2026-05-20T00:45:44.339Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start MediaManagerService: MediaManagerService started +2026-05-20T00:45:44.342Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop MediaManagerService: MediaManagerService callback +2026-05-20T00:45:44.343Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start KBService: KBService started +2026-05-20T00:45:44.415Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start PerformanceService: PerformanceService started +2026-05-20T00:45:44.450Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Sim.PerformanceService: Initialized +2026-05-20T00:45:44.453Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop PerformanceService: PerformanceService callback +2026-05-20T00:45:44.454Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start TTSService: TTSService started +2026-05-20T00:45:44.455Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop TTSService: TTSService callback +2026-05-20T00:45:44.456Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start NotificationsService: NotificationsService started +2026-05-20T00:45:44.528Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: kb service listening on port 8778 +2026-05-20T00:45:44.537Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: notifications service listening on port 8001 +2026-05-20T00:45:44.561Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB: Initialized +2026-05-20T00:45:44.570Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB: KB client initialized +2026-05-20T00:45:44.571Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop KBService: KBService callback +2026-05-20T00:45:44.573Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start ErrorService: ErrorService started +2026-05-20T00:45:44.584Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Notifications: Initialized +2026-05-20T00:45:44.585Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop NotificationsService: NotificationsService callback +2026-05-20T00:45:44.587Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start NotificationsDispatcher: NotificationsDispatcher started +2026-05-20T00:45:44.600Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Client.NotificationsDispatcher: Initialized +2026-05-20T00:45:44.603Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.Log: Registering for log "LevelChanged" notifications +2026-05-20T00:45:44.605Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop NotificationsDispatcher: NotificationsDispatcher callback +2026-05-20T00:45:44.611Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SecurityControllerService: SecurityControllerService started +2026-05-20T00:45:44.614Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SecurityControllerService: SecurityControllerService callback +2026-05-20T00:45:44.629Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: error-service service listening on port 10004 +2026-05-20T00:45:44.834Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/error-codes/nodes +2026-05-20T00:45:45.054Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Error: Initialized +2026-05-20T00:45:45.058Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop ErrorService: ErrorService callback +2026-05-20T00:45:45.058Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start WifiService: WifiService started +2026-05-20T00:45:45.068Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SyncManagers: SyncManagers started +2026-05-20T00:45:45.100Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: wifi service listening on port 8668 +2026-05-20T00:45:45.122Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.WiFi.WiFiManager: Jibo server url is api.jibo.com +2026-05-20T00:45:45.129Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.WiFi: Initialized +2026-05-20T00:45:45.222Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop WifiService: WifiService callback +2026-05-20T00:45:45.224Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start LateClients: LateClients started +2026-05-20T00:45:45.523Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Loop: initing LoopManager +2026-05-20T00:45:45.528Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: Getting credentials +2026-05-20T00:45:45.548Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: Credentials found, updating JSC +2026-05-20T00:45:45.693Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop LateClients: LateClients callback +2026-05-20T00:45:45.696Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start GlobalManagerService: GlobalManagerService started +2026-05-20T00:45:45.719Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: global-manager service listening on port 8338 +2026-05-20T00:45:45.739Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.HttpHandler: Handling JetHttpHandler:/listen/unsubscribe_all_globals +2026-05-20T00:45:45.739Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: hjw_JM_UNSUBSCRIBE_ALL_GLOBALS +2026-05-20T00:45:45.740Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: Handled JM_UNSUBSCRIBE_ALL_GLOBALS in 1 ms. +2026-05-20T00:45:45.752Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.GlobalService: Initialized +2026-05-20T00:45:45.805Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.HttpHandler: Handling JetHttpHandler:/listen/subscribe_global +2026-05-20T00:45:45.806Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: hjw_JM_SUBSCRIBE_GLOBAL +2026-05-20T00:45:45.806Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: Handled JM_SUBSCRIBE_GLOBAL in 0 ms. +2026-05-20T00:45:45.753Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop GlobalManagerService: GlobalManagerService callback +2026-05-20T00:45:45.754Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SkillsService: SkillsService started +2026-05-20T00:45:45.768Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start RemoteService: RemoteService started +2026-05-20T00:45:45.781Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SchedulerService: SchedulerService started +2026-05-20T00:45:45.792Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start SkillsServiceSim: SkillsServiceSim started +2026-05-20T00:45:45.793Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SkillsServiceSim: SkillsServiceSim callback +2026-05-20T00:45:45.824Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: skills-service service listening on port 8779 +2026-05-20T00:45:45.829Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: remote service listening on port 10321 +2026-05-20T00:45:45.836Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: scheduler service listening on port 10005 +2026-05-20T00:45:45.875Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Remote.RemoteService: Initialized +2026-05-20T00:45:45.879Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop RemoteService: RemoteService callback +2026-05-19T19:45:45.898136-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,notice]: - P.BodyService.ScreenHandler: screen requested on. +2026-05-19T19:45:45.930025-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.SystemManager.SkillManager: SkillManager::refresh Error reading package file for @be: File not found +2026-05-20T00:45:45.952Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Skills: screen scheduler timer: skills service class api +2026-05-20T00:45:45.953Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.ScreenScheduler: starting screen timeout timer +2026-05-20T00:45:45.961Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.Skills: SSM operating in single skill mode +2026-05-19T19:45:45.975264-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.SystemManager.SkillManager: SkillManager::refresh Error reading package file for @be: File not found +2026-05-20T00:45:45.999Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Skills: Launching skill, getting skill record from SystemManager +2026-05-19T19:45:46.010500-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.SystemManager.SkillManager: SkillManager::refresh Error reading package file for @be: File not found +2026-05-20T00:45:46.011Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/ota/nodes +2026-05-20T00:45:46.035Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Skills: During launch(), got skill record for @be/be +2026-05-19T19:45:46.050406-05:00 Royal-Current-Sage-Canvas jibo-system-monitoring-service[831,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-19T19:45:46.079386-05:00 Royal-Current-Sage-Canvas jibo-tts-service[708,warning]: - C.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-20T00:45:46.080Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,warning]: - C.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-19T19:45:46.081663-05:00 Royal-Current-Sage-Canvas jibo-service-registry[455,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-19T19:45:46.082733-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-20T00:45:46.101Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: reporting the network is up +2026-05-20T00:45:46.112Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Loop: loading root node +2026-05-19T19:45:46.137753-05:00 Royal-Current-Sage-Canvas jibo-audio-service[639,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-19T19:45:46.138746-05:00 Royal-Current-Sage-Canvas jibo-lps-service[723,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-20T00:45:46.156Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Scheduler: Initialized +2026-05-20T00:45:46.158Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SchedulerService: SchedulerService callback +2026-05-20T00:45:46.192Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 3 KB nodes in /opt/jibo/Knowledge/jibo/loop/nodes +2026-05-20T00:45:46.244Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Loop: local cached loop loaded, members: 2 +2026-05-20T00:45:46.274Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.HttpHandler: Handling JetHttpHandler:/enroll/get_enrolled_speakers +2026-05-19T19:45:46.285146-05:00 Royal-Current-Sage-Canvas jibo-lps-service[723,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-20T00:45:46.287Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogSpeakerEnroll: Enroller created in 12.665 ms. +2026-05-20T00:45:46.294Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: things look good, setting the can skip full sync flag +2026-05-19T19:45:46.369873-05:00 Royal-Current-Sage-Canvas jibo-identity-service[660,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-19T19:45:46.371229-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-20T00:45:46.295Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Loop: doing first full sync in the background +2026-05-20T00:45:46.297Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB: Loop manager initialized +2026-05-20T00:45:46.304Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Loop: starting loop cloud syncing... +2026-05-19T19:45:46.449098-05:00 Royal-Current-Sage-Canvas jibo-server-service[812,warning]: - P.ManagementCore: ManagementCore::createSession Adding "3cf47e1a-53e5-11f1-b498-5cf821ea55ae" +2026-05-20T00:45:46.477Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/jibo/robot/nodes +2026-05-20T00:45:46.493Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Robot: local cached robot properties loaded, count: 7 +2026-05-20T00:45:46.496Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Robot: doing first full sync in the background +2026-05-20T00:45:46.498Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB: Robot manager initialized +2026-05-20T00:45:46.502Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Robot: starting robot properties cloud syncing... +2026-05-20T00:45:46.664Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 161 KB nodes in /opt/jibo/Knowledge/jibo/holidays/nodes +2026-05-20T00:45:46.667Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 3 KB nodes in /opt/jibo/Knowledge/jibo/loop/nodes +2026-05-20T00:45:46.678Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: local cached holidays loaded, count: 0 +2026-05-20T00:45:46.680Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: doing first full sync in the background +2026-05-20T00:45:46.682Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB: Holiday manager initialized +2026-05-20T00:45:46.691Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: starting holiday cloud syncing... +2026-05-20T00:45:46.784Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 32 KB nodes in /opt/jibo/Knowledge/jibo/media/nodes +2026-05-20T00:45:46.792Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.MediaList: local cached media list loaded, count: 0 +2026-05-20T00:45:46.793Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.MediaList: doing first full sync in the background +2026-05-20T00:45:46.802Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB: Media list manager initialized +2026-05-20T00:45:46.804Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SyncManagers: SyncManagers callback +2026-05-20T00:45:46.805Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.MediaList: starting media list cloud syncing... +2026-05-19T19:45:46.869137-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,notice]: - P.SystemManager.SystemNotifier: SystemNotifier::notify enqueue '{"channel":"SKILL","data":"**REDACTED**","ts":[80,855560],"type":"SkillNotification"}' +2026-05-20T00:45:46.870Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SF.ServiceClients.SystemManager: unhandled System Notification: { type: 'SkillNotification',\n channel: 'SKILL',\n ts: [ 80, 855560 ],\n data: { skill: '@be/be', reason: 0, code: 0 } } +2026-05-19T19:45:46.887955-05:00 Royal-Current-Sage-Canvas jibo-body-service[623,notice]: - P.BodyService.ScreenHandler: screen requested on. +2026-05-20T00:45:46.906Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop SkillsService: SkillsService callback +2026-05-20T00:45:46.911Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start DevShell: DevShell started +2026-05-20T00:45:46.915Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop DevShell: DevShell callback +2026-05-20T00:45:46.916Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start Analytics: Analytics started +2026-05-20T00:45:46.918Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Initilizing analytics +2026-05-20T00:45:46.926Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start BackgroundUtils: BackgroundUtils started +2026-05-20T00:45:46.928Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Initilizing background utilities +2026-05-20T00:45:46.938Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Background utilities initialized +2026-05-20T00:45:46.942Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop BackgroundUtils: BackgroundUtils callback +2026-05-20T00:45:47.233Z Royal-Current-Sage-Canvas ssm[937,err]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: JSC Loop#list() account 5c0b221fdf9d450019c5e252 does not have a loop +2026-05-20T00:45:47.236Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Loop: local loop members: 2 +2026-05-20T00:45:47.273Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.HttpHandler: Handling JetHttpHandler:/enroll/get_enrolled_speakers +2026-05-20T00:45:47.238Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: registering for "AccountUpdated" notifications +2026-05-20T00:45:47.240Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: registering for "LoopUpdated" notifications +2026-05-20T00:45:47.250Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: setting loop sync with cloud every 7200 seconds. +2026-05-20T00:45:47.263Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Robot: local robot properties count after syncing: 7 +2026-05-20T00:45:47.264Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: registering for "RobotUpdated" notifications +2026-05-20T00:45:47.265Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: setting robot properties sync with cloud every 21600 seconds. +2026-05-20T00:45:47.283Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,debug]: - C.Jetstream.RecogSpeakerEnroll: Enroller created in 10.072 ms. +2026-05-20T00:45:47.371Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Analytics: Adding segment instance eKTraeQ8jzBijVo5oIP6fvERY616XexN +2026-05-20T00:45:47.410Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.MediaList: local media list count after syncing: 0 +2026-05-20T00:45:47.427Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Analytics initialized +2026-05-20T00:45:47.428Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop Analytics: Analytics callback +2026-05-20T00:45:47.430Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_start All: All started +2026-05-20T00:45:47.431Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: task_stop All: All sync +2026-05-20T00:45:47.436Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Factory: Orchestrator: stop undefined: orchestration succeeded +2026-05-20T00:45:47.464Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.MediaList: service clients created successfully +2026-05-20T00:45:47.465Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: registering for "MediaCreated" notifications +2026-05-20T00:45:47.466Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: registering for "MediaDeleted" notifications +2026-05-20T00:45:47.467Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: setting media list sync with cloud every 7200 seconds. +2026-05-20T00:45:47.860Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-good-friday',\n eventId: 'US-good-friday',\n name: 'Good Friday',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2026-04-03',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.863Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-columbus-day',\n eventId: 'US-columbus-day',\n name: 'Columbus Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2026-10-12',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.867Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-new-year-s-day',\n eventId: 'US-new-year-s-day',\n name: 'New Year\'s Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-01-01',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.869Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-martin-luther-king-jr-day',\n eventId: 'US-martin-luther-king-jr-day',\n name: 'Martin Luther King, Jr. Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-01-18',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.870Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-lincoln-s-birthday',\n eventId: 'US-lincoln-s-birthday',\n name: 'Lincoln\'s Birthday',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-02-12',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.871Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-presidents-day',\n eventId: 'US-presidents-day',\n name: 'Presidents Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-02-15',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.873Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-good-friday',\n eventId: 'US-good-friday',\n name: 'Good Friday',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-03-26',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.877Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-good-friday',\n eventId: 'US-good-friday',\n name: 'Good Friday',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-03-26',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.881Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-truman-day',\n eventId: 'US-truman-day',\n name: 'Truman Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-05-08',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.883Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-memorial-day',\n eventId: 'US-memorial-day',\n name: 'Memorial Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-05-31',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.885Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-juneteenth-national-independence-day',\n eventId: 'US-juneteenth-national-independence-day',\n name: 'Juneteenth National Independence Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-06-18',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.889Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-independence-day',\n eventId: 'US-independence-day',\n name: 'Independence Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-07-05',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.891Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-labour-day',\n eventId: 'US-labour-day',\n name: 'Labour Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-09-06',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.895Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-columbus-day',\n eventId: 'US-columbus-day',\n name: 'Columbus Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-10-11',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.897Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-columbus-day',\n eventId: 'US-columbus-day',\n name: 'Columbus Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-10-11',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.898Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-indigenous-peoples-day',\n eventId: 'US-indigenous-peoples-day',\n name: 'Indigenous Peoples\' Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-10-11',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.900Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-veterans-day',\n eventId: 'US-veterans-day',\n name: 'Veterans Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-11-11',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.902Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-thanksgiving-day',\n eventId: 'US-thanksgiving-day',\n name: 'Thanksgiving Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-11-25',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.904Z Royal-Current-Sage-Canvas ssm[937,warning]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holiday record has a duplicate eventId, skipping it { id: 'US-christmas-day',\n eventId: 'US-christmas-day',\n name: 'Christmas Day',\n category: 'holiday',\n subcategory: null,\n loopId: '5c0b221fdf9d450019c5e253',\n memberId: null,\n isEnabled: true,\n date: '2027-12-24',\n endDate: null,\n created: 2026 } +2026-05-20T00:45:47.981Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: holidays changed. saving... +2026-05-20T00:45:48.243Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: finished saving holidays +2026-05-20T00:45:48.249Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.Holiday: local holidays count after syncing: 15 +2026-05-20T00:45:48.250Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: registering for "HolidayUpdated" notifications +2026-05-20T00:45:48.251Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.KB.SyncManager: setting holidays sync with cloud every 21600 seconds. +2026-05-20T00:45:49.073Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Error.Logger: Added L7-Cannot_connect_to_auth_server +2026-05-20T00:45:50.504Z Royal-Current-Sage-Canvas skill[980,info]: [versions@1 release="1.9.2"] T.SSM.SkillsMainProcess: App Ready /opt/jibo/Jibo/Skills/@be/be/index.html +2026-05-20T00:45:51.999Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 3 KB nodes in /opt/jibo/Knowledge/jibo/location/nodes +2026-05-20T00:45:52.004Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.LocationManager: KB Model Intialized +2026-05-20T00:45:52.354Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.LocationManager: on init, wifi and internet verified - getting location +2026-05-20T00:45:52.376Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.LocationManager: Fetching location data +2026-05-20T00:45:52.395Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.Location: Asking Google where we are with 28 access points +2026-05-19T19:45:52.889486-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-STARTED +2026-05-19T19:45:53.890108-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>Reject scan trigger since one is already pending +2026-05-20T00:45:56.405Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.LocationManager: comparing current KB timezone to fetched timezone: { offsetUTC: -18000000,\n name: 'Central Daylight Time',\n id: 'America/Chicago',\n __type: 'Timezone' } { offsetUTC: -18000000,\n name: 'Central Daylight Time',\n id: 'America/Chicago',\n __type: 'Timezone' } +2026-05-20T00:45:56.411Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.LocationManager: KB timezone has not changed +2026-05-20T00:45:56.421Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.LocationManager: Successfully set system timezone: America/Chicago +2026-05-20T00:45:56.423Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Background.LocationManager: System time with timezone offset: Tue May 19 2026 19:45:56 GMT-0500 (CDT) +2026-05-20T00:45:56.465Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Scheduler: Successfully scheduled job 0 30 2 * * * 2b3c55be-2e37-4ff6-a6ce-18868b132727 +2026-05-20T00:45:57.367Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:45:57.370Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:45:57.592Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:45:57.890833-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 28 36:23:03:d6:cf:c0 +2026-05-19T19:45:57.891141-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-RESULTS +2026-05-20T00:46:04.812Z Royal-Current-Sage-Canvas skill[980,info]: [versions@1 release="1.9.2"] T.SSM.SkillsMainProcess: Get context called +2026-05-20T00:46:01.451Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Clock: Initializing... +2026-05-20T00:46:01.497Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/clock - 209 MS +2026-05-20T00:46:01.621Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.CircuitSaver: Initializing... +2026-05-20T00:46:01.623Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/circuit-saver - 122 MS +2026-05-20T00:46:01.753Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Idle: Initializing... +2026-05-20T00:46:01.852Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/idle - 228 MS +2026-05-20T00:46:05.712Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Skills: @be/be launched and initialized +2026-05-20T00:46:01.873Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.MainMenu: Initializing... +2026-05-20T00:46:01.874Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/main-menu - 21 MS +2026-05-20T00:46:05.778Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/settings/nodes +2026-05-20T00:46:02.751Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Settings: Initializing... +2026-05-20T00:46:02.755Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/settings - 880 MS +2026-05-20T00:46:02.844Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Create: Initializing... +2026-05-20T00:46:02.846Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/create - 90 MS +2026-05-20T00:46:02.901Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Exercise: Initializing... +2026-05-20T00:46:02.903Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/exercise - 55 MS +2026-05-20T00:46:02.932Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.FirstContact: Initializing... +2026-05-20T00:46:02.933Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/first-contact - 29 MS +2026-05-20T00:46:02.978Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.FriendlyTips: Initializing... +2026-05-20T00:46:02.980Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/friendly-tips - 44 MS +2026-05-20T00:46:03.042Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Gallery: Initializing... +2026-05-20T00:46:03.046Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/gallery - 64 MS +2026-05-20T00:46:03.454Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.HueControl: Initializing... +2026-05-20T00:46:03.457Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/hue-control - 409 MS +2026-05-20T00:46:03.475Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Ifttt: Initializing... +2026-05-20T00:46:03.477Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/ifttt - 18 MS +2026-05-20T00:46:03.561Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Introductions: Initializing... +2026-05-20T00:46:03.562Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/introductions - 84 MS +2026-05-20T00:46:03.577Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Remote: Initializing... +2026-05-20T00:46:03.587Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/remote - 24 MS +2026-05-20T00:46:03.640Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Nimbus: Initializing... +2026-05-20T00:46:03.655Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/nimbus - 66 MS +2026-05-20T00:46:03.672Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Restore: Initializing... +2026-05-20T00:46:03.678Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/restore - 22 MS +2026-05-20T00:46:03.736Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Surprises: Initializing... +2026-05-20T00:46:03.743Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/surprises - 56 MS +2026-05-20T00:46:03.781Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SurprisesDate: Initializing... +2026-05-20T00:46:03.784Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/surprises-date - 37 MS +2026-05-20T00:46:03.813Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SurprisesOta: Initializing... +2026-05-20T00:46:03.817Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/surprises-ota - 31 MS +2026-05-20T00:46:03.952Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Greetings: Initializing... +2026-05-20T00:46:03.972Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Greetings: Setup allowing optional responses. +2026-05-20T00:46:03.989Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/greetings - 170 MS +2026-05-20T00:46:04.028Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.WhoAmI: Initializing... +2026-05-20T00:46:04.029Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/who-am-i - 38 MS +2026-05-20T00:46:04.162Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Tutorial: Initializing... +2026-05-20T00:46:04.166Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/tutorial - 135 MS +2026-05-20T00:46:04.626Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Radio: Initializing... +2026-05-20T00:46:04.630Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/radio - 460 MS +2026-05-20T00:46:04.677Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.WordOfTheDay: Initializing... +2026-05-20T00:46:04.679Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill construction @be/word-of-the-day - 49 MS +2026-05-20T00:46:04.723Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: Skill versions: { '@be/be-framework': '11.0.18',\n '@be/clock': '11.1.10',\n '@be/circuit-saver': '6.0.18',\n '@be/create': '8.0.18',\n '@be/exercise': '2.0.18',\n '@be/first-contact': '10.0.18',\n '@be/friendly-tips': '9.1.10',\n '@be/gallery': '7.0.18',\n '@be/greetings': '11.2.7',\n '@be/hue-control': '2.0.18',\n '@be/word-of-the-day': '2.2.9',\n '@be/idle': '12.0.18',\n '@be/ifttt': '6.0.18',\n '@be/introductions': '5.0.18',\n '@be/main-menu': '9.0.18',\n '@be/nimbus': '2.2.9',\n '@be/radio': '3.0.18',\n '@be/remote': '3.3.3',\n '@be/restore': '5.0.18',\n '@be/surprises': '10.1.9',\n '@be/surprises-date': '10.0.18',\n '@be/surprises-ota': '9.0.18',\n '@be/settings': '10.1.10',\n '@be/tutorial': '6.0.18',\n '@be/who-am-i': '9.0.18',\n '@jibo/chitchat-mims': '3.0.18',\n jibo: '14.2.9',\n 'jibo-anim-db-animations': '19.0.2',\n 'jibo-log': '5.0.18',\n 'jibo-client-framework': '4.0.18' } +2026-05-20T00:46:04.813Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'loader' +2026-05-20T00:46:04.815Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing loader in 2 ms +2026-05-20T00:46:04.817Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'fonts' +2026-05-20T00:46:04.833Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'registry' +2026-05-20T00:46:04.836Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'rendering' +2026-05-20T00:46:04.838Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing rendering in 2 ms +2026-05-20T00:46:04.839Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'sound' +2026-05-20T00:46:04.840Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing sound in 2 ms +2026-05-20T00:46:01.260Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: %c Welcome to: BE SKILL font-weight:bold;color:white;padding:5px 20px;background-color:purple;border-radius:20px +2026-05-20T00:46:04.880Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing registry in 46 ms +2026-05-20T00:46:04.883Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'service-records' +2026-05-20T00:46:04.956Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing service-records in 74 ms +2026-05-20T00:46:04.957Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'services' +2026-05-20T00:46:05.131Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'lifecycle' +2026-05-20T00:46:05.138Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'expression' +2026-05-20T00:46:05.203Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'dev-shell' +2026-05-20T00:46:05.212Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'jetstream' +2026-05-20T00:46:05.328Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing services in 371 ms +2026-05-20T00:46:05.330Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'location' +2026-05-20T00:46:05.333Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing location in 4 ms +2026-05-20T00:46:05.335Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'versions' +2026-05-20T00:46:05.340Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'volume' +2026-05-20T00:46:05.350Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Events.Global: adding listener for VOLUME +2026-05-20T00:46:05.352Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Events.Global: setting VOLUME to true +2026-05-20T00:46:05.386Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'media' +2026-05-20T00:46:05.391Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Media: proxyUrl http://127.0.0.1:8488 +2026-05-20T00:46:05.396Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'autobot' +2026-05-20T00:46:05.398Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing autobot in 2 ms +2026-05-20T00:46:05.400Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'im' +2026-05-20T00:46:05.402Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.InteractionMemory: Initializing interaction memory. +2026-05-20T00:46:05.408Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing im in 8 ms +2026-05-20T00:46:05.587Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing media in 200 ms +2026-05-20T00:46:05.720Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing versions in 385 ms +2026-05-20T00:46:05.725Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing dev-shell in 524 ms +2026-05-20T00:46:05.762Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Fonts: Fonts loaded +2026-05-20T00:46:05.764Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing fonts in 947 ms +2026-05-20T00:46:05.773Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing lifecycle in 641 ms +2026-05-20T00:46:05.778Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing jetstream in 566 ms +2026-05-20T00:46:05.806Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing expression in 667 ms +2026-05-20T00:46:05.808Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'anim-db' +2026-05-20T00:46:06.018Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing volume in 679 ms +2026-05-20T00:46:06.948Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing anim-db in 1141 ms +2026-05-20T00:46:06.949Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'action' +2026-05-20T00:46:06.962Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Action: Creating opportunity detector to provide proactive triggers +2026-05-20T00:46:06.994Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Action.Goal.GoalProvider.Hey Jibo Goal Provider: enabling listening for HJ event +2026-05-20T00:46:07.005Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing action in 56 ms +2026-05-20T00:46:07.007Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'emotion' +2026-05-20T00:46:07.028Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing emotion in 22 ms +2026-05-20T00:46:07.037Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'embodied' +2026-05-20T00:46:07.138Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: Starting to initialize plugin 'context' +2026-05-20T00:46:07.161Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing embodied in 128 ms +2026-05-20T00:46:07.281Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo: done initializing context in 144 ms +2026-05-20T00:46:08.542Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be: Loaded log configuration from '/opt/jibo/Jibo/Skills/@be/be/config/be-normal.json' +2026-05-20T00:46:08.719Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.SF.Client.NotificationsDispatcher: Initialized +2026-05-20T00:46:08.756Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE setPause:true has callback:false +2026-05-20T00:46:08.721Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Log: Registering for log "LevelChanged" notifications +2026-05-20T00:46:08.747Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: Indexing... +2026-05-20T00:46:12.209Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE setPause:false has callback:true +2026-05-20T00:46:12.240Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE staying in ESTABLISHING due motion > 0.2, physical:1.026504397392273 +2026-05-20T00:46:12.446Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE state changed: ESTABLISHING -> RESUMING +2026-05-20T00:46:17.597Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:46:17.600Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:46:19.995Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE state changed: RESUMING -> RUNNING +2026-05-20T00:46:20.001Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: BODY_INTERFACE done enabling, notifying 1 "setPause:false" listeners +2026-05-20T00:46:20.028Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: initialize the BeSkill.plugins +2026-05-20T00:46:20.212Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.SF.Service.HTTPService: context service listening on port 8588 +2026-05-20T00:46:20.336Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Framework.ContextServiceBeSkillPlugin: Successfully initialized ContextService +2026-05-20T00:46:20.362Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/circuit-saver postinit call - 1 MS +2026-05-20T00:46:20.374Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/main-menu postinit call - 0 MS +2026-05-20T00:46:20.377Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/create postinit call - 0 MS +2026-05-20T00:46:20.380Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/exercise postinit call - 1 MS +2026-05-20T00:46:20.382Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/first-contact postinit call - 1 MS +2026-05-20T00:46:20.383Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/friendly-tips postinit call - 0 MS +2026-05-20T00:46:20.384Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/gallery postinit call - 0 MS +2026-05-20T00:46:20.386Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/hue-control postinit call - 1 MS +2026-05-20T00:46:20.388Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/ifttt postinit call - 0 MS +2026-05-20T00:46:20.628Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/jibo/clock/alarm_timer/nodes +2026-05-20T00:46:20.630Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 3 KB nodes in /opt/jibo/Knowledge/idle/nodes +2026-05-20T00:46:20.650Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/introductions/nodes +2026-05-20T00:46:20.634Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/settings postinit call - 258 MS +2026-05-20T00:46:20.635Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/remote postinit call - 0 MS +2026-05-20T00:46:20.819Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/nimbus/nodes +2026-05-20T00:46:20.825Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 8 KB nodes in /opt/jibo/Knowledge/jibo/eos/nodes +2026-05-20T00:46:20.668Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.SF.ServiceClients.Identity.DataConverter: Returning null speaker due to staleness. +2026-05-20T00:46:20.702Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/introductions postinit call - 313 MS +2026-05-20T00:46:20.703Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/restore postinit call - 0 MS +2026-05-20T00:46:20.881Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/nimbus postinit call - 245 MS +2026-05-20T00:46:20.898Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/clock postinit call - 538 MS +2026-05-20T00:46:20.904Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/idle postinit call - 539 MS +2026-05-20T00:46:20.907Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/greetings postinit call - 2 MS +2026-05-20T00:46:20.908Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/who-am-i postinit call - 0 MS +2026-05-20T00:46:20.909Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/tutorial postinit call - 0 MS +2026-05-20T00:46:20.911Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/radio postinit call - 1 MS +2026-05-20T00:46:21.067Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/surprises-ota postinit call - 167 MS +2026-05-20T00:46:21.109Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 3 KB nodes in /opt/jibo/Knowledge/surprises-date-commentary/nodes +2026-05-20T00:46:21.102Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/surprises postinit call - 397 MS +2026-05-20T00:46:21.127Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/skills/greetings/nodes +2026-05-20T00:46:21.129Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/word-of-the-day/nodes +2026-05-20T00:46:21.261Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/surprises-date postinit call - 379 MS +2026-05-20T00:46:21.366Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: loading - skill @be/word-of-the-day postinit call - 455 MS +2026-05-20T00:46:21.371Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: Jibo is ready... awaiting launch command. +2026-05-20T00:46:21.528Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Settings: Updated robot info on server: { result: 'ok' } +2026-05-20T00:46:21.953Z Royal-Current-Sage-Canvas ssm[937,info]: [versions@1 release="1.9.2"] T.Jibo.KB.Database: 1 KB node in /opt/jibo/Knowledge/skills-config/nodes +2026-05-20T00:46:21.968Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: _onHasBackupData failed: LoopID is not cached +2026-05-20T00:46:21.976Z Royal-Current-Sage-Canvas be[1018,warning]: [1@1 frames="[{\"method\":\"XMLHttpRequest.request.onload.ex\",\"filename\":\"/opt/jibo/Jibo/Skills/@be/be/node_modules/jibo-service-clients/lib/jibo-service-clients.js\",\"line\":3307,\"column\":33}\]" message="Client expected different response from server: {\"status\":\"error\",\"message\":\"LoopID is not cached\"}" name="DATA_ERROR"][versions@1 release="1.9.2"] T.Be.Be: error when checking if backup data exists Client expected different response from server: {"status":"error","message":"LoopID is not cached"} +2026-05-20T00:46:21.997Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: selectFirstSkill parameter readout: Skills config load error: null, first time: false, has backup data: null, skip restore: false, current error id: L7-Cannot_connect_to_auth_server +2026-05-20T00:46:22.002Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: requested skill switch @be/settings { nlu: { entities: { errorId: 'L7-Cannot_connect_to_auth_server' } },\n asr: { text: '', confidence: 1 } } +2026-05-20T00:46:22.007Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: no current or pending skill. launching into requested skill +2026-05-20T00:46:22.078Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: ATTENTION Attention Mode changed from OFF to ENGAGED +2026-05-20T00:46:22.120Z Royal-Current-Sage-Canvas exp[785,info]: [versions@1 release="1.9.2"] T.SSM.Svc.Exp.AU: ATTENTION Attention Mode changed from ENGAGED to OFF +2026-05-20T00:46:22.011Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: switching skill null @be/settings +2026-05-20T00:46:22.012Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: starting close skill null +2026-05-20T00:46:22.017Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: ending close skill null +2026-05-20T00:46:22.148Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.HttpHandler: Handling JetHttpHandler:/listen/set_hj_mode +2026-05-20T00:46:22.148Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: hjw_JM_SET_HJ_MODE +2026-05-20T00:46:22.148Z Royal-Current-Sage-Canvas jibo-jetstream-service[679,info]: - C.Jetstream.ListenLoop: Handled JM_SET_HJ_MODE in 0 ms. +2026-05-20T00:46:22.018Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: deferring to action system with pending skill: @be/settings { nlu: { entities: { errorId: 'L7-Cannot_connect_to_auth_server' } },\n asr: { text: '', confidence: 1 } } +2026-05-20T00:46:22.029Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: waiting on action system @be/settings +2026-05-20T00:46:22.033Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Action: Incoming new goal 'Be Skill Switch Goal: '@be/settings'' +2026-05-20T00:46:22.043Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Action.Action.GoalDrivenAction: Taking action: 'Be Skill Switch Action' to achieve goal 'Be Skill Switch Goal: '@be/settings'' +2026-05-20T00:46:22.055Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Jibo.Action.Action.GoalDrivenAction: Completed action: 'Be Skill Switch Action' with result: 'SUCCEEDED' +2026-05-20T00:46:22.057Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: action system reported accomplished goal @be/settings +2026-05-20T00:46:22.059Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: starting skill open @be/settings { nlu: { entities: { errorId: 'L7-Cannot_connect_to_auth_server' } },\n asr: { text: '', confidence: 1 } } +2026-05-20T00:46:22.068Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchUtil: BeSkill open @be/settings { nlu: { entities: { errorId: 'L7-Cannot_connect_to_auth_server' } },\n asr: { text: '', confidence: 1 } } +2026-05-20T00:46:22.079Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchUtil: new skill preload @be/settings +2026-05-20T00:46:22.082Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchUtil: opening new skill @be/settings +2026-05-20T00:46:22.086Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.SF.ServiceClients.Identity.DataConverter: Returning null speaker due to staleness. +2026-05-20T00:46:22.093Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Settings.error: SubSkill Launched +2026-05-20T00:46:22.121Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.SF.ServiceClients.Identity.DataConverter: Returning null speaker due to staleness. +2026-05-20T00:46:22.125Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.Be: Finished running Be init +2026-05-20T00:46:22.126Z Royal-Current-Sage-Canvas be[1018,info]: [versions@1 release="1.9.2"] T.Be.SkillSwitchScheduler: skill open success @be/settings { nlu: { entities: { errorId: 'L7-Cannot_connect_to_auth_server' } },\n asr: { text: '', confidence: 1 } } +2026-05-20T00:46:23.546Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:46:27.901423-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-STARTED +2026-05-19T19:46:31.902321-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 29 86:69:1a:8b:a2:b7 +2026-05-19T19:46:31.902570-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-RESULTS +2026-05-20T00:46:43.558Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:46:43.562Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:46:43.681Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:47:01.914190-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-STARTED +2026-05-20T00:47:03.686Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:47:03.688Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:47:05.633Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:47:05.915696-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 30 86:69:1a:8b:a0:e3 +2026-05-19T19:47:05.915938-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 31 86:69:1a:95:0b:6d +2026-05-19T19:47:05.916096-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-RESULTS +2026-05-19T19:47:21.261916-05:00 Royal-Current-Sage-Canvas sshd[1106,info]: - Accepted password for root from 192.168.8.184 port 52244 ssh2 +2026-05-20T00:47:25.640Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:47:25.652Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:47:25.783Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:47:35.929166-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-STARTED +2026-05-19T19:47:39.932054-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 32 30:23:03:d6:ca:1d +2026-05-19T19:47:39.932413-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-RESULTS +2026-05-20T00:47:45.797Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:47:45.806Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:47:46.254Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:47:55.950094-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 3 30:23:03:95:2b:b8 +2026-05-19T19:47:55.950492-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 8 52:06:f5:3e:83:89 +2026-05-19T19:47:55.950801-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 16 30:23:03:3f:51:e6 +2026-05-20T00:48:06.271Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:48:06.279Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:48:06.828Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:48:09.963453-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-STARTED +2026-05-19T19:48:14.973900-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 33 30:23:03:95:2b:b8 +2026-05-19T19:48:14.974303-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-RESULTS +2026-05-19T19:48:25.979334-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 27 36:23:03:95:2b:b7 +2026-05-19T19:48:25.979628-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 25 7a:c3:2a:77:55:eb +2026-05-20T00:48:26.862Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:48:26.864Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:48:27.549Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:48:44.991620-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-STARTED +2026-05-19T19:48:45.993311-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>WPA: Group rekeying completed with 94:83:c4:70:2c:8c [GTK=CCMP] +2026-05-20T00:48:47.560Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:48:47.568Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:48:48.137Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:48:48.995398-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 34 30:23:03:3f:51:e6 +2026-05-19T19:48:48.995706-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-ADDED 35 36:23:03:95:2b:b7 +2026-05-19T19:48:48.995911-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-SCAN-RESULTS +2026-05-19T19:49:06.002160-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 6 ae:ae:19:ae:91:70 +2026-05-19T19:49:06.002583-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 9 52:06:f5:3e:83:89 +2026-05-19T19:49:06.002826-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 5 4a:9e:bd:65:31:8b +2026-05-19T19:49:06.003109-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 10 80:69:1a:8b:a0:e3 +2026-05-19T19:49:06.003368-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 11 80:69:1a:8b:a2:b7 +2026-05-19T19:49:06.003605-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 17 30:23:03:95:2b:b7 +2026-05-19T19:49:06.003786-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 18 30:23:03:d6:ca:1c +2026-05-19T19:49:06.003997-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 19 36:23:03:d6:ca:1c +2026-05-19T19:49:06.004122-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 22 d6:e2:2f:ea:3e:fb +2026-05-19T19:49:06.004263-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 26 68:f0:bc:c3:76:ce +2026-05-20T00:49:08.152Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:49:08.157Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:49:08.940Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-20T00:49:28.947Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:49:28.952Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:49:29.978Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:49:36.019591-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 2 80:69:1a:8b:a0:e4 +2026-05-19T19:49:36.021202-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 0 80:69:1a:8b:a2:b8 +2026-05-19T19:49:36.021788-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 29 86:69:1a:8b:a2:b7 +2026-05-19T19:49:36.022095-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 28 36:23:03:d6:cf:c0 +2026-05-19T19:49:36.022338-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 21 30:23:03:d6:cf:c1 +2026-05-20T00:49:49.990Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:49:50.002Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:49:51.074Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +2026-05-19T19:50:00.404462-05:00 Royal-Current-Sage-Canvas crond[157,info]: - USER root pid 1131 cmd /usr/bin/random_logrotate +2026-05-19T19:50:06.041689-05:00 Royal-Current-Sage-Canvas jibo-system-manager[487,info]: - P.SystemManager.WPAControlInterface: <3>CTRL-EVENT-BSS-REMOVED 1 80:69:1a:95:0b:6e +2026-05-20T00:50:11.083Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Still initializing: LoopID is not cached +2026-05-20T00:50:11.088Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.CredentialStore: CredentialStore.data.accessKeyId: a3ksSqxDYDpzZrV8j4md +2026-05-20T00:50:11.241Z Royal-Current-Sage-Canvas STS[920,info]: [versions@1 release="1.9.2"] P.secure-transfer-service.Service: Restarting STS init: Expected one loop in list (returned: 0) +# +