Pick-And-Place Workflow Using CHOMP for Manipulators
This example shows how to use CHOMP for manipulators to pick and place objects while simultaneously avoiding obstacles using the manipulatorCHOMP object. This example also shows some of the key differences between the RRT-based and CHOMP-based motion planning approaches to solving a pick-and-place task.
Introduction
Covariant Hamiltonian Optimization for Motion Planning (CHOMP) is a trajectory-optimization-based motion planner that optimizes trajectories for smoothness and collision-avoidance. It does this by minimizing a cost function, comprised of a smoothness cost and a collision cost. Notable differences between the CHOMP and RRT algorithms are:
CHOMP outputs a trajectory comprised of waypoint samples with associated timestamps, while RRT is a geometric planner that outputs waypoints without any associated times.
CHOMP models collision avoidance as a cost, so minimizing the cost of collision is one of the objectives of the algorithm, whereas RRT does not include an edge (interpolations between two waypoints) in the resultant path if the edge is colliding. This means that you can obtain colliding trajectories from CHOMP depending on conditions and solver settings.
While planning a path using RRT, the planner queries only whether a waypoint is colliding or not. When planning a path using CHOMP, the algorithm requires the gradient of the collision cost of a waypoint. The gradient of the collision cost is the change in collision cost when there is a minor change in the waypoint. This means that you must model the environment as spheres for CHOMP, and as convex collision geometries for RRT.
This example shows you how to load a manipulator robot and a pick-and-place environment, model convex collision geometries as spherical obstacles for CHOMP, tune manipulatorCHOMP, and visualize the resulting pick-and-place trajectories.
Load Robot and Environment
Use the exampleHelperLoadPickAndPlaceCHOMP helper function to load a Franka Emika Panda manipulator robot model and slightly modify the gripper. The helper function also loads collision objects to act as the environment and returns a starting configuration. The starting conditions and environment are similar to the setup found in the Pick-and-Place Workflow Using RRT for Manipulators example.
[franka,startConfig,env] = exampleHelperLoadPickAndPlaceCHOMP; indexOfCollisionObjectInEnvironmentToPick=3;
Create Environment and Robot Collision Model
While the environment env is ready for use with an RRT motion planner, CHOMP has stricter collision model representations:
The robot must be represented as a collection of spheres
The environment must be represented as a collection of spheres or as a signed distance field -- a discretized collision model of a set of meshes. For basic collision representation with spheres, only Robotics System Toolbox is required, but for the signed distance field, Navigation Toolbox is required.
This figure shows the difference in setup between using RRT and using CHOMP in the three possible permutations. Notice the overlaid spherical approximations, which CHOMP uses for collision costs, over the collision geometries of the robot.

Choose an Environment Representation
The sections below describe the different approaches to model the environment that are compatible with manipulatorCHOMP. There are two choices:
Collection of spheres: Model the environment as a collection of spheres that represent the volume of space occupied by the environment geometry.
Truncated signed distance field: Model the environment using MeshTSDF object, which allows users to pass collision geometries directly to CHOMP as inputs to the meshTSDF object, so there is no need to convert to spheres. Note that this requires Navigation Toolbox™.
In general, the meshTSDF representation is faster and may be simpler than recreating the environment as spheres. Both mechanisms approximate the true environment, but in different ways: sphere geometries approximate the environment as spheres and then use an exact gradient to compute collision cost within CHOMP, while the truncated signed distance field accepts collision meshes as input but approximates the gradient for collision cost. Hence, in most situations meshTSDF will be more appropriate, but when the environment is well-approximated by spheres, spheres may be better.
Model the Environment Using a Collection of Spheres
In this example, env is a cell array of collision geometries, represented as collisionBox and collisionCylinder objects. To ensure the optimization routine accounts for the collision geometries, create an array, sphobstacles, in which to store the approximated environment.
sphobstacles = [];
The objective of this example is to pick the third object in the env cell array, a soda can, and place it over the barricade on the other side of the platform. This process physically moves the soda can from one place to another. From the perspective of a motion planning problem, you must remove the spheres that represent the soda can from the spherical obstacles and attach them to the gripper such that they become a part of the spheres on the rigid body tree. Create an array to track the spheres associated with the object to be picked via spheresOfObjectToPick, and another for tracking the indices of these spheres in the sphobstacles array, spheresOfObjectToPickIdx.
indexOfCollisionObjectInEnvironmentToPick = 3; spheresOfObjectToPickIdx = []; spheresOfObjectToPick = [];
The environment cell array consists of collision boxes that represent the platforms and barricades, and collision cylinders that represent the soda cans to be picked and placed. The exampleHelperApproximateCollisionCylinderSpheres and exampleHelperApproximateCollisionBoxSpheres helper functions approximate an array of spheres for the box and sphere collision geometry types, respectively.
To approximate the collision cylinders using spheres, for each collision cylinder in the environment, fit a collision capsule using the
fitCollisionCapsuleobject function, and then generate spheres on the capsule usinggenspheresat a ratio of[0 0.5 1]. This ratio generates a sphere at the beginning, middle, and end of the capsule. To more closely approximate the capsule, you can add more uniformly sampled ratio points.To approximate spheres on a collision box, use the
meshgridfunction. Define the grid over the length, height, and width of the box, and place a sphere at each grid point. Assume 20 spheres per unit length of the box. Increasing this density creates more spheres, which can more accurately model a box, but results in higher computation times when optimizing a trajectory.
sphPerUnit = 20; % Spheres per unit length of box for i = 1:length(env) if(isa(env{i},"collisionCylinder")) ratio = [0 0.5 1]; sph = exampleHelperApproximateCollisionCylinderSpheres(env{i},ratio); else rho = 1/sphPerUnit; sph = exampleHelperApproximateCollisionBoxSpheres(env{i},rho); end if(i == indexOfCollisionObjectInEnvironmentToPick) spheresOfObjectToPickIdx = size(sphobstacles,2)+(1:size(sph,2)); spheresOfObjectToPick = sph; end sphobstacles = [sphobstacles sph]; end
Model the Environment Using a Truncated Signed Distance Field
A simpler way to model the environment is to use a signed distance field via the meshTSDF manager. The signed distance field accepts a set of meshes or primitives and converts it to a discrete representation that returns a vector measure of closeness to collision between an abritrary point in space and the signed distance field, i.e. the signed distance. CHOMP can use this signed distance in the collision-avoidance pieces of the cost function, thereby allowing a user to model relatively complex environments efficiently for use with CHOMP.
The following code shows how to model the environment with meshTSDF:
if exist('meshtsdf','class') meshStruct = geom2struct(env); manager=meshtsdf(meshStruct,"Resolution",15,"TruncationDistance",0.3); % Display visualization show(franka); hold all show(manager); end

Create Planner Instance
Initialize both the picking and placing configurations. The picking configuration places the end effector of the robot over the desired soda can, and the placing configuration places the end effector on the other side of the barricade.
pickConfig = [0.2367 -0.0538 0.0536 -2.2101 0.0019 2.1565 -0.9682]; placeConfig = [-0.6564 0.2885 -0.3187 -1.5941 0.1103 1.8678 -0.2344];
Create a manipulatorCHOMP object from the robot rigid body tree, and set the SphericalObstacles property to the spherical approximation of the environment. Model the environment using the representation of choice. While these can be used together, in this example only one representation at a time is used. Note that the truncated signed distance field is an advanced collision representation and requires a Navigation Toolbox license.
envModelType="Signed Distance Field"; if envModelType=="Spherical Decomposition" chomp = manipulatorCHOMP(franka); chomp.SphericalObstacles = sphobstacles collisionsForVisuals = {}; % Don't display the original environment in the analysis visuals else if ~exist('meshtsdf','class') error('The meshtsdf class requires a Navigation Toolbox License. Use Spherical Decomposition instead to run the example'); end chomp = manipulatorCHOMP(franka, MeshTSDF=manager); collisionsForVisuals = env; % Display the original environment in the analysis visuals end
For a collision-free trajectory, set a higher weight on the cost of collision as compared to smoothness. Increase the learning rate for higher convergence. Refer to the Tune Optimizer section to see the relationship between the various cost and solver options.
chomp.CollisionOptions.CollisionCostWeight = 10; chomp.SmoothnessOptions.SmoothnessCostWeight = 1e-3; chomp.SolverOptions.LearningRate = 5;
Visualize the starting, picking, and placing joint configurations of the robot for the CHOMP instance.
figure
show(chomp,[startConfig; pickConfig; placeConfig],CollisionObjects=collisionsForVisuals);
title("Starting, Picking, and Placing Configurations")
xlim([-1 1])
ylim([-1 1])
zlim([-0.2 1])
Compare Motion Planning Problems
Visualize the differences in the collision models for the environment and the robot between the CHOMP and RRT solvers.
subplot(1,2,1) show(franka,startConfig,Collisions="on",Visuals="off"); hold on for i = 1:length(env) show(env{i}); end hold off xlim([-1 1]) ylim([-1 1]) zlim([-0.2 1]) title("RRT Motion Planning Problem") subplot(1,2,2) show(chomp,startConfig,CollisionObjects=collisionsForVisuals); xlim([-1 1]) ylim([-1 1]) zlim([-0.2 1]) title("CHOMP Motion Planning Problem")

Plan Picking Trajectory
Plan for an optimal collision-free picking trajectory. Assume a minimum-jerk trajectory between the starting and picking configurations. Additionally, assume the trajectory is 2 seconds long and is discretized in 0.1 second time steps.
[optimpickconfig,timestamppick,solpickinfo] = optimize(chomp,[startConfig; pickConfig], ... % Starting and ending robot joint configurations [0 2], ... % Two waypoint times, first at 0s and last at 2s 0.10, ... % 0.1s time step InitialTrajectoryFitType="minjerkpolytraj");
Display the IsCollisionFree and InitialCollisionCost fields of the solpickinfo structure, as well as the final collision cost of the CollisionCost field. Note that the IsCollisionFree field is true, meaning the trajectory is collision free, and the final collision cost of CollisionCost is lower than the initial collision cost. CHOMP is an optimization-based motion planner, so CHOMP treats the collisions during a trajectory as a cost and not a constraint. For more information on how CHOMP can output trajectories that result in collisions if you set weights inappropriately, see the Tune Optimizer section.
solpickinfo.IsCollisionFree
ans = logical
1
solpickinfo.InitialCollisionCost
ans = 7.7603e-04
solpickinfo.CollisionCost(solpickinfo.Iterations)
ans = 3.0642e-04
solpickinfo.OptimizationTime
ans = 0.6127
Show the optimized configuration trajectory between the starting configuration and the picking configuration.
figure
show(chomp,optimpickconfig,CollisionObjects=collisionsForVisuals);
title("Optimized Picking Trajectory")
xlim([-1 1])
ylim([-1 1])
zlim([-0.2 1])
Plan Placing Trajectory
Remove the can as an obstacle in the CHOMP environment and get the transformation from the base of the robot to the hand of the robot. Then transform the spheres of the can so that they are in the end-effector frame, and add the spheres of the can to the cell array of spheres of the robot hand.
if envModelType=="Spherical Decomposition" chomp.SphericalObstacles(:,spheresOfObjectToPickIdx) = []; else removeMesh(chomp.MeshTSDF, indexOfCollisionObjectInEnvironmentToPick); end Tee = getTransform(franka,pickConfig,"panda_hand"); spheresInEeFrame = transform(inv(se3(Tee)),spheresOfObjectToPick(2:end,:)')'; pandahandspheres = chomp.RigidBodyTreeSpheres("panda_hand","spheres").spheres{1}; chomp.RigidBodyTreeSpheres("panda_hand","spheres").spheres{1} = [pandahandspheres,[spheresOfObjectToPick(1,:);spheresInEeFrame]];
Plan the placing trajectory.
[optimplaceconfig,timestampplace,solplaceinfo] = optimize(chomp,[pickConfig; placeConfig], ... [0 2], ... 0.10, ... InitialTrajectoryFitType="minjerkpolytraj");
Note that the InitialCollisionCost is higher than the final collision cost, which is at or near zero.
solplaceinfo.InitialCollisionCost
ans = 0.6973
solplaceinfo.CollisionCost(solplaceinfo.Iterations)
ans = 8.2528e-04
Check the Collision-Free property, which indicates whether the collision cost has reached zero. Note that for the MeshTSDF environment model, the overall collision cost is near zero, but the status returns not collision-free. This is because of collisions perceived between spherical collision geometries that cause a fractional cost increase. The overall collision-free status can be verified via visualization.
solplaceinfo.IsCollisionFree
ans = logical
0
The Opimization time records the overall time to plan.
solplaceinfo.OptimizationTime
ans = 0.1342
Show the optimized configuration trajectory between the picking configuration and the placing configuration.
figure show(chomp,optimplaceconfig,CollisionObjects=collisionsForVisuals);

title("Optimized Placing Trajectory")
xlim([-1 1])
ylim([-1 1])
zlim([-0.2 1])
Tune Optimizer
CHOMP tries to find a balance between collision avoidance and smoothness a trajectory. The chompCollisionOptions, chompSmoothnessOptions, and chompSolverOptions objects help you specify how the solver should weigh these costs. These are the three parameters that you can tune to obtain an optimal trajectory:
CollisionCostWeight— A property of thechompCollisionOptionsobject, this value specifies how much weight the optimizer should place on the collision avoidance cost of the trajectory. This weight affects the rate of change of cost of collision of the trajectory per iteration. A higher value indicates a higher change per iteration in the collision cost.SmoothnessCostWeight— A property of thechompSmoothnessOptionsobject, this value specifies how much weight the optimizer should place on smoothness of the trajectory. This weight affects the rate of change of the smoothness cost of the trajectory per iteration. A higher value indicates higher change per iteration in the smoothness cost.LearningRate— A property of thechompSolverOptionsobject, this value specifies how the overall objective function, such as the sum of the weighted smoothness and collision costs, changes per iteration. A higher value indicates the trajectory updates faster per iteration.
Decrease Collision Cost Weight
Decrease the value of the CollisionCostWeight property and plan the placing trajectory again.
chomp.CollisionOptions.CollisionCostWeight = 1.5; [placetraj,~,lowcollcostinfo] = optimize(chomp,[pickConfig; placeConfig], ... [0 2], ... 0.10, ... InitialTrajectoryFitType="minjerkpolytraj");
Plot the results of the planner with a collision cost weight of 10 and 1.5 to see the effect. Note that setting the collision cost weight to a lower value results in a higher collision cost when the optimizer completes its trajectory planning.
figure plot([solplaceinfo.InitialCollisionCost,solplaceinfo.CollisionCost]) hold on plot([lowcollcostinfo.InitialCollisionCost,lowcollcostinfo.CollisionCost]) title("Effect of Decreasing Collision Cost Weight") legend({"CollisionCostWeight=10","CollisionCostWeight=1.5"}) xlabel("Iterations") ylabel("Collision Cost") hold off

Display the IsCollisionFree field of the solution info, and show the trajectory with this lower collision cost weight. Notice that the trajectory is not collision free after decreasing the collision cost weight to 1.5 and the final collision cost is significantly higher.
lowcollcostinfo.CollisionCost(lowcollcostinfo.Iterations)
ans = 0.2476
disp(lowcollcostinfo.IsCollisionFree)
0
show(chomp,placetraj,CollisionObjects=collisionsForVisuals);
xlim([-1 1])
ylim([-1 1])
zlim([-0.2 1])
title("Place Trajectory with CollisionCostWeight=1.5")
Increase Smoothness Cost Weight
Increase the smoothness cost weight to a value greater than the collision cost weight, indicating that smoothness is of a higher priority. Then, plan a place trajectory.
chomp.SmoothnessOptions.SmoothnessCostWeight = 0.1; chomp.CollisionOptions.CollisionCostWeight = 1e-3; [placetraj,~,highsmoothinfo] = optimize(chomp,[pickConfig; placeConfig], ... [0 2], ... 0.10, ... InitialTrajectoryFitType="minjerkpolytraj");
Plot the results for the smoothness cost weights of 1e-3 and 10 to see the effect. Note that setting the smoothness cost weight higher results in a higher collision cost when the optimizer completes its trajectory planning. When smoothness cost weight is lower, notice that the smoothness cost increases because the manipulator must take a longer path in the workspace to prioritize collision avoidance.
figure plot([solplaceinfo.InitialSmoothnessCost,solplaceinfo.SmoothnessCost]) hold on plot([highsmoothinfo.InitialSmoothnessCost,highsmoothinfo.SmoothnessCost]) title("Effect of Decreasing Smoothness Cost Weight") legend({"SmoothnessCostWeight=1e-3","SmoothnessCostWeight=10"}) xlabel("Iterations") ylabel("Smoothness Cost") hold off

Display the IsCollisionFree field of the solution info and show the trajectory with the higher smoothness cost weight. Notice that the trajectory is not collision free after increasing the smoothness cost weight to 10 and the final collision cost is significantly higher.
highsmoothinfo.CollisionCost(highsmoothinfo.Iterations)
ans = 0.5689
disp(highsmoothinfo.IsCollisionFree)
0
show(chomp,placetraj,CollisionObjects=collisionsForVisuals);
title("Place Trajectory with SmoothnessCostWeight=1.5")
xlim([-1 1])
ylim([-1 1])
zlim([-0.2 1])
Decrease Learning Rate
Decreasing the learning rate, while keeping the original smoothness and collision cost weights, results in the solver requiring more iterations for the solution to converge. Decrease the learning rate and return the collision and smoothness costs to their original values. Then, plan a place trajectory using the solver, and visualize the required iterations for the solver with the original learning rate and the decreased learning rate.
chomp.CollisionOptions.CollisionCostWeight = 10; chomp.SmoothnessOptions.SmoothnessCostWeight = 1e-3; chomp.SolverOptions.LearningRate = 0.5; [placetraj,~,lowlearningrateinfo] = optimize(chomp,[pickConfig; placeConfig], ... [0 2], ... 0.10, ... InitialTrajectoryFitType="minjerkpolytraj"); figure plot([lowlearningrateinfo.InitialObjectiveFunction,lowlearningrateinfo.ObjectiveFunction]) hold on plot([solplaceinfo.InitialObjectiveFunction,solplaceinfo.ObjectiveFunction]) title("Effect of Decreasing Learning Rate") legend({"LearningRate=0.1","LearningRate=5"}) xlabel("Objective Function") ylabel("Iterations")

Visualize Trajectory
Visualize the picking and placing trajectories of the robot.
figure
subplot(1,2,1)
show(chomp,optimpickconfig,CollisionObjects=env);
xlim([-1 1])
ylim([-1 1])
zlim([-0.2 1])
view([pi 0 0])
title("Picking Trajectory")
subplot(1,2,2)
show(chomp,optimplaceconfig,CollisionObjects=env);Warning: Graphics timeout occurred. To share details of this issue with MathWorks technical support, please include that this is an unresponsive graphics client with your service request.
Warning: drawnow timeout: waited 600 seconds for HTMLCanvasImpl(/graphics/C22/returnACTCanvas) ACT 618. Client may be connected.
Last 400 messages:
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.499: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"241\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.881938"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.502: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"242\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882056"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.505: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"243\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882170"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.508: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"244\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882285"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.511: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"245\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882398"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.514: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"246\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882511"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.518: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"247\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882626"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.521: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"248\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882732"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.524: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"249\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.882913"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.527: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"250\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.883036"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.530: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"251\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.885593"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.533: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"252\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.885765"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.536: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"253\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.885919"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.539: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"254\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.886089"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.542: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"255\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.886248"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.545: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"256\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.886393"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.549: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"257\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.886538"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.552: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"258\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.886767"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.555: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"259\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.886950"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.558: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"260\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.887102"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.561: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"261\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.887248"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.564: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"262\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.887393"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.567: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"263\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.887557"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.570: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"264\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.887707"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.573: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"265\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.887940"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.577: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"266\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.888118"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.580: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"267\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.888277"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.584: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"268\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.888422"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.587: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"269\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.888566"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.590: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"270\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.888709"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.593: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"271\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.888853"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.596: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"272\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.889082"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.599: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"273\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.889235"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.602: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"274\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.889377"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.605: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"275\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.889519"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.608: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"276\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.889660"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.611: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"277\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.889801"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.614: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"278\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.889942"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.617: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"279\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.890191"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.621: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"280\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.890359"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.624: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"281\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.890509"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.627: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"282\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.890654"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.630: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"283\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.890812"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.633: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"284\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.890963"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.636: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"285\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.891106"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.639: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"286\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.891348"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.642: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"287\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.891551"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.645: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"288\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.891705"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.649: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"289\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.891851"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.652: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"290\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.892062"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.655: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"291\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.892233"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.658: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"292\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.892469"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.661: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"293\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.892625"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.664: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"294\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.892776"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.667: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"295\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.892965"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.670: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"296\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.893117"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.673: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"297\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.893262"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.676: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"298\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.893408"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.680: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"299\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.893644"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.683: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"300\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.893794"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.686: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"301\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.893979"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.689: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"302\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.894146"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.692: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"303\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.894292"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.695: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"304\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.894438"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.698: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"305\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.894661"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.701: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"306\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.894873"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.704: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"307\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.895048"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.707: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"308\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.895193"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.710: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"309\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.895337"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.713: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"310\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.895479"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.717: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"311\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.895638"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.720: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"312\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.895876"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.723: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"313\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.896032"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.726: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"314\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.896173"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.729: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"315\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.896315"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.733: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"316\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.896460"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.736: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"317\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.896602"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.739: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"318\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.896743"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.741: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"319\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.896974"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.745: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"320\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.897124"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.748: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"321\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.897269"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.752: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"322\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.897410"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.755: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"323\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.897578"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.758: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"324\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.897753"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.761: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"325\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.897902"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.764: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"326\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.898146"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.767: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"327\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.898294"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.770: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"328\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.898438"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.773: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"329\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.898580"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.776: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"330\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.898749"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.779: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"331\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.898934"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.783: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"332\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.899158"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.786: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"333\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.899320"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.789: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"334\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.899468"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.792: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"335\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.899627"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.795: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"336\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.899774"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.799: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"337\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.899917"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.802: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"338\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.900060"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.805: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"339\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.900280"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.808: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"340\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.900438"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.811: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"341\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.900585"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.840: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"342\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.900728"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.843: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"343\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.900872"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.846: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"344\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.901014"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.849: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"345\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.901257"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.852: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"346\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.901500"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.855: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"347\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.901656"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.857: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"348\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.901824"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.860: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"349\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.901970"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.862: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"350\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.902110"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.864: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"351\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.902252"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.867: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"352\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.902468"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.869: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"353\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.902632"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.871: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"354\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.902776"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.873: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"355\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.902958"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.876: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"356\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.903103"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.878: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"357\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.903246"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.880: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"358\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.903388"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.883: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"359\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.903611"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.885: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"360\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.903771"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.888: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"361\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.903917"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.890: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"362\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.904070"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.892: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"363\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.904212"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.894: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"364\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.904355"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.897: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"365\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.904503"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.899: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"366\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.904724"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.901: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"367\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.904885"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.903: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"368\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.905031"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.906: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"369\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.905175"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.908: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"370\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.905319"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.910: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"371\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.905461"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.913: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"372\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.905602"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.916: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"373\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.905827"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.918: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"374\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.905990"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.921: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"375\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.906138"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.923: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"376\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.906283"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.925: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"377\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.906426"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.927: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"378\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.906569"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.930: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"379\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.906711"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.932: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"380\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.906939"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.934: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"381\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.907102"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.936: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"382\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.907247"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.939: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"383\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.907390"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.941: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"384\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.907544"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.944: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"385\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.907691"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.946: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"386\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.907832"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.949: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"387\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.908053"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.951: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"388\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.908215"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.953: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"389\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.908362"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.956: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"390\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.908506"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.958: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"391\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.908649"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.960: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"392\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.908791"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.963: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"393\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.908932"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.965: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"394\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.909150"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.967: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"395\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.909314"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.970: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"396\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.909461"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.972: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"397\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.909604"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.974: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"398\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.909746"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.976: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"399\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.909892"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.979: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.910033"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.981: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"401\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.910176"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.984: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"402\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.910410"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.986: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"403\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.910555"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.988: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"404\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.910700"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.990: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"405\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.910872"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.993: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"406\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.911027"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.995: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"407\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.911174"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.997: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"408\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.911467"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:48.999: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"409\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.911650"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.2: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"410\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.911796"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.4: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"411\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.911941"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.6: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"412\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.912084"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.8: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"413\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.912225"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.11: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"414\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.912364"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.13: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"415\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.912592"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.16: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"416\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.912746"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.18: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"417\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.912889"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.20: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"418\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.913030"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.22: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"419\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.913434"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.25: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"420\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.913724"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.27: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"421\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.913906"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.29: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"422\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.914054"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.31: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"423\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.914198"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.33: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"424\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.914342"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.36: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"425\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.914487"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.38: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"426\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.914606"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.40: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"427\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.914894"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.42: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"428\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.915058"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.45: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"429\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.915206"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.47: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"430\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.915351"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.50: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"431\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.915631"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.52: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"432\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.915774"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.54: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"433\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.916159"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.56: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"434\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.916265"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.59: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"435\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.916424"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.61: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"436\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.916568"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.63: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"437\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.916714"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.66: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"438\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.916856"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.68: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"439\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.917012"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.70: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"440\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.917285"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.72: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"441\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.917442"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.75: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"442\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.917600"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.77: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"443\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.917745"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.79: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"444\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.917917"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.82: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"445\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.918070"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.84: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"446\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.918288"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.86: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"447\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.918462"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.89: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"448\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.918609"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.91: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"449\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.918751"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.93: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"450\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.918945"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.95: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"451\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.919109"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.98: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"452\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.919255"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.100: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"453\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.919495"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.102: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"454\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.919657"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.105: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"455\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.919803"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.107: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"456\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.919947"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.110: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"457\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.920090"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.112: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"458\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.920229"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.115: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"459\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.920372"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.118: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"460\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.920600"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.120: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"461\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.920752"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.123: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"462\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.920895"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.125: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"463\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.921039"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.127: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"464\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.921181"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.130: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"465\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.921323"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.132: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"466\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.921475"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.135: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"467\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.921700"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.137: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"468\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.921856"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.140: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"469\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.922001"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.142: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"470\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.922142"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.145: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"471\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.922284"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.147: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"472\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.922425"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.150: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"473\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.922568"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.153: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"474\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.922823"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.155: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"475\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.922992"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.157: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"476\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.923139"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.160: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"477\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.923292"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.162: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"478\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.923438"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.165: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"479\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.923604"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.168: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"480\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.923749"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.170: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"481\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.923981"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.173: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"482\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.924148"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.175: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"483\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.924360"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.178: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"484\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.924521"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.180: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"485\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.924668"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.183: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"486\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.924810"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.186: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"487\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.925030"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.188: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"488\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.925193"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.190: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"489\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.925339"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.193: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"490\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.925493"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.195: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"491\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.925635"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.198: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"492\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.925778"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.200: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"493\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.925921"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.203: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"494\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.926136"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.205: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"495\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.926305"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.208: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"496\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.926455"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.210: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"497\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.926604"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.212: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"498\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.926761"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.216: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"499\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.926933"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.218: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.927089"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.221: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"501\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.927309"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.223: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"502\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.927468"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.225: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"503\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.927632"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.228: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"504\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.927777"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.230: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"505\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.927919"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.233: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"506\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.928087"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.235: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"507\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.928230"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.238: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"508\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.928451"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.240: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"509\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.928613"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.243: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"510\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.928768"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.245: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"511\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.928911"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.248: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"512\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.929054"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.251: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"513\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.929197"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.253: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"514\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.929340"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.256: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"515\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.929558"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.258: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"516\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.929725"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.260: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"517\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.929872"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.263: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"518\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.930025"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.265: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"519\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.930169"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.268: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"520\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.930312"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.270: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"521\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.930454"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.273: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"522\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.930678"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.276: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"523\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.930875"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.314: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"524\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.931025"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.317: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"525\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.931170"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.320: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"526\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.931312"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.322: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"527\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.931454"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.325: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"528\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.931607"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.327: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"529\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.931829"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.330: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"530\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.931987"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.332: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"531\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.932132"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.334: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"532\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.932276"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.337: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"533\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.932417"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.339: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"534\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.932559"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.342: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"535\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.932706"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.344: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"536\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.932926"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.346: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"537\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.933085"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.349: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"538\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.933229"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.352: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"539\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.933370"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.354: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"540\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.933522"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.357: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"541\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.933664"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.359: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"542\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.933803"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.362: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"543\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.934019"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.364: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"544\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.934182"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.366: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"545\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.934328"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.369: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"546\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.934477"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.371: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"547\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.934620"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.373: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"548\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.934761"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.375: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"549\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.934927"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.378: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"550\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.935144"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.380: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"551\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.935306"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.383: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"552\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.935451"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.385: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"553\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.935610"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.387: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"554\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.935755"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.390: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"555\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.935909"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.392: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"556\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.936054"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.394: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"557\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.936271"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.396: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"558\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.936433"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.401: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"559\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.936579"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.404: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"560\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.936723"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.407: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"561\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.936866"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.409: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"562\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.937009"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.412: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"563\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.937151"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.415: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"564\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.937369"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.418: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"565\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.937530"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.421: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"566\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.937676"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.424: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"567\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.937820"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.426: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"568\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.937962"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.429: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"569\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.938108"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.432: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"570\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.938250"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.434: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"571\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.938463"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.437: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"572\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.938626"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.439: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"573\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.938770"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.442: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"574\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.938946"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.444: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"575\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.939087"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.447: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"576\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.939228"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.449: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"577\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.939370"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.452: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"578\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.939597"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.454: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"579\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.939758"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.457: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"580\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.939903"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.459: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"581\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.940045"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.462: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"582\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.940188"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.465: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"583\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.940349"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.467: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"584\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.940490"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.470: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"585\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.940707"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.472: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"586\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.940867"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.475: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"587\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.941012"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.477: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"588\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.941153"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.480: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"589\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.941294"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.482: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"590\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.941435"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.485: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"591\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.941575"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.488: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"592\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.941717"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.490: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"593\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.941950"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.492: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"594\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.942094"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.495: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"595\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.942247"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.497: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"596\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.942389"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.500: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"597\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.942532"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.502: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"598\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.942671"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.505: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"599\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.942827"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.507: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"600\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.943060"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.510: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"601\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.943206"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.512: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"602\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.943349"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.515: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"603\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.943490"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.517: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"604\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.943653"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.520: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"605\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.943797"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.522: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"606\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.943939"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.524: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"607\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.944187"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.527: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"608\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.944332"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.530: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"609\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.944473"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.532: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"610\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.944613"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.535: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"611\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.944756"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.537: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"612\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.944902"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.540: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"613\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.945045"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.542: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"614\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.945277"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.544: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"615\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.945423"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.547: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"616\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.945565"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.549: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"617\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.945706"}
{"Count":"1","Log":"{\"Channel\":\"\\\/services\\\/ErrorLoggingService\\\/JSErrors\",\"Event\":\"Error\",\"EventData\":\"{\\\"errorMessage\\\":\\\"15:47:49.552: {\\\\\\\"LogType\\\\\\\":\\\\\\\"Client\\\\\\\",\\\\\\\"Source\\\\\\\":\\\\\\\"CanvasACTResponder\\\\\\\",\\\\\\\"Channel\\\\\\\":\\\\\\\"\\\\\\\/graphics\\\\\\\/C22\\\\\\\/returnACTCanvas\\\\\\\",\\\\\\\"Event\\\\\\\":\\\\\\\"CanvasACTResponder publish\\\\\\\",\\\\\\\"EventData\\\\\\\":{\\\\\\\"Status\\\\\\\":\\\\\\\"Failed\\\\\\\",\\\\\\\"ACT\\\\\\\":\\\\\\\"618\\\\\\\",\\\\\\\"Method\\\\\\\":\\\\\\\"update\\\\\\\"}}\\\",\\\"htmlHostUrl\\\":\\\"\\\\\\\"https:\\\\\\\/\\\\\\\/127.0.0.1:31515\\\\\\\/toolbox\\\\\\\/matlab\\\\\\\/uitools\\\\\\\/uifigureappjs\\\\\\\/cefComponentContainer.html?channel=\\\\\\\/uifigure\\\\\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d&websocket=on&snc=CRXWOU\\\\\\\"\\\",\\\"windowUUID\\\":\\\"\\\\\\\"windowUUID undefined\\\\\\\"\\\"}\",\"LogType\":\"Client\",\"Source\":\"ErrorLoggingService\"}","TimeStamp":"2026-Feb-21 15:47:54.945846"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"SceneView called causeExpose with ACT: 618\\\",\\\"PubSubLoggerId\\\":\\\"C22\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.945970"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"FigureACTResponder received Figure ACT: 5 returnChannel: \\\/graphics\\\/F22\\\/returnACT\\\",\\\"PubSubLoggerId\\\":\\\"\\\/uifigure\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.946094"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F22\\\/returnACT\",\"Event\":\"Message Publish\",\"EventData\":\"{\\\"ACT\\\":\\\"5\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.946292"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"Received Canvas ServerID: C22 Canvas ViewModelId: d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\",\\\"PubSubLoggerId\\\":\\\"d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.946543"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"FigureACTResponder received Figure ACT: 6 returnChannel: \\\/graphics\\\/F22\\\/returnACT\\\",\\\"PubSubLoggerId\\\":\\\"\\\/uifigure\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.946672"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F22\\\/returnACT\",\"Event\":\"Message Publish\",\"EventData\":\"{\\\"ACT\\\":\\\"6\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.946820"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"Received Canvas ServerID: C22 Canvas ViewModelId: d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\",\\\"PubSubLoggerId\\\":\\\"d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.946998"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"FigureACTResponder received Figure ACT: 7 returnChannel: \\\/graphics\\\/F22\\\/returnACT\\\",\\\"PubSubLoggerId\\\":\\\"\\\/uifigure\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.947122"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F22\\\/returnACT\",\"Event\":\"Message Publish\",\"EventData\":\"{\\\"ACT\\\":\\\"7\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.947238"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"Received Canvas ServerID: C22 Canvas ViewModelId: d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\",\\\"PubSubLoggerId\\\":\\\"d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.947484"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"FigureACTResponder received Figure ACT: 8 returnChannel: \\\/graphics\\\/F22\\\/returnACT\\\",\\\"PubSubLoggerId\\\":\\\"\\\/uifigure\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.947624"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F22\\\/returnACT\",\"Event\":\"Message Publish\",\"EventData\":\"{\\\"ACT\\\":\\\"8\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.947744"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"Received Canvas ServerID: C22 Canvas ViewModelId: d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\",\\\"PubSubLoggerId\\\":\\\"d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.947911"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"FigureACTResponder received Figure ACT: 9 returnChannel: \\\/graphics\\\/F22\\\/returnACT\\\",\\\"PubSubLoggerId\\\":\\\"\\\/uifigure\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.948031"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F22\\\/returnACT\",\"Event\":\"Message Publish\",\"EventData\":\"{\\\"ACT\\\":\\\"9\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.948123"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"Received Canvas ServerID: C22 Canvas ViewModelId: d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\",\\\"PubSubLoggerId\\\":\\\"d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.948335"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"FigureACTResponder received Figure ACT: 10 returnChannel: \\\/graphics\\\/F22\\\/returnACT\\\",\\\"PubSubLoggerId\\\":\\\"\\\/uifigure\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.948537"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F22\\\/returnACT\",\"Event\":\"Message Publish\",\"EventData\":\"{\\\"ACT\\\":\\\"10\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.948670"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/F22\\\/returnACT\",\"Event\":\"return ACT\",\"EventData\":{\"Token Id\":\"10\"},\"LogType\":\"Server\",\"Source\":\"Figure\"}","TimeStamp":"2026-Feb-21 15:47:54.948720"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"Received Canvas ServerID: C22 Canvas ViewModelId: d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\",\\\"PubSubLoggerId\\\":\\\"d4f9fcdf-bd51-42ae-a959-3f27040b6185\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.949654"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/PubSubLogger\\\/log\",\"Event\":\"Log\",\"EventData\":\"{\\\"Log\\\":\\\"MessageService connected\\\",\\\"PubSubLoggerId\\\":\\\"\\\/uifigure\\\/f8879b6c-fd85-4d68-9c49-7a615d86448d\\\"}\",\"LogType\":\"Client\",\"Source\":\"\"}","TimeStamp":"2026-Feb-21 15:47:54.949726"}
{"Count":"1","Log":"{\"Channel\":\"\\\/graphics\\\/C22\\\/returnACTCanvas\",\"Event\":\"Timeout\",\"EventData\":{\"ACT\":\"618\",\"Timeout\":\"600\"},\"LogType\":\"Server\",\"Source\":\"HTMLCanvasImpl\"}","TimeStamp":"2026-Feb-21 15:57:46.376869"}
xlim([-1 1])
ylim([-1 1])
zlim([-0.2 1])
title("Placing Trajectory")
view([pi 0 0])
Visualize Robot Motion
Animate the trajectory of the robot for the entire pick-and-place task.
figure show(franka,startConfig,Collisions="on",Visuals="off"); title("Animated Pick-and-Place Trajectory") xlim([-1 1]) ylim([-1 1]) zlim([-0.2 1]) rc = rateControl(5); view([pi 0 0]) hold on for i = 1:length(env) if i == indexOfCollisionObjectInEnvironmentToPick [~,p] = show(env{i}); % Store patch of initial soda can location else show(env{i}); end end exampleHelperVisualizePickTrajectory(franka,optimpickconfig,rc); exampleHelperVisualizePlaceTrajectory(franka,env{indexOfCollisionObjectInEnvironmentToPick},optimplaceconfig,rc,p); hold off

Copyright 2022-2023 The MathWorks, Inc.,
See Also
manipulatorCHOMP | manipulatorRRT
